Not all metrics are available for every chain. The list of columns present in the table may vary by chain.
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| chain | VARCHAR | The name of the blockchain |
| activity_date | TIMESTAMP_NTZ(9) | The date for which metrics are being calculated. Only includes completed days. |
| symbol | VARCHAR | The ticker symbol of the chain’s native token |
| name | VARCHAR | The display name of the chain’s native token |
| price_median_usd | FLOAT | The median price of the chain’s native token in USD for the given day |
| market_cap_usd | FLOAT | The market capitalization of the chain’s native token in USD |
| project_token_symbol | VARCHAR | The ticker symbol of the chain’s project token, if different from the native token |
| project_token_name | VARCHAR | The display name of the chain’s project token, if different from the native token |
| project_token_price_median_usd | FLOAT | The median price of the chain’s project token in USD for the given day |
| project_token_market_cap_usd | FLOAT | The market capitalization of the chain’s project token in USD |
| project_token_total_volume_usd | FLOAT | The total trading volume of the chain’s project token in USD |
| total_blocks | NUMBER(38,0) | The total number of blocks produced on the chain for the given day |
| avg_network_utilisation | FLOAT | The average network utilisation as a percentage, calculated as gas used divided by gas limit |
| avg_block_size | FLOAT | The average size of blocks in bytes |
| avg_block_time | FLOAT | The average time between blocks |
| avg_transactions_per_second | FLOAT | The average number of transactions per second, calculated as the average number of transactions per block divided by the average block time (in seconds) |
| active_contracts | NUMBER(38,0) | The total number of distinct smart contracts that have been interacted with |
| new_deployed_contracts | NUMBER(38,0) | The total number of new smart contracts deployed |
| distinct_contract_deployers | NUMBER(38,0) | The total number of distinct addresses that have deployed smart contracts |
| active_addresses | NUMBER(38,0) | The number of distinct wallet addresses that have initiated successful transactions |
| new_addresses | NUMBER(38,0) | The number of distinct wallet addresses that have initiated their first successful transactions, i.e. where nonce = 0 |
| returning_addresses | NUMBER(38,0) | The number of distinct wallet addresses, that are not new, that have initiated successful transactions, i.e. where nonce > 0 |
| total_transactions | NUMBER(38,0) | The total number of transactions, including both successful and failed transactions |
| success_transactions | NUMBER(38,0) | The total number of successful transactions only |
| failed_transactions | NUMBER(38,0) | The total number of failed transactions only |
| transaction_fees | FLOAT | The total transaction fees paid (including L1 and L2 fees), expressed in the native token |
| transaction_fees_usd | FLOAT | The total transaction fees paid (including L1 and L2 fees) in USD terms |
| avg_transaction_fees | FLOAT | The average transaction fees paid (including L1 and L2 fees) expressed in the native token, excluding system transactions (where applicable) and transactions with 0 fees |
| avg_transaction_fees_usd | FLOAT | The average transaction fees paid (including L1 and L2 fees) in USD terms, excluding system transactions (where applicable) and transactions with 0 fees |
| native_token_avg_transfer_fees | FLOAT | The average cost to transfer the native token, expressed in the native token |
| native_token_avg_transfer_fees_usd | FLOAT | The average cost to transfer the native token, in USD terms |
| active_addresses_7d | NUMBER(38,0) | Same as active_addresses but over 7-day rolling window |
| new_addresses_7d | NUMBER(38,0) | Same as new_addresses but over 7-day rolling window |
| returning_addresses_7d | NUMBER(38,0) | Same as returning_addresses but over 7-day rolling window |
| active_addresses_28d | NUMBER(38,0) | Same as active_addresses but over 28-day rolling window. 28 days chosen for equal weekday/weekend weighting |
| new_addresses_28d | NUMBER(38,0) | Same as new_addresses but over 28-day rolling window. 28 days chosen for equal weekday/weekend weighting |
| returning_addresses_28d | NUMBER(38,0) | Same as returning_addresses but over 28-day rolling window. 28 days chosen for equal weekday/weekend weighting |