Interface LoanInfo

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

    Properties

    adminAddress: string
    canSwapCollateral: boolean
    currentRound?: number
    oracleAdapterAppId: number
    poolManagerAppId: number
    pools: Partial<Record<number, PoolLoanInfo>>