Documentation
    Preparing search index...

    An event returned from a query, along with its position in the ledger.

    interface EventEntry {
        bcs: Uint8Array;
        checkpoint: string | null;
        eventIndex: number;
        eventType: string;
        json: Record<string, unknown> | null;
        module: string;
        packageId: string;
        sender: string;
        transactionDigest: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bcs: Uint8Array
    checkpoint: string | null

    The sequence number of the checkpoint containing the emitting transaction.

    null on the JSON-RPC transport, which does not expose checkpoint information for queried events.

    eventIndex: number

    The index of this event within its transaction's event list.

    eventType: string
    json: Record<string, unknown> | null

    The JSON representation of the event's Move struct data.

    Warning: The exact shape and field names of this data may vary between different API implementations (JSON-RPC vs gRPC or GraphQL). For consistent data across APIs use the bcs field and parse the BCS data directly.

    module: string
    packageId: string
    sender: string
    transactionDigest: string

    The digest of the transaction that emitted this event.