Coda by Ian Macalinao
    Preparing search index...
    interface RewardInfoArgs {
        cumulativeSecondsWithEmptyLiquidityReward: number | bigint;
        funder: Address;
        initialized: number;
        lastUpdateTime: number | bigint;
        mint: Address;
        padding0: number[];
        padding1: number[];
        rewardDuration: number | bigint;
        rewardDurationEnd: number | bigint;
        rewardPerTokenStored: number[];
        rewardRate: number | bigint;
        rewardTokenFlag: number;
        vault: Address;
    }
    Index

    Properties

    cumulativeSecondsWithEmptyLiquidityReward: number | bigint

    Accumulated seconds when the farm distributed rewards but the bin was empty. These rewards will be carried over to the next reward time window.

    funder: Address

    Authority account that allows to fund rewards

    initialized: number

    Indicates if the reward has been initialized

    lastUpdateTime: number | bigint

    The last time reward states were updated.

    mint: Address

    Reward token mint.

    padding0: number[]

    padding

    padding1: number[]

    Padding to ensure reward_rate: u128 is 16-byte aligned

    rewardDuration: number | bigint

    reward duration

    rewardDurationEnd: number | bigint

    reward duration end

    rewardPerTokenStored: number[]

    Reward per token stored

    rewardRate: number | bigint

    reward rate

    rewardTokenFlag: number

    reward token flag

    vault: Address

    Reward vault token account.