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

# thorchain.defi_pool_block_balances

> THORChain pool balances per block — RUNE and asset depths.

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 `thorchain.defi_pool_block_balances` table block-level balances for Continuous Liquidity Pools (CLPs) on THORChain. This table tracks RUNE, asset, and synthetic asset balances in pools at each block. This table is partitioned by day.

## Column Descriptions

| **Column**                          | **Type**      | **Description**                                 |
| ----------------------------------- | ------------- | ----------------------------------------------- |
| **fact\_pool\_block\_balances\_id** | varchar       | Surrogate key for the pool block balance record |
| **day**                             | date          | Date of the record                              |
| **block\_timestamp**                | timestamp     | Timestamp of when the block was created         |
| **dim\_block\_id**                  | varchar       | Reference to the block dimension table          |
| **pool\_name**                      | varchar       | Name of the liquidity pool                      |
| **rune\_amount**                    | decimal(38,0) | RUNE balance in the pool                        |
| **rune\_amount\_usd**               | decimal(20,6) | USD value of RUNE balance                       |
| **asset\_amount**                   | decimal(38,0) | Asset balance in the pool                       |
| **asset\_amount\_usd**              | decimal(20,6) | USD value of asset balance                      |
| **synth\_amount**                   | decimal(38,0) | Synthetic asset amount in the pool              |
| **synth\_amount\_usd**              | decimal(20,6) | USD value of synthetic asset amount             |
| **inserted\_timestamp**             | timestamp     | Time when the record was inserted               |
| **modified\_timestamp**             | timestamp     | Time when the record was last modified          |

## Table Sample

<TableSample tableSchema="thorchain" tableName="defi_pool_block_balances" />
