SalehUntitled Query
    Updated 2022-11-02
    select
    proposal_id
    ,DESCRIPTION
    ,count(DISTINCT voter) as voters
    ,sum(VOTE_WEIGHT) as voting_power
    from osmosis.core.fact_governance_votes
    JOIN osmosis.core.dim_vote_options
    on VOTE_ID = vote_option
    where proposal_id in (114, 196, 337)
    --LIMIT 100
    group by 1,2--,2
    Run a query to Download Data