gokcinUntitled Query
Updated 2022-09-07Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with snapshot as (
select voter,
count (distinct id) as Votes
from ethereum.core.ez_snapshot
group by 1),
realms as (
select voter,
count (distinct tx_id) as Votes
from solana.core.fact_proposal_votes
where governance_platform = 'realms'
group by 1)
select 'Snapshot' as type, avg(votes) as average_votes from snapshot
Union ALL
select 'Realms' as type, avg(votes) as average_votes from realms
Run a query to Download Data