VieldX
VieldX Protocol v2.0 Live • Institutional-Grade Liquidity

Programmatic Credit
& Yield. Zero Asset Sales.

Power your platform with VieldX—the developer-first liquidity SDK and smart vault infrastructure for crypto-backed loans.

Total Value Locked
$0.0M
Active Borrowed Capital
$0.0M
Average LTV Ratio
0.0%
Supported Chain Networks
0
Live Simulator

VieldX LTV & Loan Simulator

Model your collateral position in real time. Adjust your asset, deposit size, and borrow utilization to preview health factor and liquidation exposure before you commit onchain.

Collateral Asset

Collateral Amount

1.5 BTC ($97,500)

0.05 BTC5 BTC

Borrow Utilization

55% of max LTV

0%100% (max 75% LTV)
Asset Price$65,000
Max LTV / Liquidation Threshold75% / 80%

Max Borrow Amount

$73125USDC

Currently drawing $40,219 at 55% utilization

Health Factor

1.94Moderate
Liquidation below 1.00
Liquidation Price
$33515.62

48.4% drop from current price

Annual Borrow Rate
4.2%APR

Fixed protocol rate for Bitcoin

Developer SDK

Ship lending in minutes, not quarters

Drop the VieldX SDK into any wallet, fintech app, or neobank. Create a vault and execute a programmatic loan in a single request.

quickstart.ts
import { VieldX } from "@vieldx/sdk";

const vieldx = new VieldX({
  apiKey: process.env.VIELDX_API_KEY!,
  network: "mainnet",
});

// Create an isolated vault for a user
const vault = await vieldx.vaults.create({
  owner: "0x71C7...976F",
  collateralAsset: "ETH",
  collateralAmount: "12.5",
});

// Execute a programmatic loan against the vault
const loan = await vieldx.loans.execute({
  vaultId: vault.id,
  borrowAsset: "USDC",
  amount: "18000",
  maxLTV: 0.7,
});

console.log(loan.status); // "active"