0xaimanDaily Active Address Growth, Polygon
Updated 2022-06-05
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
›
⌄
select date_trunc('week',t) as week, count(addr) as n_address
-- sum(n_address) OVER(ORDER BY date asc ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS tot_num_activ_addr
from (with txn as (select from_address
from (select from_address, count(tx_id) as nt
from polygon.transactions
where block_timestamp>='2022-02-01'
group by 1 order by 1)
where nt>1 and from_address!='0x0000000000000000000000000000000000000000'),
day as (
select block_timestamp, from_address
from polygon.transactions
-- where block_timestamp>='2022-02-01'
)
-- where nt>1 and from_address!='0x0000000000000000000000000000000000000000'
select block_timestamp as t, day.from_address as addr
from day inner join txn on day.from_address=txn.from_address
--where block_timestamp>='2022-01-01'
)
group by 1 order by 1
Run a query to Download Data