vegardProposals Information
    Updated 2022-11-02
    select
    proposal_id, lower(description) as description,
    count(distinct(voter)) as voters,
    sum(vote_weight) as total_vote_weight,
    count(distinct(tx_id)) as tx_number
    from osmosis.core.fact_governance_votes a
    left join osmosis.core.dim_vote_options b
    where 1 = 1
    and b.vote_id = a.vote_option
    and proposal_id in (337, 114, 196)
    and a.tx_status = 'SUCCEEDED'
    group by proposal_id, description
    order by tx_number desc
    Run a query to Download Data