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

    Type Alias ReserveConfigurationData

    Represents the configuration data for a reserve in the Aave protocol.

    type ReserveConfigurationData = {
        borrowingEnabled: boolean;
        decimals: bigint;
        isActive: boolean;
        isFrozen: boolean;
        liquidationBonus: bigint;
        liquidationThreshold: bigint;
        ltv: bigint;
        reserveFactor: bigint;
        usageAsCollateralEnabled: boolean;
    }
    Index

    Properties

    borrowingEnabled: boolean

    Indicates if borrowing is enabled for the reserve.

    decimals: bigint

    The number of decimals for the reserve's asset.

    isActive: boolean

    Indicates if the reserve is active.

    isFrozen: boolean

    Indicates if the reserve is frozen.

    liquidationBonus: bigint

    The bonus applied during liquidation.

    liquidationThreshold: bigint

    The threshold at which the reserve can be liquidated.

    ltv: bigint

    The loan-to-value ratio for the reserve.

    reserveFactor: bigint

    The reserve factor for the reserve.

    usageAsCollateralEnabled: boolean

    Indicates if the reserve can be used as collateral.