amirkhannoriiCalculating Burned LUNA
    Updated 2022-07-07
    select sum(token_0_amount) luna,
    date_trunc('week',block_timestamp) week
    from terra.swaps
    where offer_currency = 'LUNA'
    and block_timestamp::date >= '2021-01-01'
    AND ask_currency = 'UST'
    group by 2
    Run a query to Download Data