@xoxno/sdk-js
    Preparing search index...

    Interface StellarReserveListItem

    One reserve — an asset in a spoke on a hub. Risk config (CF/threshold/flags) is the spoke-asset truth; APY/utilization/liquidity/USD are the hub-asset liquidity truth at live indexes. Capacity reflects the supply (deposit) cap.

    interface StellarReserveListItem {
        asset: string;
        availableLiquidityUsd: number;
        borrowApy: number;
        capacityFilledPct: number;
        collateralFactorBps: number;
        decimals: number;
        hubId: number;
        liquidationThresholdBps: number;
        remainingCapacityUsd: number;
        spokeId: number;
        supplyApy: number;
        symbol: string;
        totalBorrowsUsd: number;
        totalDepositsUsd: number;
        useAsCollateral: boolean;
        utilizationRate: number;
    }
    Index

    Properties

    asset: string
    availableLiquidityUsd: number
    borrowApy: number
    capacityFilledPct: number

    Supply (deposit) capacity filled, percentage [0,100]; 0 when uncapped.

    collateralFactorBps: number

    Collateral factor (LTV) in basis points.

    decimals: number
    hubId: number
    liquidationThresholdBps: number
    remainingCapacityUsd: number

    Remaining supply capacity valued in USD; 0 when uncapped.

    spokeId: number
    supplyApy: number
    symbol: string
    totalBorrowsUsd: number
    totalDepositsUsd: number
    useAsCollateral: boolean

    Whether the asset can be used as collateral in this spoke.

    utilizationRate: number

    Utilization rate in [0,1].