Flipside CommunityJupiter Monthly Usage
    with t0 as (
    select e.program_id
    -- , datetrunc('month', block_timestamp) as month
    , count(distinct signers[0]) as n_wallets
    from solana.core.fact_events e
    where block_timestamp >= '2021-01-01'
    and e.program_id ilike 'jup%'
    group by 1
    )
    select * from t0
    Run a query to Download Data