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
| Column | Type | Description |
|---|---|---|
address | STRING | Address that initiated the transactions: lowercase hex on ethereum, base and robinhoodchain, base58 and case-sensitive on solana. |
chain_id | STRING | Chain the address transacted on. |
chain_family | STRING | Chain family the chain belongs to: evm or svm; joins dimensions.chains. |
activity_date | DATE | UTC 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_utc | INT64 | Hour of day, 0 through 23, UTC. |
tx_count | INT64 | Transactions 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_value | NUMERIC | Native 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
- One address, one day
- Busiest hour over a month
- Attributed senders, one day
- One address, two chains
Pivots the day’s rows into one,
hour_utc becoming 24 columns. tx_count is 0 for an hour with no transactions.