SalehUntitled Query
Updated 2022-11-02
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
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