cypherGoverning the Cosmos - unique voters
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
›
⌄
with cosmos_unique_voters as (select
count(distinct(voter)) as unique_voters,
count(distinct(tx_id)) as total_votes,
'cosmos' as chain
from cosmos.core.fact_governance_votes v
where block_timestamp >= '2022-6-3'),
-- 2021-3-3
osmosis_unique_voters as (select
count(distinct(voter)) as unique_voters,
count(distinct(tx_id)) as total_votes,
'osmosis' as chain
from osmosis.core.fact_governance_votes
where block_timestamp >= '2022-6-3'),
terra_unique_voters as (select
count(distinct(voter)) as unique_voters,
count(distinct(tx_id)) as total_votes,
'terra' as chain
from terra.core.fact_governance_votes
where block_timestamp >= '2022-6-3')
select * from cosmos_unique_voters
union
select * from osmosis_unique_voters
union
select * from terra_unique_voters
Run a query to Download Data