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

    Interface EpochWasChangedEvent

    Normalized event emitted while the afSUI vault records an epoch change.

    The event reports aggregate supply, rewards, and SUI values after the protocol's epoch-processing call.

    interface EpochWasChangedEvent {
        activeEpoch: bigint;
        timestamp: number | undefined;
        totalAfSuiSupply: bigint;
        totalSuiAmount: bigint;
        totalSuiRewardsAmount: bigint;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    • Event
      • EpochWasChangedEvent
    Index
    activeEpoch: bigint

    New active protocol epoch.

    timestamp: number | undefined

    Timestamp of the event, if available.

    totalAfSuiSupply: bigint

    Total afSUI supply in raw afSUI units.

    totalSuiAmount: bigint

    Total SUI amount in the system, in raw SUI units.

    totalSuiRewardsAmount: bigint

    Total accrued SUI rewards in raw SUI units.

    txnDigest: string

    The transaction digest associated with the event.

    type: string

    A string identifying the Move event type.