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

> TON account balance history — Toncoin 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 `ton.balances_history` table contains information about all balances changes for native TON and jettons. This table allows
to get point time balance for each address as well latest balances.

## Column Descriptions

| **Column**            | **Type**      | **Description**                                                       |
| --------------------- | ------------- | --------------------------------------------------------------------- |
| **block\_time**       | timestamp     | Timestamp of when the block containing the balance change was created |
| **block\_date**       | date          | Date of when the block containing the balance change was created      |
| **address**           | string        | Account raw address                                                   |
| **asset**             | string        | Asset address or **TON** for TON balance                              |
| **amount**            | decimal(38,0) | Asset balance                                                         |
| **mintless\_claimed** | boolean       | Special flag for mintless jettons that mintless part was claimed      |
| **timestamp**         | int           | Unix timestamp of the transaction                                     |
| **lt**                | bigint        | Logical time of the transaction                                       |

## Table Sample

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