flipside
GROWTH MCP
IDG PLAYBOOK
JOURNEYS
INSIGHTS
About
Log in
GET STARTED
flipside
Total number of new wallets per week
mattkstew
Total number of new wallets per week
Updated 2023-01-04
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
with
tab1
as
(
select
tx_sender
,
min
(
block_timestamp
)
as
min_date
from
terra
.
core
.
fact_transactions
group
by
1
)
select
date_trunc
(
'day'
,
min_date
)
as
date1
,
tx_sender
as
value
from
tab1
where
date_trunc
(
'day'
,
min_date
)
>
current_date
-
7
Results
Run a query to Download Data