Elprognerd5 new Genopets
Updated 2023-02-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with t1 as (
select
'Genopets' as game,
min(block_timestamp) as date1,
signers[0] as "players"
FROM solana.core.fact_events
where program_id='StaKe9nb7aUjXpjpZ45o6uJBsZxj2BWCDBtjk8LCg2v'
group by 1,3
order by 2)
SELECT
date_trunc('day', date1) as date,
game,
count(*) as "Number of daily new players",
sum("Number of daily 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