monadmetrics-JFe1_RTPS (Transactions Per Second)
    Updated 2025-02-27
    WITH tps AS (
    SELECT
    block_timestamp,
    COUNT(*) OVER (PARTITION BY DATE_TRUNC('day', block_timestamp)) / 86400 AS daily_tps
    FROM MONAD.testnet.fact_transactions
    WHERE block_timestamp >= '2025-02-19 15:00:00.000'
    )
    SELECT
    DATE_TRUNC('day', block_timestamp) AS day,
    ROUND(AVG(daily_tps), 2) AS avg_tps,
    MIN(daily_tps) AS min_tps,
    MAX(daily_tps) AS max_tps
    FROM tps
    GROUP BY 1
    ORDER BY 1 DESC

    Last run: about 1 month ago
    DAY
    AVG_TPS
    MIN_TPS
    MAX_TPS
    1
    2025-02-27 00:00:00.000141.68141.679942141.679942
    2
    2025-02-26 00:00:00.000255.99255.987569255.987569
    3
    2025-02-25 00:00:00.000153.88153.884248153.884248
    4
    2025-02-24 00:00:00.000114.71114.710833114.710833
    5
    2025-02-23 00:00:00.000110.42110.41647110.41647
    6
    2025-02-22 00:00:00.00059.3159.30552159.305521
    7
    2025-02-21 00:00:00.00051.451.40436351.404363
    8
    2025-02-20 00:00:00.00043.1543.15101943.151019
    9
    2025-02-19 00:00:00.0009.329.3243179.324317
    9
    496B
    3s