zakkisyedsushiswap: avg gas and total gas fee
    Updated 2022-01-31
    select avg(fee_usd), sum(fee_usd)
    from ethereum.transactions
    where
    block_timestamp >= '2021-12-01'
    and
    to_label ='sushiswap'
    -- OR to_label='uniswap'
    and fee_usd >0

    --group by 1,2
    --order by 1 desc
    Run a query to Download Data