| 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 | BOOLEAN | Whether the event has been removed from the transaction. | 
| ORIGIN_FROM_ADDRESS | TEXT | The from address at the transaction level. | 
| ORIGIN_TO_ADDRESS | TEXT | The to address at the transaction level. | 
| ORIGIN_FUNCTION_SIGNATURE | TEXT | The function signature of the contract call that triggered this transaction. | 
| TX_SUCCEEDED | BOOLEAN | Whether the transaction was successful, returned as a boolean. | 
| FACT_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_succeededcolumn instead by March 10, 2025. | 
| _LOG_ID | TEXT | This column is being removed for standardization purposes. Please remove or update your queries with CONCAT(tx_hash, '_', event_index)to reconstruct_log_idby March 10, 2025. |