badboyNew Addresses on polygon
Updated 2023-02-12
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 new_poly_2020
as (
select from_address as address , min(block_timestamp)::date as min_date, '2020' as type
from flipside_prod_db.polygon.transactions
group by address
having min_date <= '2020-12-31' and min_date >= '2020-01-01'
)
, new_poly_2021
as (
select from_address as address , min(block_timestamp)::date as min_date, '2021' as type
from flipside_prod_db.polygon.transactions
group by address
having min_date <= '2023-12-31' and min_date >= '2021-01-01'
)
, new_poly_2022
as (
select from_address as address , min(block_timestamp)::date as min_date, '2023' as type
from flipside_prod_db.polygon.transactions
group by address
having min_date >= '2023-01-01'
Run a query to Download Data