bachiflow vs other chains
Updated 2022-07-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
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
WITH ethereum
AS (SELECT day,
Count(DISTINCT wallet) AS users,
'Ethereum' as Chain
FROM (SELECT Date(block_timestamp) AS day,
from_address AS wallet
FROM flipside_prod_db.ethereum_core.fact_transactions
where block_timestamp >= '2022-01-01'
)
WHERE (SELECT Count(from_address)
FROM flipside_prod_db.ethereum_core.fact_transactions
WHERE from_address = wallet and block_timestamp >= '2022-01-01') > 1
GROUP BY day),
solana
AS (SELECT day,
Count(DISTINCT wallet) AS users,
'Solana' as Chain
FROM (SELECT Date(block_timestamp) AS day,
signers AS wallet
FROM flipside_prod_db.solana.fact_transactions
where block_timestamp >= '2022-01-01'
)
WHERE (SELECT Count(signers)
FROM flipside_prod_db.solana.fact_transactions
WHERE signers = wallet and block_timestamp >= '2022-01-01') > 1
GROUP BY day),
flow
AS (SELECT day,
Count(DISTINCT wallet) AS users,
'Flow' as Chain
FROM (SELECT Date(block_timestamp) AS day,
payer AS wallet
FROM flow.core.fact_transactions
where block_timestamp >= '2022-01-01'
Run a query to Download Data