Updated 2022-09-30
    select
    PROPOSAL,
    REALMS_ID,
    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,2
    order by 3 desc limit 10
    Run a query to Download Data