| BLOCK_NUMBER | NUMBER | Also known as block height. The block number, which indicates the length of the blockchain, increases after the addition of each new block. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| TX_HASH | TEXT | Transaction hash is a unique 66-character identifier that is generated when a transaction is executed. This field will not be unique in this table, as a given transaction can include multiple events. |
| EVENT_INDEX | NUMBER | Event number within a transaction. |
| CONTRACT_ADDRESS | TEXT | The address interacted with for a given event. |
| TOPICS | VARIANT | The un-decoded event input topics. |
| TOPIC_0 | TEXT | The first topic of the event, which is a unique identifier for the event. |
| TOPIC_1 | TEXT | The second topic of the event, if applicable. |
| TOPIC_2 | TEXT | The third topic of the event, if applicable. |
| TOPIC_3 | TEXT | The fourth topic of the event, if applicable. |
| DATA | TEXT | The un-decoded event data. |
| EVENT_REMOVED | TEXT | Whether the event has been removed from the transaction. |
| ORIGIN_FROM_ADDRESS | TEXT | The from address of this transaction. |
| ORIGIN_TO_ADDRESS | TEXT | The to address of this transaction. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | The function signature of the contract call. |
| TX_SUCCEEDED | BOOLEAN | Status of the transaction. |
| EVENT_NAME | TEXT | The name of the event, as defined in the contract ABI. |
| FULL_DECODED_LOG | VARIANT | The full decoded log, including the event name, the event parameters, and the data type of the event parameters. |
| DECODED_LOG | OBJECT | The flattened decoded log, where the keys are the names of the event parameters, and the values are the values of the event parameters. |
| CONTRACT_NAME | TEXT | The name of the contract, if the contract has a name() function. |
| EZ_DECODED_EVENT_LOGS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was last modified. |
| TX_STATUS | TEXT | This column is being deprecated for standardization purposes. Please update your queries to use the tx_succeeded column instead by March 10, 2025. |