zakkisyedgov_votes 1
    Updated 2022-04-27

    select proposal_id, option, sum(voting_power)

    from terra.gov_vote
    where
    --option='VOTE_OPTION_YES'
    --and
    tx_status='SUCCEEDED'
    and block_timestamp >= CURRENT_DATE - 30
    group by 1,2
    order by 1 desc


    Run a query to Download Data