Event Hash
eventHash
is calculated from the eventId
and eventArgs
:
eventId
is the event params combined together to create a unique id.
where:
EventName
- the name of the eventEventChainId
- chainId of the transaction with invoked eventEventContract
- a contract that invoked the eventEventTransactionHash
- hash of the transaction with invoked event
EventArgs
is the event's arguments. All event arguments will be combined in the same order as they were in the event.
For example, for this Transfer
event, eventHash
will be:
Last updated