Interface representing the reserve data of a user.

interface UserReserveData {
    currentATokenBalance: bigint;
    currentVariableDebt: bigint;
    liquidityRate: bigint;
    scaledVariableDebt: bigint;
    usageAsCollateralEnabled: boolean;
}

Properties

currentATokenBalance: bigint
currentVariableDebt: bigint
liquidityRate: bigint
scaledVariableDebt: bigint
usageAsCollateralEnabled: boolean