0xHaM-dOver Time
    Updated 2025-03-27
    WITH eventTb AS (
    select
    block_timestamp,
    tx_hash,
    origin_from_address,
    from avalanche.core.ez_decoded_event_logs
    where origin_to_address in (
    '0x013b34dba0d6c9810f530534507144a8646e3273'
    ,'0x0363a3debe776de575c36f524b7877db7dd461db'
    ,'0x698c34bad17193af7e1b4eb07d1309ff6c5e715e'
    ,'0xabe7a9dfda35230ff60d1590a929ae0644c47dc1'
    ,'0x8a63943ac3f394ed73c7b06fecf3a81bc11b840e'
    ,'0x46080cd724102ac0e1d4d1fb45474d14e175a8f9'
    ,'0xb79a06e4cbf379f4676983d1a6d83e996c3a63c4'
    )
    )
    select
    trunc(block_timestamp, 'week') as date,
    count(distinct tx_hash) as n_txs,
    count(distinct origin_from_address) as n_users,
    n_txs/n_users as avg_txs_per_user,
    sum(n_txs) over (order by date) as total_txs,
    from eventTb
    group by 1
    order by 1 desc










    Last run: about 1 month ago
    DATE
    N_TXS
    N_USERS
    AVG_TXS_PER_USER
    TOTAL_TXS
    1
    2025-03-24 00:00:00.000197712.77464829532
    2
    2025-03-17 00:00:00.000255962.6562529335
    3
    2025-03-10 00:00:00.0009879710.17525829080
    4
    2025-03-03 00:00:00.0005161413.65957428093
    5
    2025-02-24 00:00:00.0004701273.70078727577
    6
    2025-02-17 00:00:00.0005261583.32911427107
    7
    2025-02-10 00:00:00.00013464283.1448626581
    8
    2025-02-03 00:00:00.0008774831.81573525235
    9
    2025-01-27 00:00:00.00013494053.33086424358
    10
    2025-01-20 00:00:00.00015233873.93540123009
    11
    2025-01-13 00:00:00.00014933813.91863521486
    12
    2025-01-06 00:00:00.00015553824.07068119993
    13
    2024-12-30 00:00:00.00018373984.61557818438
    14
    2024-12-23 00:00:00.00018223874.7080116601
    15
    2024-12-16 00:00:00.0008134471.81879214779
    16
    2024-12-09 00:00:00.0004211253.36813966
    17
    2024-12-02 00:00:00.0005141393.69784213545
    18
    2024-11-25 00:00:00.0003751053.57142913031
    19
    2024-11-18 00:00:00.0003131082.89814812656
    20
    2024-11-11 00:00:00.0005191782.9157312343
    41
    2KB
    17s