theericstoneaUST HODLers
    Updated 2022-04-08
    select
    date,
    count(distinct address) as n_hodlers
    from terra.daily_balances
    where date > current_date - 30
    and currency = 'aUST'
    and balance > 1
    group by 1
    order by 1 desc;
    Run a query to Download Data