KaskoazulList of liquid addresses on given date
    Updated 2022-01-27
    SELECT
    address,
    balance_usd,
    balance
    FROM
    terra.daily_balances
    WHERE
    currency = 'LUNA'
    AND balance_type = 'liquid'
    AND balance > 0
    AND to_date(date) = '2022-01-27'

    ORDER by 2 desc
    LIMIT 100
    Run a query to Download Data