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

# ton.dex_pools

> TON DEX liquidity pools — pool assets, reserves, and protocol.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table Description

The `ton.dex_pools` table contains information about decentralized exchange liquidity pools and their configurations on TON. This table is partitioned by block\_date.

## Column Descriptions

| **Column**          | **Type**       | **Description**                                                  |
| ------------------- | -------------- | ---------------------------------------------------------------- |
| **block\_time**     | timestamp      | Timestamp of when the block containing the pool data was created |
| **block\_date**     | date           | Date of when the block containing the pool data was created      |
| **pool**            | string         | Address of the liquidity pool                                    |
| **project**         | string         | Name of the DEX project                                          |
| **version**         | int            | Version of the DEX protocol                                      |
| **discovered\_at**  | int            | Unix timestamp when the pool was first discovered                |
| **jetton\_left**    | string         | Address of the first token in the pair                           |
| **jetton\_right**   | string         | Address of the second token in the pair                          |
| **reserves\_left**  | decimal(38,0)  | Reserve amount of the first token                                |
| **reserves\_right** | decimal(38,0)  | Reserve amount of the second token                               |
| **total\_supply**   | decimal(38,0)  | Total supply of LP tokens                                        |
| **tvl\_usd**        | decimal(20,6)  | Total value locked in USD                                        |
| **tvl\_ton**        | decimal(20,9)  | Total value locked in TON                                        |
| **last\_updated**   | int            | Unix timestamp of last update                                    |
| **is\_liquid**      | boolean        | Whether the pool has sufficient liquidity                        |
| **lp\_fee**         | decimal(12,10) | Fee paid to liquidity providers                                  |
| **protocol\_fee**   | decimal(12,10) | Fee paid to the protocol                                         |
| **referral\_fee**   | decimal(12,10) | Fee paid to referrers                                            |

## Table Sample

<TableSample tableSchema="ton" tableName="dex_pools" />
