| event_name | VARCHAR(16777216) | Name of the DEX event that produced this record (e.g. Swap, Mint, Burn). |
| project | VARCHAR(16777216) | Name of the project (e.g. uniswap) |
| protocol | VARCHAR(16777216) | Protocol name (e.g. uniswap_v2, uniswap_v3, uniswap_v4) |
| liquidity_pool_address | VARCHAR(42) | The liquidity pool address which emitted the event |
| sender | VARCHAR(42) | Address recorded as the sender in the event log (often a router or pool caller). |
| recipient | VARCHAR(42) | Address recorded as the recipient in the event log. |
| token0_address | VARCHAR(42) | Token0 contract address |
| token0_symbol | VARCHAR(16777216) | Token0 symbol |
| token0_amount_raw_str | VARCHAR(16777216) | Token0 amount unnormalized, in string format for precision |
| token0_amount_str | VARCHAR(16777216) | Token0 amount normalized, in string format for precision |
| token0_amount | FLOAT | Token0 amount normalized |
| token0_amount_usd | FLOAT | Token0 USD amount |
| token1_address | VARCHAR(42) | Token1 contract address |
| token1_symbol | VARCHAR(16777216) | Token1 symbol |
| token1_amount_raw_str | VARCHAR(16777216) | Token1 amount unnormalized, in string format for precision |
| token1_amount_str | VARCHAR(16777216) | Token1 amount normalized, in string format for precision |
| token1_amount | FLOAT | Token1 amount normalized |
| token1_amount_usd | FLOAT | Token1 USD amount |
| usd_amount | FLOAT | USD value of the event |
| liquidity | VARCHAR(16777216) | Liquidity field (Uniswap V3/V4 concentrated liquidity positions) |
| id | VARIANT | Pool identifier for Uniswap V4-style events (pool ID including hooks). |
| liquidity_details | VARIANT | Structured liquidity attributes of the event (protocol-specific). |
| event_details | VARIANT | Structured event payload with protocol-specific fields. |
| transaction_from_address | VARCHAR(42) | The address of the sending party of this transaction |
| transaction_to_address | VARCHAR(42) | The address of the receiving party of this transaction |
| transaction_hash | VARCHAR(66) | Transaction hash of this event |
| transaction_index | NUMBER(38,0) | Transaction index of this event in the block |
| selector | VARCHAR(16777216) | Call data selector at the transaction level |
| log_index | NUMBER(38,0) | Log index of this event |
| block_timestamp | TIMESTAMP_NTZ(9) | Block timestamp of this event |
| block_number | NUMBER(38,0) | Block number of this event |
| block_hash | VARCHAR(66) | Block hash of this event |
| unique_id | VARCHAR(16777216) | Unique ID of each event |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full data refresh. |