saber-jlVote distribution of Proposal 337
    Updated 2022-11-02
    select count(distinct voter), DESCRIPTION
    from osmosis.core.fact_governance_votes gv
    join osmosis.core.dim_vote_options vo
    on gv.VOTE_OPTION = vo.VOTE_ID
    where PROPOSAL_ID = 337
    and TX_STATUS = 'SUCCEEDED'
    group by 2
    order by 1 desc

    Run a query to Download Data