misaghlbRealms vs Snapshot - market share
Updated 2022-08-30
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 snap_chains_users as (
select distinct from_address
from ethereum.core.fact_transactions
union all
select distinct from_address
from avalanche.core.fact_transactions
union all
select distinct from_address
from arbitrum.core.fact_transactions
union all
select distinct from_address
from gnosis.core.fact_transactions
union all
select distinct from_address
from optimism.core.fact_transactions
union all
select distinct from_address
from bsc.core.fact_transactions
union all
select distinct from_address
from polygon.core.fact_transactions
),
total_snap_chains_users as (
select count (distinct from_address) as snap_users_count from snap_chains_users
),
snap_users as (
select count (distinct voter) as Snapshot_Voters
from ethereum.core.ez_snapshot
),
solana_chain_users as (
select count (distinct signers[0]) as solana_users_count
from solana.core.fact_transactions
),
realms_users as (
select count (distinct voter) as Realms_Voters
from solana.core.fact_proposal_votes
Run a query to Download Data