Coda by Ian Macalinao
    Preparing search index...
    interface ReserveLiquidityArgs {
        absoluteReferralRateSf: number | bigint;
        accumulatedProtocolFeesSf: number | bigint;
        accumulatedReferrerFeesSf: number | bigint;
        availableAmount: number | bigint;
        borrowedAmountSf: number | bigint;
        borrowLimitCrossedTimestamp: number | bigint;
        cumulativeBorrowRateBsf: BigFractionBytesArgs;
        depositLimitCrossedTimestamp: number | bigint;
        feeVault: Address;
        marketPriceLastUpdatedTs: number | bigint;
        marketPriceSf: number | bigint;
        mintDecimals: number | bigint;
        mintPubkey: Address;
        padding2: (number | bigint)[];
        padding3: (number | bigint)[];
        pendingReferrerFeesSf: number | bigint;
        supplyVault: Address;
        tokenProgram: Address;
    }
    Index

    Properties

    absoluteReferralRateSf: number | bigint

    Reserve referrer fee absolute rate calculated at each refresh_reserve operation (scaled fraction)

    accumulatedProtocolFeesSf: number | bigint

    Reserve cumulative protocol fees (scaled fraction)

    accumulatedReferrerFeesSf: number | bigint

    Reserve cumulative referrer fees (scaled fraction)

    availableAmount: number | bigint

    Reserve liquidity available

    borrowedAmountSf: number | bigint

    Reserve liquidity borrowed (scaled fraction)

    borrowLimitCrossedTimestamp: number | bigint

    Timestamp when the last refresh reserve detected that the borrowed amount is above the borrow cap. When this threshold is crossed, then redemptions (auto-deleverage) are enabled. If the threshold is not crossed, then the timestamp is set to 0

    cumulativeBorrowRateBsf: BigFractionBytesArgs

    Reserve liquidity cumulative borrow rate (scaled fraction)

    depositLimitCrossedTimestamp: number | bigint

    Timestamp when the last refresh reserve detected that the liquidity amount is above the deposit cap. When this threshold is crossed, then redemptions (auto-deleverage) are enabled. If the threshold is not crossed, then the timestamp is set to 0

    feeVault: Address

    Reserve liquidity fee collection address

    marketPriceLastUpdatedTs: number | bigint

    Unix timestamp of the market price (from the oracle)

    marketPriceSf: number | bigint

    Reserve liquidity market price in quote currency (scaled fraction)

    mintDecimals: number | bigint

    Reserve liquidity mint decimals

    mintPubkey: Address

    Reserve liquidity mint address

    padding2: (number | bigint)[]
    padding3: (number | bigint)[]
    pendingReferrerFeesSf: number | bigint

    Reserve pending referrer fees, to be claimed in refresh_obligation by referrer or protocol (scaled fraction)

    supplyVault: Address

    Reserve liquidity supply address

    tokenProgram: Address

    Token program of the liquidity mint