Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| id | VARCHAR(16777216) | Uniswap V4 pool identifier (pool ID including hooks) the position belongs to. |
| position | VARCHAR(16777216) | Identifier (token ID) of the position NFT. |
| token0_address | VARCHAR(42) | Contract address of the pool’s first token. |
| token1_address | VARCHAR(42) | Contract address of the pool’s second token. |
| tick_lower | NUMBER(38,0) | Lower tick bound of the position’s liquidity range. |
| tick_upper | NUMBER(38,0) | Upper tick bound of the position’s liquidity range. |
| mint_transaction_hash | VARCHAR(66) | Hash of the transaction that minted the position. |
| mint_transaction_index | NUMBER(38,0) | Zero-based position of the mint transaction within its block. |
| mint_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains the mint. |
| mint_block_number | NUMBER(38,0) | Number of the block that contains the mint. |
| mint_block_hash | VARCHAR(66) | Hash of the block that contains the mint. |
| _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. |