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

    Interface FarmsHarvestedRewardsEvent

    Fired when rewards are harvested from one or more staked positions.

    interface FarmsHarvestedRewardsEvent {
        rewardAmounts: bigint[];
        rewardTypes: string[];
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
        vaultId: string;
    }

    Hierarchy (View Summary)

    • Event
      • FarmsHarvestedRewardsEvent
    Index
    rewardAmounts: bigint[]

    Harvested amounts in base units, parallel to rewardTypes.

    rewardTypes: string[]

    Reward coin types in the same order as rewardAmounts.

    timestamp: number | undefined

    Timestamp of the event, if available.

    txnDigest: string

    The transaction digest associated with the event.

    type: string

    A string identifying the Move event type.

    vaultId: string

    The staking pool object ID.