maybeyonasff_curators
    Updated 2022-03-26
    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