0-MIDfee per transaction in polygon network from the beginning of July
    Updated 2023-04-13
    select date_trunc('day',BLOCK_TIMESTAMP)as day,(sum(TX_FEE)/count(TX_HASH))as fee_per_tx
    from polygon.core.fact_transactions
    where day>='2022-07-01'
    group by 1
    order by day
    Run a query to Download Data