Event
No description
type Event {
eventBcs: Base64
sender: Address
sequenceNumber: UInt53!
timestamp: DateTime
transaction: Transaction
}
Fields
Event.eventBcs
● Base64
scalar
The Base64 encoded BCS serialized bytes of the entire Event structure from sui-types. This includes: package_id, transaction_module, sender, type, and contents (which itself contains the BCS-serialized Move struct data).
Event.sender
● Address
object
Address of the sender of the transaction that emitted this event.
Event.sequenceNumber
● UInt53!
non-null scalar
The position of the event among the events from the same transaction.
Event.timestamp
● DateTime
scalar
Timestamp corresponding to the checkpoint this event's transaction was finalized in. All events from the same transaction share the same timestamp.
Event.transaction
● Transaction
object
The transaction that emitted this event. This information is only available for events from indexed transactions, and not from transactions that have just been executed or dry-run.
Member Of
EventConnection
object ● EventEdge
object