Interface LoanInfo

    interface LoanInfo {
        canSwapCollateral: boolean;
        currentRound?: number;
        pools: Partial<Record<number, PoolLoanInfo>>;
    }

    Properties

    canSwapCollateral: boolean
    currentRound?: number
    pools: Partial<Record<number, PoolLoanInfo>>