functions.calculate_latest_token_balances and functions.calculate_historical_eod_token_balances. balance is the holder’s amount in whole token units, and each call takes a chain, a token address and a token standard from Registry.
Columns
| Column | Type | Description |
|---|---|---|
balance_date | DATE | Day the balance moved. Returned by calculate_historical_eod_token_balances, which writes a row per day an account’s balance changed. |
account_address | STRING | Account holding the balance. On Solana this is the token account; dimensions.accounts resolves the wallet behind it. |
balance | BIGNUMERIC | End-of-day balance in whole token units, already scaled down by decimals. calculate_latest_token_balances returns the last one per account, positive balances only. |
Sample queries
- Current holders
- Concentration on a date
Each call adds up the whole balance-change history of one deployment; a daily holder count is cheaper read from
metrics_assets.holders_native_daily on Metrics. Addresses are lowercased on input, so a checksummed address pasted from an explorer resolves.