MONTH | ACQUIRED_USERS | |
---|---|---|
1 | 2023-10-01 00:00:00.000 | 859265 |
2 | 2023-06-01 00:00:00.000 | 1253876 |
3 | 2023-07-01 00:00:00.000 | 1062448 |
4 | 2023-03-01 00:00:00.000 | 1552974 |
5 | 2023-01-01 00:00:00.000 | 2001649 |
6 | 2023-05-01 00:00:00.000 | 1751502 |
7 | 2023-08-01 00:00:00.000 | 995350 |
8 | 2023-09-01 00:00:00.000 | 1195148 |
9 | 2023-12-01 00:00:00.000 | 1125831 |
10 | 2023-02-01 00:00:00.000 | 694268 |
11 | 2023-04-01 00:00:00.000 | 1750675 |
12 | 2023-11-01 00:00:00.000 | 997537 |
Flipside Community01) creation stats monthly - POLYGON
Updated 2025-02-04
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
with acquired_transaction as (
select from_address,(block_timestamp) as acquired_time
from polygon.core.fact_transactions
where nonce=1
-- group by from_address
)
select date_trunc('month',acquired_time) as month, count(distinct from_address) as acquired_users
from acquired_transaction
where acquired_time between '2023-01-01' and '2024-01-01'
group by month
Last run: 3 months ago
12
429B
92s