shreyash-5873Largest Labelled LUNA Stakers
    Updated 2021-11-22
    select
    date,
    address,
    address_label,
    balance
    from terra.daily_balances
    where balance_type = 'staked'
    and currency = 'LUNA'
    and date = date('2021-11-10')
    and balance > 10000
    and address_label is not null
    order by balance desc
    limit 100;
    Run a query to Download Data