superfly Table(Unique Solana Programs)
    Updated 2022-07-06
    select block_timestamp::date as day,
    count(distinct program_id) as DISTINCT_PROGRAM_ID
    from solana.core.fact_events
    where day >='2022-01-01' AND day <='2022-06-07'
    group by 1
    order by 1 asc
    Run a query to Download Data