Four surfaces cover token activity on Ethereum.
The token list is everything we see onchain, which reaches far past the tokens anyone would want: a ranking of the busiest tokens returns contracts whose symbols imitate well-known ones. Nothing has gone wrong when those appear. Joining dimensions.asset_tokens keeps the tokens tied to a named asset with a named issuer; Assets covers that layer.
Every column and both function signatures are documented at Tokens.
Sample queries
facts_tokens.transfers is large and split by month. Bound partition_key and filter chain_id on every query, or you read the whole table and the whole table is billed to you.
Daily activity
Busiest tokens
Net balance moves
Current holders
Balance history
Daily price
Count the transfers and the accounts behind them on one day. A distinct-account count holds for the window it was asked for, and summing several days counts anyone active on more than one of them twice; Assets ▸ Senders covers the longer windows. Rank the busiest Ethereum tokens on one day. Joining dimensions.tokens on token_id adds the symbol and name of each contract. Find the accounts that gained and lost the most of one token on one day. Each movement is unnested into its two legs — the sender debited, the receiver credited — and summing them per account nets the day; dividing by 10^decimals converts to token amounts. The token is named by token_address and chain_id, and those two hold the read to one token’s blocks. List the largest current holders of one Ethereum token. The returned balance is already converted out of raw units. Each call adds up the token’s whole movement history, so a one-off holder set costs a full scan; Assets ▸ Metrics holds a daily supply and holder-count series for curated assets. Trace one account’s balance in one token over time. The function returns a row only on the days the balance moved; the balance on any other date is the latest row at or before it. The function replays the same history, so it costs a full scan of the token as well. Read one Ethereum token’s daily price. Each row is the midnight UTC price in USD.