ArioCirculating Supply of LUNA 'liquid'
    Updated 2022-02-23
    select
    DATE,
    sum(balance)
    from terra.daily_balances
    where date(date) >= current_date() - 90
    and currency = 'LUNA'
    and balance > 0
    and address_label is null
    and address_label_type IS NULL
    and balance_type='liquid'
    GROUP by date
    Run a query to Download Data