monad.core Table: fact_event_logs Type: Fact Table
What
This table contains raw event logs emitted by smart contracts during transaction execution. Each row represents a single event with its topics and data. Events are the primary mechanism for smart contracts to communicate state changes and must be explicitly emitted in contract code.Key
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_NUMBER | NUMBER | Sequential counter representing the position of a block i… |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the block was produced by validators/m… |
| CONTRACT_ADDRESS | TEXT | Smart contract address that emitted this event or receive… |
| DATA | TEXT | Hex-encoded non-indexed event parameters. |
- … |