kiacryptodaily average activity
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
›
⌄
with info as (
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_id) as vote_count,
count(distinct voter) as unique_voter,
'Cosmos' as chain
from cosmos.core.fact_governance_votes
where
date >= current_date - 90 and
tx_succeeded = TRUE
group by 1
union all
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_id) as vote_count,
count(distinct voter) as unique_voter,
'Axelar' as chain
from axelar.core.fact_governance_votes
where
date >= current_date - 90 and
tx_succeeded = TRUE
group by 1
union all
select
date_trunc('day', block_timestamp) as date,
count(distinct tx_id) as vote_count,
count(distinct voter) as unique_voter,
'Osmosis' as chain
from osmosis.core.fact_governance_votes
where
date >= current_date - 90 and
tx_succeeded = TRUE
Run a query to Download Data