Skip to main content
One row per address, chain, date and hour with at least one transaction. native_value sums the native value the address’s transactions moved in that hour, in the chain’s smallest unit; it is null on solana, where native value is not tracked per transaction.

Columns

ColumnTypeDescription
addressSTRINGAddress that initiated the transactions: lowercase hex on ethereum, base and robinhoodchain, base58 and case-sensitive on solana.
chain_idSTRINGChain the address transacted on.
chain_familySTRINGChain family the chain belongs to: evm or svm; joins dimensions.chains.
activity_dateDATEUTC calendar date of the hour. Partition column. Full history per chain from its first standardized block. The latest date is partial until the UTC day closes and is rewritten by the next run.
hour_utcINT64Hour of day, 0 through 23, UTC.
tx_countINT64Transactions the address initiated in that hour, whether or not the address is attributed. Rows on the evm chains include reverted transactions; solana rows are successful, non-vote transactions only.
native_valueNUMERICNative value the address’s transactions moved in that hour, summed, in the chain’s smallest unit (wei on the evm chains). Null on solana, which has no transaction-level native value.

Sample queries

This table is large and split by day. Bound activity_date and filter chain_id on every query, or you read the whole table and the whole table is billed to you.
Pivots the day’s rows into one, hour_utc becoming 24 columns. tx_count is 0 for an hour with no transactions.