Eman-RazTemporal Pattern of Aurora Chain Transactions
    Updated 2025-04-30
    select date_part('hour', block_timestamp) as "Hour",
    case when dayofweek(block_timestamp)=0 then 7
    else dayofweek(block_timestamp) end||' - '||dayname(block_timestamp) as "Day Name",
    count(distinct tx_hash) as "Txns Count"
    from aurora.core.fact_transactions
    where block_timestamp::date>='{{Start_Date}}' and block_timestamp::date<='{{End_Date}}'
    and status<>'Series 3'
    group by 1,2
    order by 1, 2

    Last run: about 1 month ago
    Hour
    Day Name
    Txns Count
    1
    01 - Mon61971
    2
    02 - Tue52695
    3
    03 - Wed61000
    4
    04 - Thu61375
    5
    05 - Fri51845
    6
    06 - Sat51933
    7
    07 - Sun53214
    8
    11 - Mon56070
    9
    12 - Tue49338
    10
    13 - Wed53132
    11
    14 - Thu56172
    12
    15 - Fri49111
    13
    16 - Sat49152
    14
    17 - Sun48420
    15
    21 - Mon56765
    16
    22 - Tue50513
    17
    23 - Wed54009
    18
    24 - Thu55994
    19
    25 - Fri50343
    20
    26 - Sat49704
    ...
    168
    3KB
    4s