Updated 2022-11-23
    -- this code is thankfully burrowed from alik110: https://app.flipsidecrypto.com/dashboard/MIXbqK
    select voter,
    count (distinct tx_id) as votes_count
    from osmosis.core.fact_governance_votes
    where tx_status = 'SUCCEEDED'
    and proposal_id in ('362')
    group by 1
    order by 2 DESC
    limit 20
    Run a query to Download Data