tkvresearchvital-beige
    Updated 2025-02-26
    select case
    when day_name = 'Sun' then '01. Sun'
    when day_name = 'Mon' then '02. Mon'
    when day_name = 'Tue' then '03. Tue'
    when day_name = 'Wed' then '04. Wed'
    when day_name = 'Thu' then '05. Thu'
    when day_name = 'Fri' then '06. Fri'
    when day_name = 'Sat' then '07. Sat'
    end as day_name,
    hour_time,
    case
    when tx_cnt > 1000000 then 1000000
    else tx_cnt
    end as tx_cnt
    from
    (select dayname(date(block_timestamp)) as day_name,
    hour(block_timestamp) as hour_time,
    count(distinct tx_hash) as tx_cnt
    from monad.testnet.fact_transactions
    group by 1,2
    )
    order by day_name, hour_time
    Last run: 24 days ago
    DAY_NAME
    HOUR_TIME
    TX_CNT
    1
    01. Sun0461696
    2
    01. Sun1483003
    3
    01. Sun2524404
    4
    01. Sun3554597
    5
    01. Sun4590415
    6
    01. Sun5626598
    7
    01. Sun6659841
    8
    01. Sun7689477
    9
    01. Sun8744207
    10
    01. Sun9782526
    11
    01. Sun10739239
    12
    01. Sun11751969
    13
    01. Sun12777543
    14
    01. Sun13843811
    15
    01. Sun14894404
    16
    01. Sun15821768
    17
    01. Sun16837600
    18
    01. Sun17809998
    19
    01. Sun18760592
    20
    01. Sun19759385
    ...
    168
    4KB
    5s