Table Details
| Property | Value |
|---|---|
| Table Name | avalanche.dex.uniswap_v3_positions |
| Table Status | Production-Ready |
| Unique Key | trace_id |
| Clustering Key(s) | mint_block_timestamp::date |
| Search Optimization | liquidity_pool_address, token_id |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| liquidity_pool_address | VARCHAR(42) | Contract address of the Uniswap V3 pool the position belongs to. |
| token_id | VARCHAR(16777216) | Token ID of the position NFT. |
| liquidity | VARCHAR(16777216) | 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(16777216) | Fee tier of the pool in hundredths of a bip (e.g. 3000 = 0.3%). |
| tick_lower | VARCHAR(16777216) | Lower tick bound of the position’s liquidity range. |
| tick_upper | VARCHAR(16777216) | Upper tick bound of the position’s liquidity range. |
| amount0_desired | VARCHAR(16777216) | Desired amount of token0 specified at mint. |
| amount1_desired | VARCHAR(16777216) | Desired amount of token1 specified at mint. |
| amount0_min | VARCHAR(16777216) | Minimum amount of token0 accepted at mint. |
| amount1_min | VARCHAR(16777216) | Minimum amount of token1 accepted at mint. |
| recipient | VARCHAR(42) | Address that received the position NFT. |
| deadline | VARCHAR(16777216) | Deadline timestamp specified for the mint call. |
| trace_address | VARCHAR(16777216) | Trace address of the mint call within the transaction call graph. |
| trace_id | VARCHAR(16777216) | 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. |