Updated 2023-02-10
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
25
›
⌄
SELECT
'Aurory' as game,
COUNT(DISTINCT signers[0]) as "Total number of players"
FROM solana.core.fact_events
where program_id='STkwf3sbMapjy7KV3hgrJtcVvY4SvRxWQ8pj4Enw1i5'
GROUP by 1
union
select
'Star Atlas' as game,
count(DISTINCT signers[0]) as "Total number of players"
FROM solana.core.fact_events
where program_id='ATLocKpzDbTokxgvnLew3d7drZkEzLzDpzwgrgWKDbmc'
group by 1
union
select
'Genopets' as game,
count(DISTINCT signers[0]) as "Total number of players"
FROM solana.core.fact_events
where program_id='StaKe9nb7aUjXpjpZ45o6uJBsZxj2BWCDBtjk8LCg2v'
group by 1
order by 2
Run a query to Download Data