| BLOCK_NUMBER | NUMBER | Sequential counter representing the position of a block in the blockchain since genesis (block 0). |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the block was produced by validators/miners. |
| TX_HASH | TEXT | Unique 66-character identifier for the transaction. |
| TX_POSITION | NUMBER | Zero-indexed position of transaction within its block. |
| EVENT_INDEX | NUMBER | Zero-based sequential position of the event within a transaction’s execution. |
| CONTRACT_ADDRESS | TEXT | Smart contract address that emitted this event or received the transaction. |
| TOPICS | VARIANT | Array containing all indexed parameters of the event. |
| TOPIC_0 | TEXT | Event signature hash - keccak256 of the event declaration. |
| TOPIC_1 | TEXT | First indexed parameter of the event (if exists). |
| TOPIC_2 | TEXT | Second indexed parameter of the event (if exists). |
| TOPIC_3 | TEXT | Third indexed parameter of the event (if exists). |
| DATA | TEXT | Hex-encoded non-indexed event parameters. |
| EVENT_REMOVED | BOOLEAN | Boolean flag indicating if the event was removed due to chain reorganization. |
| ORIGIN_FROM_ADDRESS | TEXT | The externally-owned account (EOA) or contract address that initiated the transaction. |
| ORIGIN_TO_ADDRESS | TEXT | The destination address for the transaction - either an EOA or contract address. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | Function signature (first 4 bytes) of the called method. |
| TX_SUCCEEDED | BOOLEAN | Boolean indicator of transaction success. |
| EVENT_NAME | TEXT | The event name as defined in the contract’s ABI. |
| FULL_DECODED_LOG | VARIANT | Complete decoded event data including parameter names, values, types, and metadata. |
| DECODED_LOG | OBJECT | Flattened JSON object containing decoded event parameters with their values. |
| CONTRACT_NAME | TEXT | Human-readable name of the smart contract emitting the event, joined from dim_contracts. |
| EZ_DECODED_EVENT_LOGS_ID | TEXT | Primary key - unique identifier for each row ensuring data integrity. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the record was first added to the Flipside database. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp of the most recent update to this record. |