cypher Top 10 UST holders - unlabeled
    Updated 2022-03-30
    select
    date,
    address,
    balance
    from terra.daily_balances
    where date = current_date()
    and currency = 'UST'
    and address_label is null
    order by balance desc
    limit 10



    Run a query to Download Data