DATE | # Challenges | Cum. # Challenges | 7D MA | |
---|---|---|---|---|
1 | 2025-02-09 00:00:00.000 | 35 | 3538 | 32.285 |
2 | 2025-02-08 00:00:00.000 | 23 | 3503 | 29.142 |
3 | 2025-02-07 00:00:00.000 | 25 | 3480 | 29.285 |
4 | 2025-02-06 00:00:00.000 | 27 | 3455 | 30.714 |
5 | 2025-02-05 00:00:00.000 | 44 | 3428 | 28.285 |
6 | 2025-02-04 00:00:00.000 | 27 | 3384 | 27.571 |
7 | 2025-02-03 00:00:00.000 | 45 | 3357 | 26.857 |
8 | 2025-02-02 00:00:00.000 | 13 | 3312 | 23 |
9 | 2025-02-01 00:00:00.000 | 24 | 3299 | 26.285 |
10 | 2025-01-31 00:00:00.000 | 35 | 3275 | 27.714 |
11 | 2025-01-30 00:00:00.000 | 10 | 3240 | 26.428 |
12 | 2025-01-29 00:00:00.000 | 39 | 3230 | 28.857 |
13 | 2025-01-28 00:00:00.000 | 22 | 3191 | 29 |
14 | 2025-01-27 00:00:00.000 | 18 | 3169 | 31.142 |
15 | 2025-01-26 00:00:00.000 | 36 | 3151 | 32.714 |
16 | 2025-01-25 00:00:00.000 | 34 | 3115 | 31.571 |
17 | 2025-01-24 00:00:00.000 | 26 | 3081 | 31 |
18 | 2025-01-23 00:00:00.000 | 27 | 3055 | 34 |
19 | 2025-01-22 00:00:00.000 | 40 | 3028 | 34.142 |
20 | 2025-01-21 00:00:00.000 | 37 | 2988 | 31.857 |
ArioGameID
Updated 2025-02-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
›
⌄
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
91
4KB
3s