aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface FarmsStakedPositionRewardCoin

    A position's reward accounting for one reward coin. All amounts are in the reward coin's base units; debt fields are the last per-share checkpoints used to avoid counting the same emission twice.

    interface FarmsStakedPositionRewardCoin {
        baseRewardsAccumulated: bigint;
        baseRewardsDebt: bigint;
        coinType: string;
        multiplierRewardsAccumulated: bigint;
        multiplierRewardsDebt: bigint;
    }
    Index
    baseRewardsAccumulated: bigint

    Base rewards accrued for the position since its last accounting update.

    baseRewardsDebt: bigint

    The total base reward recorded at the last accounting checkpoint.

    coinType: string

    The fully qualified Move type of the reward coin.

    multiplierRewardsAccumulated: bigint

    Additional rewards accrued from the position's lock multiplier.

    multiplierRewardsDebt: bigint

    The total multiplier reward recorded at the last accounting checkpoint.