maybeyonasff_curators
Updated 2022-03-26
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select *,
curators-lag(curators) over (order by balance_date) as net_growth
from (
select
balance_date,
count(user_address) as curators
from ethereum.erc20_balances
where contract_address = '0x7e9d8f07a64e363e97a648904a89fb4cd5fb94cd'
and balance >= 1000
group by 1
)
-- limit 100
Run a query to Download Data