select date_trunc(week,block_timestamp) as date, count(distinct from_address), burn_asset, sum(rune_amount) as rune_amount, sum(rune_amount_usd) as rune_amount_usd
from flipside_prod_db.thorchain.upgrades
where block_timestamp >= current_date -120
group by 1,3
order by 1 desc