adambalaUntitled Query
Updated 2022-08-02
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with a as (
select from_address as address ,
min(block_timestamp)::date as date
from flipside_prod_db.polygon.transactions
group by address
)
select count(address) as addresss,
date,
sum(addresss) over (order by date asc rows between unbounded preceding and current row) as cumulative_address
from a group by date
Run a query to Download Data