datavortexdaily trades
    Updated 2025-03-26
    WITH daily_data AS (
    SELECT
    DATE_TRUNC('day', block_timestamp) AS date,
    COUNT(DISTINCT tx_hash) AS daily_tx_hashes,
    COUNT(DISTINCT decoded_log:"maker") AS daily_makers,
    COUNT(DISTINCT decoded_log:"taker") AS daily_takers,
    SUM(decoded_log:"takerAmountFilled") / 1e6 AS daily_taker_amount_filled
    FROM ronin.core.ez_decoded_event_logs
    WHERE event_name = 'OrderFilled'
    AND decoded_log:"taker" <> '0x520fe655590e6fee13656590f1be3edf31fe099c'
    AND origin_from_address = '0x8962cde7ac43de7d55e8b61c80ee8d148fc7a201'
    AND origin_to_address = '0x520fe655590e6fee13656590f1be3edf31fe099c'
    GROUP BY 1
    )

    SELECT
    date,
    daily_tx_hashes as "daily trades",
    daily_makers,
    daily_takers,
    daily_taker_amount_filled,
    SUM(daily_tx_hashes) OVER (ORDER BY date) AS "cumulative trades",
    SUM(daily_makers) OVER (ORDER BY date) AS cumulative_makers,
    SUM(daily_takers) OVER (ORDER BY date) AS cumulative_takers,
    SUM(daily_taker_amount_filled) OVER (ORDER BY date) AS cumulative_taker_amount_filled
    FROM daily_data
    ORDER BY date;

    Last run: about 2 months ago
    DATE
    daily trades
    DAILY_MAKERS
    DAILY_TAKERS
    DAILY_TAKER_AMOUNT_FILLED
    cumulative trades
    CUMULATIVE_MAKERS
    CUMULATIVE_TAKERS
    CUMULATIVE_TAKER_AMOUNT_FILLED
    1
    2025-02-13 00:00:00.0001111.51111.5
    2
    2025-02-14 00:00:00.000144448.8155550.3
    3
    2025-02-17 00:00:00.000275454.93635442109105.236354
    4
    2025-02-19 00:00:00.00029114171794.23233324261899.468354
    5
    2025-02-20 00:00:00.0001042327645.9569643747532545.425314
    6
    2025-02-21 00:00:00.00029438382284.92199973185914830.347313
    7
    2025-02-22 00:00:00.00016929281409.9230959001141196240.270408
    8
    2025-02-23 00:00:00.00013921211203.85104610391351407444.121454
    9
    2025-02-24 00:00:00.00011331381811.93419911521661789256.055653
    10
    2025-02-25 00:00:00.000262515018084.14913141421722827340.204783
    11
    2025-02-26 00:00:00.00018943426259.7246160326027033599.929383
    12
    2025-02-27 00:00:00.000491603111232.92175209432030144832.851133
    13
    2025-02-28 00:00:00.000535656014314.601018262938536159147.452151
    14
    2025-03-01 00:00:00.000546524010987.101376317543740170134.553527
    15
    2025-03-02 00:00:00.00024144329995.61633341648143380130.169857
    16
    2025-03-03 00:00:00.000232483410714.74471364852946790844.914567
    17
    2025-03-04 00:00:00.000206464613587.2021983854575513104432.116765
    18
    2025-03-05 00:00:00.000331564514559.946894185631558118992.063655
    19
    2025-03-06 00:00:00.000160413315754.4410194345672591134746.504674
    20
    2025-03-07 00:00:00.000111412317383.4619624456713614152129.966636
    39
    3KB
    8s