Interface LoanLocalState

    interface LoanLocalState {
        borrows: {
            borrowBalance: bigint;
            borrowedAmount: bigint;
            latestBorrowInterestIndex: bigint;
            latestStableChange: bigint;
            poolAppId: number;
            stableBorrowInterestRate: bigint;
        }[];
        collaterals: { fAssetBalance: bigint; poolAppId: number }[];
        currentRound?: number;
        escrowAddress: string;
        userAddress: string;
    }

    Properties

    borrows: {
        borrowBalance: bigint;
        borrowedAmount: bigint;
        latestBorrowInterestIndex: bigint;
        latestStableChange: bigint;
        poolAppId: number;
        stableBorrowInterestRate: bigint;
    }[]
    collaterals: { fAssetBalance: bigint; poolAppId: number }[]
    currentRound?: number
    escrowAddress: string
    userAddress: string