bitcoin.stats Table: ez_core_metrics_hourly Type: View
Description
This table contains hourly aggregated metrics for the Bitcoin blockchain, providing comprehensive statistics about network activity, transaction volume, and economic indicators. Each row represents a single hour with aggregated metrics including block counts, transaction counts, unique address counts, and fee totals in both native currency and USD. This easy view simplifies complex blockchain analytics by pre-calculating common metrics, making it ideal for dashboards, reporting, and high-level network analysis.Key Use Cases
- Network activity monitoring and trend analysis
- Transaction volume tracking and throughput analysis
- Fee market analysis and economic indicator monitoring
- Network health assessment and performance tracking
- Dashboard creation and real-time monitoring
- Historical trend analysis and network growth studies
- Comparative analysis across different time periods
Important Relationships
- Aggregates data from
core.fact_blocksandcore.fact_transactions - Utilizes
price.ez_prices_hourlyfor USD fee calculations - Supports
core.fact_clustered_transfersfor entity-level metrics - Enables integration with
gov.ez_miner_rewardsfor mining economics - Provides aggregated context for all other Bitcoin analytics
- Serves as the primary source for network-level reporting
Commonly-used Fields
block_timestamp_hour: Essential for time-series analysis and trend detectiontransaction_count: Core metric for network activity and throughput analysistotal_fees_usd: Key economic indicator for fee market analysisblock_count: Important for network performance and block time analysisunique_from_countandunique_to_count: Critical for address activity analysistotal_fees_native: Essential for native currency fee analysis
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_TIMESTAMP_HOUR | TIMESTAMP_NTZ | The hour of the timestamp of the block. |
| BLOCK_NUMBER_MIN | NUMBER | The minimum block number in the hour. |
| BLOCK_NUMBER_MAX | NUMBER | The maximum block number in the hour. |
| BLOCK_COUNT | NUMBER | The number of blocks in the hour. |
| TRANSACTION_COUNT | NUMBER | The number of transactions in the hour. |
| UNIQUE_ADDRESS_COUNT | NUMBER | |
| UNIQUE_TO_COUNT | NUMBER | The number of unique outputs keys to addresses in the hour. |
| TOTAL_FEES_NATIVE | FLOAT | The sum of all fees in the hour, in the native fee currency. |
| TOTAL_FEES_USD | FLOAT | The sum of all fees in the hour, in USD. |
| EZ_CORE_METRICS_HOURLY_ID | TEXT | A unique identifier (STRING or NUMBER) for the record, used as a primary key for this table. Not a blockchain-native field. |