Skip to main content
Schema: 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 NameData TypeDescription
BLOCK_NUMBERNUMBERSequential counter representing the position of a block i…
BLOCK_TIMESTAMPTIMESTAMP_NTZUTC timestamp when the block was produced by validators/m…
CONTRACT_ADDRESSTEXTSmart contract address that emitted this event or receive…
DATATEXTHex-encoded non-indexed event parameters.
Example: ‘0x00… | | EVENT_INDEX | NUMBER | Zero-based sequential position of the event within a tran… | | EVENT_REMOVED | TEXT | Boolean flag indicating if the event was removed due to c… | | FACT_EVENT_LOGS_ID | TEXT | Primary key - unique identifier for each row ensuring dat… | | INSERTED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the record was first added to the Flip… | | MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp of the most recent update to this record. … | | ORIGIN_FROM_ADDRESS | TEXT | The externally-owned account (EOA) or contract address th… | | ORIGIN_FUNCTION_SIGNATURE | TEXT | Function signature (first 4 bytes) of the called method. … | | ORIGIN_TO_ADDRESS | TEXT | The destination address for the transaction - either an E… | | TOPICS | TEXT | Array containing all indexed parameters of the event. Ex… | | TOPIC_0 | TEXT | Event signature hash - keccak256 of the event declaration… | | TOPIC_1 | TEXT | First indexed parameter of the event (if exists). Exampl… | | TOPIC_2 | TEXT | Second indexed parameter of the event (if exists). Examp… | | TOPIC_3 | TEXT | Third indexed parameter of the event (if exists). Exampl… | | TX_HASH | TEXT | Unique 66-character identifier for the transaction. **Fo… | | TX_POSITION | TEXT | Zero-indexed position of transaction within its block. *… | | TX_SUCCEEDED | TEXT | Boolean indicator of transaction success. Values:
  • … |