KaskoazulState of the Art - Supply
    Updated 2022-03-06
    SELECT
    date as fecha,
    sum(balance) as LUNA_SUPPLY,
    sum(balance_usd) as LUNA_SUPPLY_USD,
    balance_type
    FROM
    terra.daily_balances
    WHERE
    currency = 'LUNA'
    AND balance > 0
    GROUP BY 1, 4
    ORDER BY 1

    Run a query to Download Data