interface StakingRequestEventInstance {
    bcs: string;
    data_decoded: StakingRequestEvent;
    id: EventId;
    packageId: string;
    parsedJson: unknown;
    sender: string;
    timestampMs?: null | string;
    transactionModule: string;
    type: string;
    type_arguments: [];
}

Hierarchy

Properties

bcs: string

Base 58 encoded bcs bytes of the move event

data_decoded: StakingRequestEvent

decoded data using ABI, undefined if there is decoding error, usually because the ABI/data mismatch

id: EventId

Sequential event ID, ie (transaction seq number, event seq number). 1) Serves as a unique event ID for each fullnode 2) Also serves to sequence events for the purposes of pagination and querying. A higher id is an event seen later by that fullnode. This ID is the "cursor" for event querying.

packageId: string

Move package where this event was emitted.

parsedJson: unknown

Parsed json value of the event

sender: string

Sender's Sui address.

timestampMs?: null | string

UTC timestamp in milliseconds since epoch (1/1/1970)

transactionModule: string

Move module where this event was emitted.

type: string

Move event type.

type_arguments: []