Elprognerd3- new aurory
Updated 2023-02-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with t1 as (SELECT
'Aurory' as game,
min(block_timestamp) as date1,
signers[0] as "players"
FROM solana.core.fact_events
where program_id='STkwf3sbMapjy7KV3hgrJtcVvY4SvRxWQ8pj4Enw1i5'
group by 1, 3)
SELECT
date_trunc('day', date1) as date,
game,
count(*) as "Number of new players",
sum("Number of new players") over (order by date asc) as "Cumulative number of new players"
from t1
group by 1, 2
order by 1
Run a query to Download Data