| liquidity_pool_address | VARCHAR(42) | Contract address of the Uniswap V3 pool the position belongs to. |
| token_id | VARCHAR(134217728) | Token ID of the position NFT. |
| liquidity | VARCHAR(134217728) | Liquidity amount of the position. |
| token0_address | VARCHAR(42) | Contract address of the pool’s first token. |
| token1_address | VARCHAR(42) | Contract address of the pool’s second token. |
| fee | VARCHAR(134217728) | Fee tier of the pool in hundredths of a bip (e.g. 3000 = 0.3%). |
| tick_lower | VARCHAR(134217728) | Lower tick bound of the position’s liquidity range. |
| tick_upper | VARCHAR(134217728) | Upper tick bound of the position’s liquidity range. |
| amount0_desired | VARCHAR(134217728) | Desired amount of token0 specified at mint. |
| amount1_desired | VARCHAR(134217728) | Desired amount of token1 specified at mint. |
| amount0_min | VARCHAR(134217728) | Minimum amount of token0 accepted at mint. |
| amount1_min | VARCHAR(134217728) | Minimum amount of token1 accepted at mint. |
| recipient | VARCHAR(42) | Address that received the position NFT. |
| deadline | VARCHAR(134217728) | Deadline timestamp specified for the mint call. |
| trace_address | VARCHAR(134217728) | Trace address of the mint call within the transaction call graph. |
| trace_id | VARCHAR(134217728) | Unique identifier of the mint trace. |
| mint_transaction_hash | VARCHAR(66) | Hash of the transaction that minted the position. |
| mint_transaction_index | NUMBER(38,0) | 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. |
| burn_transaction_hash | VARCHAR(66) | Hash of the transaction that burned the position. Null if still open. |
| burn_transaction_index | NUMBER(38,0) | Position of the burn transaction within its block. |
| burn_block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains the burn. |
| burn_block_number | NUMBER(38,0) | Number of the block that contains the burn. |
| burn_block_hash | VARCHAR(66) | Hash of the block that contains the burn. |
| factory_address | VARCHAR(42) | Address of the factory contract that deployed this liquidity pool. Factory contracts create and track pool instances for a given protocol version. |
| _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. |