Updated 2025-04-10
    WITH t AS (
    SELECT
    DATE_TRUNC('day', block_timestamp) AS hour,
    COUNT(*) AS block_count,
    SUM(tx_count) AS total_transactions,
    AVG(tx_count) AS avg_tpb,
    MAX(tx_count) AS max_tpb,
    MIN(tx_count) AS min_tpb,
    STDDEV(tx_count) AS tpb_stddev
    FROM
    blast.core.fact_blocks
    GROUP BY
    DATE_TRUNC('day', block_timestamp)
    )
    SELECT
    *
    FROM
    t
    ORDER BY
    hour ASC
    Last run: 17 days agoAuto-refreshes every 24 hours
    HOUR
    BLOCK_COUNT
    TOTAL_TRANSACTIONS
    AVG_TPB
    MAX_TPB
    MIN_TPB
    TPB_STDDEV
    1
    2024-02-24 00:00:00.000469346921110
    2
    2024-02-25 00:00:00.00043200432071.000162210.01272792206
    3
    2024-02-26 00:00:00.00043200432171.000394210.0198242276
    4
    2024-02-27 00:00:00.00043200432721.001667310.04191658383
    5
    2024-02-28 00:00:00.00043200439041.016296710.1344172608
    6
    2024-02-29 00:00:00.0004320043561310.083634289112.752963969
    7
    2024-03-01 00:00:00.0004320085546419.802407384111.85133001
    8
    2024-03-02 00:00:00.0004320055045012.74189812615.706970124
    9
    2024-03-03 00:00:00.0004320052055112.04979218915.39376566
    10
    2024-03-04 00:00:00.0004320047602611.0191219515.815305495
    11
    2024-03-05 00:00:00.000432003600798.33516219414.338295748
    12
    2024-03-06 00:00:00.0004320045900810.625185340113.647155161
    13
    2024-03-07 00:00:00.000432003118967.21981522313.81070361
    14
    2024-03-08 00:00:00.000432002739336.34104210813.015943468
    15
    2024-03-09 00:00:00.000432002459805.6939819912.818426334
    16
    2024-03-10 00:00:00.000432002442135.6530797512.478900966
    17
    2024-03-11 00:00:00.000432002479575.73974512112.855011384
    18
    2024-03-12 00:00:00.000432002415285.5909264712.532041271
    19
    2024-03-13 00:00:00.000432002106014.87502343215.619834695
    20
    2024-03-14 00:00:00.000432003080977.13187510314.182080344
    ...
    405
    27KB
    2s