strawbettyvolume of Luna burning
    Updated 2022-04-30
    SELECT date_trunc('week', block_timestamp) as week, SUM(TOKEN_0_AMOUNT) as luna_burnt
    FROM terra.swaps
    WHERE offer_currency = 'LUNA' and ask_currency = 'UST' and tx_status = 'SUCCEEDED'
    GROUP BY 1
    Run a query to Download Data