elsina✅ fees section: Daily Average of Transaction Fees ($MATIC)
    Updated 2022-07-31
    select
    block_timestamp::date as "Day",
    avg(tx_fee) as "Fees"
    from polygon.core.fact_transactions
    where date < current_date
    group by 1
    Run a query to Download Data