Documentation
    Preparing search index...
    interface Event {
        bcs: Uint8Array;
        eventType: string;
        json: Record<string, unknown> | null;
        module: string;
        packageId: string;
        sender: string;
    }
    Index

    Properties

    bcs: Uint8Array
    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