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

    Interface FarmsIncreasedEmissionsEvent

    Fired when a reward coin's emission schedule or rate is increased.

    interface FarmsIncreasedEmissionsEvent {
        emissionRate: bigint;
        emissionScheduleMs: number;
        rewardType: string;
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
        vaultId: string;
    }

    Hierarchy (View Summary)

    • Event
      • FarmsIncreasedEmissionsEvent
    Index
    emissionRate: bigint

    The amount emitted per interval, in the reward coin's base units.

    emissionScheduleMs: number

    The emission interval in milliseconds.

    rewardType: string

    The fully qualified Move type of the reward coin.

    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.