SocioAnalyticaMonad TPS
    Updated 2025-02-20
    -- forked from BlockTracker / Blast TPS @ https://flipsidecrypto.xyz/BlockTracker/q/q5ZAHypGameq/blast-tps

    SELECT date_trunc('hour', date) as "date",
    round(avg(T_P_S),2) as "TPS"
    FROM (
    SELECT
    date,
    num_of_txns,
    num_of_txns /DATEDIFF(second,min_block_timestamp,max_block_timestamp)as T_P_S
    FROM (
    SELECT
    date_trunc('hour', block_timestamp) as date,
    count(DISTINCT tx_hash) as num_of_txns,
    min(block_timestamp) as min_block_timestamp,
    max(block_timestamp) as max_block_timestamp
    FROM monad.testnet.fact_transactions
    where block_timestamp > '2025-02-19 11:00:00.000'
    GROUP BY 1
    )
    where DATEDIFF(second,min_block_timestamp,max_block_timestamp) > 0
    )
    GROUP BY 1
    having "TPS" < 400
    ORDER by 1 desc






    Last run: 30 days ago
    date
    TPS
    1
    2025-02-20 10:00:00.00038.31
    2
    2025-02-20 09:00:00.00039.85
    3
    2025-02-20 08:00:00.00036.74
    4
    2025-02-20 07:00:00.00041.63
    5
    2025-02-20 06:00:00.00034.89
    6
    2025-02-20 05:00:00.00032.06
    7
    2025-02-20 04:00:00.00028.56
    8
    2025-02-20 03:00:00.00024.24
    9
    2025-02-20 02:00:00.00023.29
    10
    2025-02-20 01:00:00.00022.1
    11
    2025-02-20 00:00:00.00029.35
    12
    2025-02-19 23:00:00.00035.96
    13
    2025-02-19 22:00:00.00022.03
    14
    2025-02-19 21:00:00.00023.18
    15
    2025-02-19 20:00:00.00026.01
    16
    2025-02-19 19:00:00.00022.93
    17
    2025-02-19 18:00:00.00030.19
    18
    2025-02-19 17:00:00.00025.09
    19
    2025-02-19 16:00:00.00018.32
    20
    2025-02-19 15:00:00.00020.14
    24
    811B
    2s