kasadeghDaily total number of unique programs since the beginning of January
    Updated 2022-07-06
    select BLOCK_TIMESTAMP::date as day,
    count(distinct PROGRAM_ID) as unique_programs_count
    from solana.core.fact_events
    where day>='2022-06-01'
    group by day
    order by day
    Run a query to Download Data