Mrftiempirical-cyan
    Updated 2025-07-31
    WITH tpstbl AS
    (
    SELECT
    DATE_TRUNC('second', block_timestamp) as ts,
    COUNT(*) as tx_count
    FROM monad.testnet.fact_transactions
    GROUP BY 1
    )
    SELECT
    ts as timestamp,
    tx_count as tps
    FROM tpstbl
    ORDER BY 2 DESC
    LIMIT 100
    Last run: about 2 months ago
    TIMESTAMP
    TPS
    1
    2025-04-11 16:03:42.00010718
    2
    2025-04-17 16:19:10.00010208
    3
    2025-04-17 18:07:13.00010141
    4
    2025-04-17 22:11:31.00010074
    5
    2025-04-11 15:43:57.00010024
    6
    2025-04-17 16:13:07.00010002
    7
    2025-03-29 02:10:59.00010000
    8
    2025-04-11 16:16:38.00010000
    9
    2025-04-17 17:16:37.00010000
    10
    2025-04-17 16:52:41.00010000
    11
    2025-04-05 22:02:00.00010000
    12
    2025-04-07 09:46:33.00010000
    13
    2025-04-11 16:04:42.00010000
    14
    2025-04-17 17:08:40.00010000
    15
    2025-04-11 02:00:06.00010000
    16
    2025-04-11 22:20:53.00010000
    17
    2025-04-17 21:19:09.00010000
    18
    2025-04-17 16:13:14.00010000
    19
    2025-03-29 02:10:47.00010000
    20
    2025-04-17 17:16:46.00010000
    100
    3KB
    194s