cypher Top 10 UST holders - labeled
    Updated 2022-03-30
    select
    date,
    address_label,
    address_name,
    balance
    from terra.daily_balances
    where date = current_date()
    and currency = 'UST'
    and address_label is not null
    order by balance desc
    limit 10
    Run a query to Download Data