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

    Represents a Sui event, typically including type, timestamp, and transaction digest.

    interface Event {
        timestamp: number | undefined;
        txnDigest: string;
        type: string;
    }

    Hierarchy (View Summary)

    Index
    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.