messariNEAR new addresses
Updated 2023-07-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
›
⌄
with
first_interaction as (
select
min(date(block_timestamp)) as first_date,
tx_signer as address
from
near.core.fact_transactions
group by
2
)
select
first_date as date,
count(address) as new_addresses
from
first_interaction
where
date >= current_date - interval '{{Days}} days'
group by
1
order by
1 desc
Run a query to Download Data