pepperatziintermediate-moccasin
    Updated 2025-02-20
    select
    date_trunc('hour', block_timestamp) as hour,
    count(distinct case when tx_succeeded = 'true' then tx_hash end) as total_successful_transactions,
    count(distinct case when tx_succeeded = 'false' then tx_hash end) as total_unsuccessful_transactions,
    count(distinct from_address) as total_distinct_users,
    sum(tx_fee) as total_fees_paid
    from monad.testnet.fact_transactions
    where date_trunc('hour', block_timestamp) >= '2025-02-19 16:00:00'
    group by 1
    order by 1 asc
    Last run: 28 days ago
    HOUR
    TOTAL_SUCCESSFUL_TRANSACTIONS
    TOTAL_UNSUCCESSFUL_TRANSACTIONS
    TOTAL_DISTINCT_USERS
    TOTAL_FEES_PAID
    1
    2025-02-19 16:00:00.000584917438175681085.940243914
    2
    2025-02-19 17:00:00.00089031126622817974.949051991
    3
    2025-02-19 18:00:00.0001067461895275151261.853785828
    4
    2025-02-19 19:00:00.000812141296205671065.675615755
    5
    2025-02-19 20:00:00.00092199134325063952.627987155
    6
    2025-02-19 21:00:00.0008255884215590815.390243891
    7
    2025-02-19 22:00:00.0007841587612989801.330979905
    8
    2025-02-19 23:00:00.000128301111412422974.314198627
    9
    2025-02-20 00:00:00.0001045781064133641004.187184482
    10
    2025-02-20 01:00:00.000781901333149991273.13115688
    11
    2025-02-20 02:00:00.000825141305167591395.048532193
    12
    2025-02-20 03:00:00.000856871559163451381.892380468
    13
    2025-02-20 04:00:00.0001010051766188431538.735975726
    14
    2025-02-20 05:00:00.0001133292053220941504.245938405
    15
    2025-02-20 06:00:00.0001226992878230031922.126410528
    16
    2025-02-20 07:00:00.0001453934435265572389.713580975
    17
    2025-02-20 08:00:00.0001292273006264372055.525956282
    18
    2025-02-20 09:00:00.0001373646040277332415.674648183
    19
    2025-02-20 10:00:00.0001370382632236661787.987095174
    20
    2025-02-20 11:00:00.0001324002396231951580.574418853
    31
    2KB
    2s