| BLOCKCHAIN | TEXT | Blockchain, Network, or Platform the token price is recorded on. |
| PLATFORM | TEXT | The name of the dex or swap platform, typically a concatenation of the protocol and version. |
| PROTOCOL | TEXT | The name of the protocol. |
| PROTOCOL_VERSION | TEXT | The version of the protocol. |
| 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 identifier that is generated when a transaction is executed. |
| CONTRACT_ADDRESS | TEXT | The contract address interacted with for the swap, typically the liquidity pool or router address, where applicable. Value may be NULL for certain chains, such as Osmosis and Near, where records occur at a different granularity such as one row per transaction rather than one row per event. |
| TRADER | TEXT | The address that initiated the swap. |
| TOKEN_IN | TEXT | The address of the token sent for swap. |
| SYMBOL_IN | TEXT | The symbol of the token sent for swap. |
| TOKEN_IN_IS_VERIFIED | BOOLEAN | TOKEN_IN_IS_VERIFIED column |
| AMOUNT_IN_RAW | FLOAT | The unadjusted amount of tokens put into the swap. |
| AMOUNT_IN | FLOAT | The decimal adjusted amount of tokens put into the swap. |
| AMOUNT_IN_USD | FLOAT | The amount of tokens put into the swap converted to USD using the price of the token. |
| TOKEN_OUT | TEXT | The address of the token being swapped to. |
| TOKEN_OUT_IS_VERIFIED | BOOLEAN | TOKEN_OUT_IS_VERIFIED column |
| SYMBOL_OUT | TEXT | The symbol of the token being swapped to. |
| AMOUNT_OUT_RAW | FLOAT | The unadjusted amount of tokens taken out of or received from the swap. |
| AMOUNT_OUT | FLOAT | The decimal adjusted amount of tokens taken out of or received from the swap. |
| AMOUNT_OUT_USD | FLOAT | The amount of tokens taken out of or received from the swap converted to USD using the price of the token. |
| _LOG_ID | TEXT | _LOG_ID column |
| 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. |
| EZ_DEX_SWAPS_ID | TEXT | The unique identifier for each row in the table. |