Events
Events are objects that provide information about an application's execution. They are primarily used by service providers such as block explorers and wallets to monitor message execution and index transactions.
Table Columns
Unique key: block_number, transaction_hash, event_index
Column Name | Description |
---|---|
block_hash | The hash of the block containing the transaction. |
block_number | The number of the block in the blockchain. |
block_timestamp | The timestamp when the block was created. |
transaction_hash | The hash of the transaction. |
transaction_index | The index of the transaction within the block. |
event_index | The index of the event within the transaction. |
type | The type of event (e.g., coin_received). |
event_attributes_count | The number of attributes associated with the event. |
_created_at | The timestamp when the event was recorded in the table. |
_updated_at | The timestamp when the event data was last updated. |
Last updated