boomer77Untitled Query
    Updated 2022-01-20
    select date_trunc('week', block_timestamp) as dt, sum(event_amount_usd) as usd
    from terra.reward
    where block_timestamp >= '2021-01-01'
    group by 1
    order by dt desc
    Run a query to Download Data