mariyaLuna Burns
    Updated 2022-05-01
    select date_trunc('week', block_timestamp::date) as week,
    sum(token_0_amount) as luna_burns
    from terra.swaps
    where offer_currency ='LUNA'
    group by 1
    order by 1
    Run a query to Download Data