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,
    ROUND(total_transactions / 3600.0, 4) AS tps,
    unique_users,
    ROUND(unique_users / 3600.0, 4) AS ups,
    total_gas_fees,
    SUM(total_transactions) OVER (ORDER BY hour) AS cumulative_transactions,
    SUM(unique_users) OVER (ORDER BY hour) AS cumulative_users,
    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
    TPS
    UNIQUE_USERS
    UPS
    TOTAL_GAS_FEES
    CUMULATIVE_TRANSACTIONS
    CUMULATIVE_USERS
    CUMULATIVE_GAS_FEES
    1
    2025-02-24 12:00:00.00030268784.07974865413.5152172.810461452294150983760815240252.419747427
    2
    2025-02-24 11:00:00.000513243142.56756116716.99083410.779263971291124113712161238079.609285975
    3
    2025-02-24 10:00:00.000498737138.53816324317.56753497.47044481285991683650994234668.830022004
    4
    2025-02-24 09:00:00.000520872144.68676534518.15143584.620986043281004313587751231171.359577194
    5
    2025-02-24 08:00:00.000530791147.44197087319.68693763.541168085275795593522406227586.73859115
    6
    2025-02-24 07:00:00.000492262136.73946529818.13833344.320736509270487683451533223823.197423065
    7
    2025-02-24 06:00:00.000481210133.66945695815.82173043.9609498265565063386235220478.876686556
    8
    2025-02-24 05:00:00.000475912132.19785338714.82973016.057757538260752963329277217434.915736756
    9
    2025-02-24 04:00:00.000462752128.54225725215.90332996.992605961255993843275890214418.857979218
    10
    2025-02-24 03:00:00.000399735111.03755013413.92612713.918891331251366323218638211421.865373258
    11
    2025-02-24 02:00:00.000368335102.31534645612.90442559.874932274247368973168504208707.946481927
    12
    2025-02-24 01:00:00.00034960397.1119344079.55752296.988926098243685623122048206148.071549653
    13
    2025-02-24 00:00:00.00030330984.2525240506.68061876.119278501240189593087641203851.082623554
    14
    2025-02-23 23:00:00.00030902185.8392218756.07641828.071251957237156503063591201974.963345053
    15
    2025-02-23 22:00:00.00032986191.6281241336.70361883.390172508234066293041716200146.892093096
    16
    2025-02-23 21:00:00.00035438898.4411250016.94472081.417474873230767683017583198263.501920588
    17
    2025-02-23 20:00:00.000369599102.6664299228.31172256.405853495227223802992582196182.084445715
    18
    2025-02-23 19:00:00.000456839126.8997328869.1352635.181216069223527812962660193925.67859222
    19
    2025-02-23 18:00:00.000455541126.53923972511.03472820.557854997218959422929774191290.497376151
    20
    2025-02-23 17:00:00.000501511139.30864077811.32722853.764762383214404012890049188469.939521154
    ...
    133
    13KB
    27s