Ali3NPercentage of All Solana Ethereum Users to Realms Snapshot Users
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 Ethereum 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),
ethereum2 as (
select count (distinct from_address) as ethereumusers from ethereum),
snapshot as (
select count (distinct voter) as Snapshot_Voters
from ethereum.core.ez_snapshot),
Solana as (
select count (distinct signers[0]) as Solana_Users
from solana.core.fact_transactions),
realms as (
select count (distinct voter) as Realms_Voters
from solana.core.fact_proposal_votes
Run a query to Download Data