hessShare of Users
Updated 2022-12-19Copy Reference Fork
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
›
⌄
select 'Flow' as chain, count(DISTINCT(PROPOSER)) as total_user
from flow.core.fact_transactions
where BLOCK_TIMESTAMP::date >= '2022-01-01'
group by 1
UNION
select 'Ethereum' as chain, count(DISTINCT(FROM_ADDRESS)) as total_user
from ethereum.core.fact_transactions
where BLOCK_TIMESTAMP::date >= '2022-01-01'
group by 1
UNION
select 'Algorand' as chain, count(DISTINCT(TX_SENDER)) as total_user
from algorand.core.fact_transaction
where BLOCK_TIMESTAMP::date >= '2022-01-01'
group by 1
UNION
select 'Solana' as chain, count(DISTINCT(SIGNERS[0])) as total_user
from solana.core.fact_transactions
where BLOCK_TIMESTAMP::date >= '2022-01-01'
group by 1
UNION
select 'Near' as chain, count(DISTINCT(TX_SIGNER)) as total_user
from near.core.fact_transactions
where BLOCK_TIMESTAMP::date >= '2022-01-01'
group by 1
Run a query to Download Data