messariaptos new addresses
Updated 2023-12-22
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
first_interaction as (
select
min(date(block_timestamp)) as first_date,
sender as address
from
aptos.core.fact_transactions
where tx_type = 'user_transaction'
group by
2
)
select
first_date as date,
count(address) as new_addresses
from
first_interaction
group by
1
with
first_interaction as (
select
min(date(block_timestamp)) as date,
split(payload_function, '::')[0] as contract
from
aptos.core.fact_transactions
where tx_type = 'user_transaction'
group by
2
)
select
date,
count(distinct contract) as new_contracts
from
first_interaction
QueryRunArchived: QueryRun has been archived