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

Uniswap V3 liquidity positions — one row per position NFT with its pool, tick range, mint parameters, and mint/burn transactions.

### 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                      | NUMBER(38,0)      | Fee tier of the pool in hundredths of a bip (e.g. 3000 = 0.3%).       |
| 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.                   |
| 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                 | NUMBER(38,0)      | 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.                             |
| \_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.         |
