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

# near.circulating_supply

> NEAR circulating supply snapshots — total and circulating NEAR 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 `near.circulating_supply` table holds daily circulating and total supply of tokens in NEAR.

## Column Descriptions

| Column                         | Description                                                  | Type                        |
| ------------------------------ | ------------------------------------------------------------ | --------------------------- |
| block\_date                    | The date of the block when the supply was recorded.          | date                        |
| computed\_at\_block\_timestamp | Timestamp of the block when the supply was computed.         | timestamp(3) with time zone |
| computed\_at\_block\_hash      | Hash of the block at the time of supply computation.         | varchar                     |
| computed\_at\_block\_height    | Block height at which the supply was computed.               | bigint                      |
| circulating\_tokens\_supply    | The circulating supply of tokens at the time of computation. | double                      |
| total\_tokens\_supply          | The total supply of tokens at the time of computation.       | double                      |
| processed\_time                | The timestamp when the supply data was processed.            | timestamp(3) with time zone |
| updated\_at                    | Timestamp of the last update to this record.                 | timestamp(3) with time zone |
| ingested\_at                   | Timestamp when this data was ingested into Dune.             | timestamp(3) with time zone |

## Table Sample

<TableSample tableSchema="near" tableName="circulating_supply" />
