MLDZMNGeneral table of voting performance on various networks
Updated 2023-01-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
select
'Osmosis' as network,
min(BLOCK_TIMESTAMP) as first_captured_vote,
count (distinct tx_id) as no_votes,
count (distinct voter) as no_voters,
count(distinct PROPOSAL_ID) as no_proposal,
no_votes/no_proposal as vote_per_proposal,
no_voters/no_proposal as voter_per_proposal
from osmosis.core.fact_governance_votes
where TX_SUCCEEDED = 'TRUE'
group by 1
union all
select
'Cosmos' as network,
min(BLOCK_TIMESTAMP) as first_captured_vote,
count (distinct tx_id) as no_votes,
count (distinct voter) as no_voters,
count(distinct PROPOSAL_ID) as no_proposal,
no_votes/no_proposal as vote_per_proposal,
no_voters/no_proposal as voter_per_proposal
from cosmos.core.fact_governance_votes
where TX_SUCCEEDED = 'TRUE'
group by 1
union all
select
'Terra' as network,
min(BLOCK_TIMESTAMP) as first_captured_vote,
count (distinct tx_id) as no_votes,
count (distinct voter) as no_voters,
count(distinct PROPOSAL_ID) as no_proposal,
no_votes/no_proposal as vote_per_proposal,
no_voters/no_proposal as voter_per_proposal
Run a query to Download Data