dariustay_0512LUNA circulating supply
    Updated 2022-01-25
    SELECT
    address AS "Address",
    currency AS "Currency",
    SUM(CASE WHEN balance_usd IS NULL THEN 0 ELSE balance_usd END) AS "Token supply (US$)"
    FROM terra.daily_balances
    WHERE currency = 'LUNA'
    GROUP BY 1, 2
    ORDER BY 3 DESC;
    Run a query to Download Data