adriaparcerisasterra station feather 2
Updated 2023-01-25
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
t01 as (
SELECT
distinct tx_sender as user,
min(block_timestamp) as debut
from terra.core.fact_transactions
group by 1
),
t1 as (
SELECT
trunc(debut,'day') as date,
count(distinct user) as new_users
from t01
where debut between '2023-01-07' and '2023-01-22'
group by 1
),
t02 as (
SELECT
distinct trader,
min(block_timestamp) as debut
from terra.core.ez_swaps
group by 1
),
t2 as (
select
trunc(debut,'day') as date,
count(distinct trader) as new_swappers
from t02
where debut between '2023-01-07' and '2023-01-22'
group by 1
),
t03 as (
SELECT
distinct purchaser,
min(block_timestamp) as debut
from terra.core.fact_nft_sales
Run a query to Download Data