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

# flow.cadence_native_token_balances

> Flow native FLOW token balances — account holdings over time.

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 `flow.cadence_native_token_balances` table contains FLOW native token balance snapshots for addresses on the Flow Cadence blockchain.

## Column Descriptions

| Column            | Type          | Description                                        |
| ----------------- | ------------- | -------------------------------------------------- |
| block\_date       | date          | The date of the balance snapshot                   |
| timestamp         | timestamp     | Timestamp of the balance snapshot                  |
| address           | string        | Address holding the FLOW tokens                    |
| amount            | decimal(38,9) | Balance amount in FLOW                             |
| transaction\_hash | string        | Hash of the transaction that affected this balance |
| block\_height     | bigint        | Block height at the time of the snapshot           |
| block\_hash       | string        | Hash of the block at the time of the snapshot      |
| chain\_specific   | string        | Chain-specific metadata in JSON format             |
| \_updated\_at     | timestamp     | Timestamp when the record was last updated         |
| \_ingested\_at    | timestamp     | Timestamp when the record was ingested             |

## Table Sample

<TableSample tableSchema="flow" tableName="cadence_native_token_balances" />
