0xaimanUser Growth 1 new user
    Updated 2022-05-09

    select fd as date, count(address) as n_new_address
    from (select address, min(date) as fd
    from (select date, address, balance
    from terra.daily_balances
    where currency='LUNA' and balance_type='liquid')

    where balance>=0.1

    group by 1)

    group by 1


    Run a query to Download Data