> ## 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          | `base.dex.uniswap_v3_positions`      |
| Table Status        | Production-Ready                     |
| Unique Key          | `mint_block_timestamp`, `token_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(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.                                                                                      |

### Related Docs

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