mattkstewProposals Ordered by Most to Least Votes on Cosmos
    Updated 2023-01-14
    select
    PROPOSAL_ID,
    count(distinct voter) as Total_Votes

    from cosmos.core.fact_governance_votes
    group by 1
    order by 2 desc

    Run a query to Download Data