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.
balances_<chain>.updates records one row per observed balance change for native currencies and ERC20 tokens. Each row is the on-chain balance at a specific block for an (address, token_address) pair. Refreshed hourly.
For most historical analysis prefer balances_<chain>.daily_updates, which is faster and includes USD values. Use balances_<chain>.updates when you need block-level resolution.
Table Schema
| Column | Type | Description |
|---|---|---|
blockchain | varchar | Chain identifier (e.g. ethereum) |
block_date | date | Date of block_number (partition key) |
block_number | bigint | Block at which the balance was observed |
timestamp | timestamp | Block time |
address | varbinary | Account address |
token_address | varbinary | Token contract address. Native tokens use the standardized address from dune.blockchains (zero address on most EVMs, 0x0000…1010 on Polygon). |
token_standard | varchar | native or erc20 |
token_symbol | varchar | Token symbol (nullable) |
balance_raw | uint256 | Balance in raw units (smallest denomination) |
balance | double | Balance in display units (balance_raw / 10^decimals, 18 if unknown) |
Usage Notes
balances_<chain>.updates is partitioned by block_date. For best performance, include block_date and at least one of address or token_address in your WHERE clause.
USD Values
This table is intentionally not enriched with USD prices. A balance change observed at a specific block can be priced against many different reference points (time of change, end of day, latest, custom benchmark) and there is no single right choice. Bring your own price by joiningprices.minute, prices.hour, prices.day, or prices.latest at the time anchor that fits your analysis.
If you only need end-of-day USD values, use balances_<chain>.daily_updates where balance_usd is precomputed from prices.day.