adambalaweekly fee
    Updated 2021-11-25
    SELECT
    'sushi' title
    ,date_trunc('week',block_timestamp) as date,
    sum(fee_usd) as fee_used
    from ethereum.transactions
    where block_timestamp >=getdate() - interval '48 weeks'
    group by date order by date
    Run a query to Download Data