Updated 3 hours ago

    SELECT
    date,
    num_of_txns/DATEDIFF(second,min_block_timestamp,max_block_timestamp) as T_P_S
    FROM (
    SELECT
    date_trunc('{{granularity}}', 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
    GROUP BY 1
    )
    where date >= current_date - 30
    order by date desc







    Last run: about 3 hours ago
    DATE
    T_P_S
    1
    2025-03-15 00:00:00.000189.446183
    2
    2025-03-14 00:00:00.000179.011192
    3
    2025-03-13 00:00:00.000242.804118
    4
    2025-03-12 00:00:00.000369.934293
    5
    2025-03-11 00:00:00.000297.168729
    6
    2025-03-10 00:00:00.000137.777011
    7
    2025-03-09 00:00:00.000111.059607
    8
    2025-03-08 00:00:00.000123.947673
    9
    2025-03-07 00:00:00.000124.45637
    10
    2025-03-06 00:00:00.000120.279482
    11
    2025-03-05 00:00:00.000125.181102
    12
    2025-03-04 00:00:00.000136.392479
    13
    2025-03-03 00:00:00.000126.246878
    14
    2025-03-02 00:00:00.000124.346671
    15
    2025-03-01 00:00:00.000133.061795
    16
    2025-02-28 00:00:00.000172.135789
    17
    2025-02-27 00:00:00.000178.986516
    18
    2025-02-26 00:00:00.000255.990532
    19
    2025-02-25 00:00:00.000153.886029
    20
    2025-02-24 00:00:00.000114.712161
    31
    1KB
    55s