Afonso_DiazUntitled Query
Updated 2023-01-22
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 arbitrum as (
select
date_trunc('week', min_date)::date as day,
count(distinct sender) as arbitrum_new_wallets_count
from (
select min(block_timestamp)::date as min_date,
from_address as sender
from arbitrum.core.fact_transactions
group by 2
)
group by day
),
ethereum as (
select
date_trunc('week', min_date)::date as day,
count(distinct sender) as ethereum_new_wallets_count
from (
select min(block_timestamp)::date as min_date,
from_address as sender
from ethereum.core.fact_transactions
group by 2
)
group by day
),
optimism as (
select
date_trunc('week', min_date)::date as day,
count(distinct sender) as optimism_new_wallets_count
from (
select min(block_timestamp)::date as min_date,
from_address as sender
from optimism.core.fact_transactions
group by 2
)
Run a query to Download Data