bachiflow vs l1 chains
Updated 2022-06-21
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 algorand as
(
select
day ,
count(DISTINCT wallet) as users
from
(
select date(block_timestamp) as day, sender as wallet from flipside_prod_db.algorand.transactions
where block_timestamp >= '2022-05-09'
)
where (select count(Sender) from flipside_prod_db.algorand.transactions where sender = wallet
) > 1
group by day
),
ethereum as (
select day,
count(DISTINCT wallet) as users
from (
select date(block_timestamp) as day, FROM_ADDRESS as wallet from flipside_prod_db.ethereum_core.fact_transactions
where block_timestamp >= '2022-05-09'
)
where (select count(from_address) from flipside_prod_db.ethereum_core.fact_transactions where from_address = wallet
) > 1
group by day
),
solana as (
select day,
count(DISTINCT wallet) as users
from (
select date(block_timestamp) as day, SIGNERS as wallet from flipside_prod_db.solana.fact_transactions
where block_timestamp >= '2022-05-09'
)
where (select count(SIGNERS) from flipside_prod_db.solana.fact_transactions where SIGNERS = wallet
) > 1
Run a query to Download Data