superflyTop 15 Voter Base Number of Vote and changing Vote
    Updated 2022-11-24
    select
    VOTER ,
    count(DISTINCT TX_ID) as num_vote ,
    count(DISTINCT VOTE_OPTION ) as num_vote_kind
    from osmosis.core.fact_governance_votes
    where PROPOSAL_ID = 362
    and TX_STATUS ='SUCCEEDED'
    -- and VOTER = 'osmo16798cwveu2pch9js2ptfy4u6td9zme3mh95n86'
    group by voter
    HAVING num_vote_kind > 1
    order by num_vote desc
    limit 15
    Run a query to Download Data