mucryptoEthereum, average transaction fee
    Updated 2023-04-05
    select
    date_trunc('month', block_timestamp) as month,
    avg(tx_fee)
    from ethereum.core.fact_transactions
    where block_timestamp::date > '2015-08-07'
    group by 1
    order by month desc
    Run a query to Download Data