> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Uniswap V3 Positions

### 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.                             |

### Related Docs

* [EVM DEX Uniswap V3 Positions](/historical-data/supported-blockchains/evm/core-schemas/dex/uniswap-v3-positions)
