zakkisyedEth fees
    Updated 2022-07-07
    select date_trunc(day,block_timestamp) as eth_date,
    sum(tx_fee) as eth_fee
    from ethereum.core.fact_transactions
    where block_timestamp >= '2022-07-01'
    --and tx_fee is not null
    group by 1
    order by 1 asc
    Run a query to Download Data