Interface UserLoanInfo

    interface UserLoanInfo {
        borrows: UserLoanInfoBorrow[];
        borrowUtilisationRatio: bigint;
        collaterals: UserLoanInfoCollateral[];
        currentRound?: number;
        escrowAddress: string;
        liquidationMargin: bigint;
        loanToValueRatio: bigint;
        netRate: bigint;
        netYield: bigint;
        totalBorrowBalanceValue: bigint;
        totalBorrowedAmountValue: bigint;
        totalCollateralBalanceValue: bigint;
        totalEffectiveBorrowBalanceValue: bigint;
        totalEffectiveCollateralBalanceValue: bigint;
        userAddress: string;
    }

    Properties

    borrowUtilisationRatio: bigint
    collaterals: UserLoanInfoCollateral[]
    currentRound?: number
    escrowAddress: string
    liquidationMargin: bigint
    loanToValueRatio: bigint
    netRate: bigint
    netYield: bigint
    totalBorrowBalanceValue: bigint
    totalBorrowedAmountValue: bigint
    totalCollateralBalanceValue: bigint
    totalEffectiveBorrowBalanceValue: bigint
    totalEffectiveCollateralBalanceValue: bigint
    userAddress: string