Skip to main content

Event

No description

type Event {
sendingModule: MoveModule
sender: Address
timestamp: DateTime
contents: MoveValue!
}

Fields

Event.sendingModule ● MoveModule object

The Move module containing some function that when called by a programmable transaction block (PTB) emitted this event. For example, if a PTB invokes A::m1::foo, which internally calls A::m2::emit_event to emit an event, the sending module would be A::m1.

Event.sender ● Address object

Address of the sender of the event

Event.timestamp ● DateTime scalar

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

Event.contents ● MoveValue! non-null object

The contents of the event as a Move value.

Member Of

EventConnection object ● EventEdge object