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

    Type Alias AssetDto

    type AssetDto = {
        asset: string;
        availableLiquidityUsd: number;
        decimals: number;
        hubCount: number;
        maxBorrowApy: number;
        maxSupplyApy: number;
        minBorrowApy: number;
        minSupplyApy: number;
        name: string;
        oracleProvider: AssetOracleConfigDto | null;
        reserveCount: number;
        symbol: string;
        totalBorrowsNative: number;
        totalBorrowsUsd: number;
        totalDepositsNative: number;
        totalDepositsUsd: number;
        usdPrice: number;
    }
    Index

    Properties

    asset: string
    availableLiquidityUsd: number

    Available liquidity across hubs valued in USD (live).

    decimals: number
    hubCount: number

    Number of hubs listing this asset.

    maxBorrowApy: number

    Highest borrow APY across hubs.

    maxSupplyApy: number

    Highest supply APY across hubs.

    minBorrowApy: number

    Lowest borrow APY across hubs.

    minSupplyApy: number

    Lowest supply APY across hubs.

    name: string
    oracleProvider: AssetOracleConfigDto | null

    Current indexed oracle configuration; null until first configure.

    reserveCount: number

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

    symbol: string
    totalBorrowsNative: number

    Total borrowed across every hub listing this asset (human-readable units). Same quantity the assets list serves.

    totalBorrowsUsd: number

    Total borrowed across hubs valued in USD (live).

    totalDepositsNative: number

    Total supplied across every hub listing this asset (human-readable units). Same quantity the assets list serves.

    totalDepositsUsd: number

    Total supplied across hubs valued in USD (live).

    usdPrice: number

    Live spot USD price per whole unit.