@aave/aave-v3-aptos-ts-sdk - v0.0.53
    Preparing search index...

    Type Alias ReserveData2

    Represents the reserve data structure for Aave V3 on Aptos.

    type ReserveData2 = {
        aTokenSupply: bigint;
        reserveAccruedToTreasury: bigint;
        reserveCurrentLiquidityRate: bigint;
        reserveCurrentVariableBorrowRate: bigint;
        reserveLastUpdateTimestamp: bigint;
        reserveLiquidityIndex: bigint;
        reserveUnbacked: bigint;
        reserveVarBorrowIndex: bigint;
        varTokenSupply: bigint;
    }
    Index

    Properties

    aTokenSupply: bigint

    The total supply of aTokens.

    reserveAccruedToTreasury: bigint

    The amount of reserves accrued to the treasury.

    reserveCurrentLiquidityRate: bigint

    The current liquidity rate of the reserve.

    reserveCurrentVariableBorrowRate: bigint

    The current variable borrow rate of the reserve.

    reserveLastUpdateTimestamp: bigint

    The timestamp of the last update to the reserve data.

    reserveLiquidityIndex: bigint

    The liquidity index of the reserve.

    reserveUnbacked: bigint

    The amount of unbacked reserves.

    reserveVarBorrowIndex: bigint

    The variable borrow index of the reserve.

    varTokenSupply: bigint

    The total supply of variable debt tokens.