faraz-Lvyyy8compare of the proposal ID in vote
    Updated 2022-11-21
    select
    PROPOSAL_ID,
    count (distinct VOTER),
    count (distinct TX_ID) as "number of vote"
    from osmosis.core.fact_governance_votes
    where PROPOSAL_ID >= 200
    and TX_STATUS = 'SUCCEEDED'
    GROUP by 1
    order by 2 DESC
    Run a query to Download Data