SalehFlow vs L1s -Number of unique wallets
Updated 2022-05-31
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
›
⌄
(select 'Flow' as "Blockchain", count(distinct PROPOSER) as "Unique Wallets"
from flow.core.fact_transactions
where BLOCK_TIMESTAMP >= '2022-05-09'
group by 1
order by 1)
union all
(select 'Ethereum' as "Blockchain", count(distinct FROM_ADDRESS) as "Unique Wallets"
from flipside_prod_db.ethereum_core.fact_transactions
where BLOCK_TIMESTAMP >= '2022-05-09'
group by 1
order by 1)
union all
(select 'Solana' as "Blockchain", count(distinct SIGNERS[0]) as "Unique Wallets"
from flipside_prod_db.solana.fact_transactions
where BLOCK_TIMESTAMP >= '2022-05-09'
group by 1
order by 1)
union all
(select 'Algorand' as "Blockchain", count(distinct SENDER) as "Unique Wallets"
from flipside_prod_db.algorand.transactions
where BLOCK_TIMESTAMP >= '2022-05-09'
group by 1
order by 1)
Run a query to Download Data