blockchain | varchar | Chain identifier (e.g. ethereum) | ethereum |
address | varbinary | Account address | 0xd8da6bf26964af9d7eed9e03e53415d37aa96045 |
token_address | varbinary | Token contract address. Native tokens use the standardized address from dune.blockchains (zero address on most EVMs, 0x0000…1010 on Polygon). | 0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48 |
token_standard | varchar | native or erc20 | erc20 |
token_symbol | varchar | Token symbol from tokens_<chain>.erc20 (nullable) | USDC |
balance_raw | uint256 | Current balance in raw units (always > 0) | 1000000000 |
balance | double | Current balance in display units (balance_raw / 10^decimals, falls back to 18 decimals when unknown) | 1000.0 |
balance_usd | double | balance * prices.latest.price. NULL when no price is available for that token; coalesce(balance_usd, 0) if you need to sum across mixed-coverage tokens. | 1000.0 |
block_number | bigint | Block of the most recent balance update | 21000000 |
updated_at | timestamp | Block time of the most recent balance update | 2024-10-20 12:00:00 |