Updated 2022-09-29
    select
    --'Solana' as network,
    --BLOCK_TIMESTAMP::date as day,
    GOVERNANCE_PLATFORM,
    count(distinct VOTER) as voters,
    count(tx_id) as no_votes
    from solana.core.fact_proposal_votes where SUCCEEDED='TRUE'
    and BLOCK_TIMESTAMP>='2022-01-01'
    group by 1
    Run a query to Download Data