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

    Interface StellarAssetListItem

    One asset aggregated across every hub/market it lists on — a row in the Deposit/Borrow asset tables. USD/native totals and APY ranges are summed/taken over the asset's hub-assets at live indexes.

    interface StellarAssetListItem {
        asset: string;
        availableLiquidityUsd: number;
        borrowApyRange: StellarApyRange;
        decimals: number;
        hubCount: number;
        marketCount: number;
        name: string;
        price: number;
        supplyApyRange: StellarApyRange;
        symbol: string;
        totalBorrowsNative: number;
        totalBorrowsUsd: number;
        totalDepositsNative: number;
        totalDepositsUsd: number;
    }
    Index

    Properties

    asset: string
    availableLiquidityUsd: number
    borrowApyRange: StellarApyRange

    [min, max] borrow APY across the asset's hubs.

    decimals: number
    hubCount: number

    Number of hubs listing this asset.

    marketCount: number

    Number of reserves (spoke,hub) for this asset.

    name: string
    price: number

    Live spot USD price per whole unit.

    supplyApyRange: StellarApyRange

    [min, max] supply APY across the asset's hubs.

    symbol: string
    totalBorrowsNative: number

    Total borrowed across hubs, human-readable token units (live).

    totalBorrowsUsd: number
    totalDepositsNative: number

    Total supplied across hubs, human-readable token units (live).

    totalDepositsUsd: number