nitsAverage FEE
    Updated 2022-06-29
    SELECT avg(tx_fee) as avg_fee from
    (SELECT * from ethereum.core.fact_transactions
    where block_timestamp >= CURRENT_DATE - 1 and tx_fee is not NULL and tx_fee> 0)
    Run a query to Download Data