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

    Interface ReserveConfig

    Interface representing the configuration of a reserve in the Aave protocol.

    interface ReserveConfig {
        active: boolean;
        aTokenName: string;
        aTokenSymbol: string;
        baseVariableBorrowRate: bigint;
        borrowableInIsolation: boolean;
        borrowCap: bigint;
        borrowingEnabled: boolean;
        debtCeiling: bigint;
        decimals: number;
        eModeCategoryId: number;
        flashloanEnabled: boolean;
        freezed: boolean;
        iconUri: string;
        liquidationBonus: bigint;
        liquidationThreshold: bigint;
        ltv: bigint;
        maxSupply: bigint;
        name: string;
        optimalUsageRatio: bigint;
        paused: boolean;
        priceInMarketReferenceCurrency: bigint;
        projectUri: string;
        reserveFactor: bigint;
        supplyCap: bigint;
        symbol: string;
        treasury: AccountAddress;
        variableDebtTokenName: string;
        variableDebtTokenSymbol: string;
        variableRateSlope1: bigint;
        variableRateSlope2: bigint;
    }
    Index

    Properties

    active: boolean

    Whether the reserve is active.

    aTokenName: string

    The name of the aToken associated with the reserve.

    aTokenSymbol: string

    The symbol of the aToken associated with the reserve.

    baseVariableBorrowRate: bigint

    The base variable borrow rate of the reserve.

    borrowableInIsolation: boolean

    Whether the reserve is borrowable in isolation mode.

    borrowCap: bigint

    The borrowing cap of the reserve.

    borrowingEnabled: boolean

    Whether borrowing is enabled for the reserve.

    debtCeiling: bigint

    The debt ceiling of the reserve.

    decimals: number

    The number of decimals of the reserve.

    eModeCategoryId: number

    The eMode category ID of the reserve.

    flashloanEnabled: boolean

    Whether flashloans are enabled for the reserve.

    freezed: boolean

    Whether the reserve is freezed.

    iconUri: string

    The URI of the icon representing the reserve.

    liquidationBonus: bigint

    The liquidation bonus of the reserve.

    liquidationThreshold: bigint

    The liquidation threshold of the reserve.

    ltv: bigint

    The loan-to-value ratio of the reserve.

    maxSupply: bigint

    The maximum supply of the reserve.

    name: string

    The name of the reserve.

    optimalUsageRatio: bigint

    The optimal usage ratio of the reserve.

    paused: boolean

    Whether the reserve is paused.

    priceInMarketReferenceCurrency: bigint

    The price of the reserve in the market reference currency.

    projectUri: string

    The URI of the project associated with the reserve.

    reserveFactor: bigint

    The reserve factor of the reserve.

    supplyCap: bigint

    The supply cap of the reserve.

    symbol: string

    The symbol of the reserve.

    treasury: AccountAddress

    The account address of the treasury.

    variableDebtTokenName: string

    The name of the variable debt token associated with the reserve.

    variableDebtTokenSymbol: string

    The symbol of the variable debt token associated with the reserve.

    variableRateSlope1: bigint

    The first slope of the variable rate of the reserve.

    variableRateSlope2: bigint

    The second slope of the variable rate of the reserve.