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

    Type Alias SpokeConnectedHubDto

    type SpokeConnectedHubDto = {
        assetCount: number;
        assets: string[];
        borrowsUsd: number;
        creditLineUsd: number;
        creditUsedPct: number;
        depositsUsd: number;
        hubId: number;
        name: string | null;
    }
    Index

    Properties

    assetCount: number
    assets: string[]

    Asset addresses on this hub.

    borrowsUsd: number

    Total borrowed on this hub through this spoke, USD.

    creditLineUsd: number

    Borrowing capacity from collateral on this hub (sum of depositsUsd × LTV).

    creditUsedPct: number

    borrowsUsd / creditLineUsd as a percentage (0 when no line).

    depositsUsd: number

    Total supplied on this hub through this spoke, USD.

    hubId: number
    name: string | null