yasmin-n-d-r-hPRICE AVAX copy copy copy
Updated 2025-01-09
999
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
avalanche_new as (
select min(block_timestamp::date) as date, from_address
from avalanche.core.fact_transactions
group by from_address
),
base_new as (
select min(block_timestamp::date) as date, from_address
from base.core.fact_transactions
group by from_address
),
polygon_new as (
select min(block_timestamp::date) as date, from_address
from polygon.core.fact_transactions
group by from_address
),
optimism_new as (
select min(block_timestamp::date) as date, from_address
from optimism.core.fact_transactions
group by from_address
),
arbitrum_new as (
select min(block_timestamp::date) as date, from_address
from arbitrum.core.fact_transactions
group by from_address
),
ethereum_new as (
select min(block_timestamp::date) as date, from_address
from ethereum.core.fact_transactions
group by from_address
)
select
'Avalanche' as blockchain,
trunc(date, 'day') as weekly,
count(distinct from_address) as "New Users",
QueryRunArchived: QueryRun has been archived