ArioGameID
    Updated 2025-02-09
    with game_id as (
    select
    DECODED_INSTRUCTION:args:gameId::string as Game_id,
    min(block_timestamp) as first_date
    from solana.core.ez_events_decoded
    where program_id = 'FitAFk15vtx2PBjfr7QTnefaHRx6HwajRiZMt1DdSSKU'
    and event_type in ('deposit', 'depositSol')
    group by 1
    ),
    main as (
    select
    date_trunc(day, first_date) as date,
    count(DISTINCT Game_id) as "# Challenges",
    sum("# Challenges") over(order by date) as "Cum. # Challenges"
    from game_id
    group by 1
    order by date desc
    )
    select
    *,
    avg("# Challenges") over(order by date rows between 6 preceding and current row) as "7D MA"
    from main
    where date >= current_date - {{Past_Days}}
    order by date desc
    Last run: about 2 months ago
    DATE
    # Challenges
    Cum. # Challenges
    7D MA
    1
    2025-02-09 00:00:00.00035353832.285
    2
    2025-02-08 00:00:00.00023350329.142
    3
    2025-02-07 00:00:00.00025348029.285
    4
    2025-02-06 00:00:00.00027345530.714
    5
    2025-02-05 00:00:00.00044342828.285
    6
    2025-02-04 00:00:00.00027338427.571
    7
    2025-02-03 00:00:00.00045335726.857
    8
    2025-02-02 00:00:00.00013331223
    9
    2025-02-01 00:00:00.00024329926.285
    10
    2025-01-31 00:00:00.00035327527.714
    11
    2025-01-30 00:00:00.00010324026.428
    12
    2025-01-29 00:00:00.00039323028.857
    13
    2025-01-28 00:00:00.00022319129
    14
    2025-01-27 00:00:00.00018316931.142
    15
    2025-01-26 00:00:00.00036315132.714
    16
    2025-01-25 00:00:00.00034311531.571
    17
    2025-01-24 00:00:00.00026308131
    18
    2025-01-23 00:00:00.00027305534
    19
    2025-01-22 00:00:00.00040302834.142
    20
    2025-01-21 00:00:00.00037298831.857
    91
    4KB
    3s