Updated 2025-02-24
    WITH hourly_stats AS (
    SELECT
    DATE_TRUNC('hour', block_timestamp) AS hour,
    COUNT(DISTINCT tx_hash) AS total_transactions,
    COUNT(DISTINCT from_address) AS unique_users,
    SUM(tx_fee) AS total_gas_fees
    FROM monad.testnet.fact_transactions
    WHERE block_timestamp >= '2025-02-19'
    AND tx_succeeded = TRUE
    GROUP BY 1
    )
    SELECT
    hour,
    total_transactions,
    SUM(total_transactions) OVER (ORDER BY hour) AS cumulative_transactions,
    unique_users,
    SUM(unique_users) OVER (ORDER BY hour) AS cumulative_users,
    total_gas_fees,
    SUM(total_gas_fees) OVER (ORDER BY hour) AS cumulative_gas_fees
    FROM hourly_stats
    ORDER BY hour DESC;

    Last run: 2 months ago
    HOUR
    TOTAL_TRANSACTIONS
    CUMULATIVE_TRANSACTIONS
    UNIQUE_USERS
    CUMULATIVE_USERS
    TOTAL_GAS_FEES
    CUMULATIVE_GAS_FEES
    1
    2025-02-24 12:00:00.000302687294150984865437608152172.810461452240252.419747427
    2
    2025-02-24 11:00:00.000513243291124116116737121613410.779263971238079.609285975
    3
    2025-02-24 10:00:00.000498737285991686324336509943497.47044481234668.830022004
    4
    2025-02-24 09:00:00.000520872281004316534535877513584.620986043231171.359577194
    5
    2025-02-24 08:00:00.000530791275795597087335224063763.541168085227586.73859115
    6
    2025-02-24 07:00:00.000492262270487686529834515333344.320736509223823.197423065
    7
    2025-02-24 06:00:00.000481210265565065695833862353043.9609498220478.876686556
    8
    2025-02-24 05:00:00.000475912260752965338733292773016.057757538217434.915736756
    9
    2025-02-24 04:00:00.000462752255993845725232758902996.992605961214418.857979218
    10
    2025-02-24 03:00:00.000399735251366325013432186382713.918891331211421.865373258
    11
    2025-02-24 02:00:00.000368335247368974645631685042559.874932274208707.946481927
    12
    2025-02-24 01:00:00.000349603243685623440731220482296.988926098206148.071549653
    13
    2025-02-24 00:00:00.000303309240189592405030876411876.119278501203851.082623554
    14
    2025-02-23 23:00:00.000309021237156502187530635911828.071251957201974.963345053
    15
    2025-02-23 22:00:00.000329861234066292413330417161883.390172508200146.892093096
    16
    2025-02-23 21:00:00.000354388230767682500130175832081.417474873198263.501920588
    17
    2025-02-23 20:00:00.000369599227223802992229925822256.405853495196182.084445715
    18
    2025-02-23 19:00:00.000456839223527813288629626602635.181216069193925.67859222
    19
    2025-02-23 18:00:00.000455541218959423972529297742820.557854997191290.497376151
    20
    2025-02-23 17:00:00.000501511214404014077828900492853.764762383188469.939521154
    ...
    133
    11KB
    5s