ArioDaily Number of Transactions
    Updated 2025-05-04
    select
    date_trunc(day, block_timestamp) as date,
    count(DISTINCT tx_id) as "$ Wagers",
    avg(count(DISTINCT tx_id)) over(order by date rows between 6 preceding and current row) as "7 Day MA"
    from
    solana.core.ez_events_decoded
    where
    program_id = 'FitAFk15vtx2PBjfr7QTnefaHRx6HwajRiZMt1DdSSKU'
    and block_timestamp >= current_date - {{Past_Days}}
    and event_type in ('deposit', 'depositSol')
    and SUCCEEDED
    group by 1
    Last run: about 2 months ago
    DATE
    $ Wagers
    7 Day MA
    1
    2025-02-03 00:00:00.00022282228
    2
    2025-02-04 00:00:00.00026372432.5
    3
    2025-02-05 00:00:00.00019532272.666
    4
    2025-02-06 00:00:00.00016752123.25
    5
    2025-02-07 00:00:00.00016422027
    6
    2025-02-08 00:00:00.00016301960.833
    7
    2025-02-09 00:00:00.00021881993.285
    8
    2025-02-10 00:00:00.00027832072.571
    9
    2025-02-11 00:00:00.00017901951.571
    10
    2025-02-12 00:00:00.00018541937.428
    11
    2025-02-13 00:00:00.00020421989.857
    12
    2025-02-14 00:00:00.00017622007
    13
    2025-02-15 00:00:00.00020762070.714
    14
    2025-02-16 00:00:00.00031312205.428
    15
    2025-02-17 00:00:00.00028092209.142
    16
    2025-02-18 00:00:00.00020472245.857
    17
    2025-02-19 00:00:00.00012492159.428
    18
    2025-02-20 00:00:00.00017162112.857
    19
    2025-02-21 00:00:00.00015792086.714
    20
    2025-02-22 00:00:00.00018692057.142
    91
    4KB
    3s