datavortexDaily Fees
    Updated 2025-03-25
    SELECT
    DATE_TRUNC('day', t.block_timestamp) AS date,
    SUM(COALESCE(t.tx_fee, 0)) AS total_fees,
    AVG(COALESCE(t.tx_fee, 0)) AS avg_fee
    FROM
    ronin.core.ez_decoded_event_logs e
    LEFT JOIN ronin.core.fact_transactions t ON e.tx_hash = t.tx_hash
    WHERE
    e.event_name = 'OrderFilled'
    AND e.decoded_log:"taker" <> '0x520fe655590e6fee13656590f1be3edf31fe099c'
    AND e.origin_from_address = '0x8962cde7ac43de7d55e8b61c80ee8d148fc7a201'
    AND e.origin_to_address = '0x520fe655590e6fee13656590f1be3edf31fe099c'
    GROUP BY
    1
    ORDER BY
    date DESC;
    Last run: 2 months ago
    DATE
    TOTAL_FEES
    AVG_FEE
    1
    2025-03-25 00:00:00.0000.01002200850.0100220085
    2
    2025-03-24 00:00:00.0000.98973588680.01030974882
    3
    2025-03-23 00:00:00.0002.9702060330.01800124868
    4
    2025-03-22 00:00:00.0002.2677786340.01585859185
    5
    2025-03-21 00:00:00.0001.1198189790.01230570307
    6
    2025-03-20 00:00:00.0001.1199571270.009911125022
    7
    2025-03-19 00:00:00.0001.9764636630.01275137847
    8
    2025-03-18 00:00:00.0001.3972897480.01074838268
    9
    2025-03-17 00:00:00.0003.3646905640.01625454379
    10
    2025-03-16 00:00:00.0001.120702350.00933918625
    11
    2025-03-15 00:00:00.0001.326714840.009087087945
    12
    2025-03-14 00:00:00.0001.554063090.0101572751
    13
    2025-03-13 00:00:00.0003.130500870.009289320089
    14
    2025-03-12 00:00:00.0001.469850030.009734106159
    15
    2025-03-11 00:00:00.0002.765433270.008949622233
    16
    2025-03-10 00:00:00.0002.041249680.009194818378
    17
    2025-03-09 00:00:00.0000.419155950.007621017273
    18
    2025-03-08 00:00:00.0004.394521440.008667695148
    19
    2025-03-07 00:00:00.0001.077026880.009127346441
    20
    2025-03-06 00:00:00.0001.490788350.008667374128
    38
    2KB
    13s