Updated 2023-02-10
    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