scottincryptoNew User Inflow Anchor
Updated 2022-10-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
select
date_trunc('day', first_transaction_stamp) as first_transaction_date,
count(sender) as new_users
from (
select
msg_value:sender::string as sender,
min(block_timestamp) as first_transaction_stamp
from terra.msgs
WHERE msg_value:contract = 'terra1sepfj7s0aeg5967uxnfk4thzlerrsktkpelm5s' --anchor
AND block_timestamp >= CURRENT_DATE - 200
group by 1
)
--where first_transaction_date > current_date - 90
where first_transaction_date > '2021-03-27'
and first_transaction_date < '2021-06-27'
group by 1
order by 1
Run a query to Download Data