rezarwz# of Traders
    Updated 10 days ago
    with all_Traders as (
    SELECT
    tx_hash,
    block_timestamp,
    decoded_log:maker as trader_ad,
    case
    when (decoded_log:maker, block_timestamp) in (
    SELECT
    decoded_log:maker,
    min(block_timestamp)
    FROM
    blast.core.ez_decoded_event_logs
    where
    contract_address = '0xb1a49c54192ea59b233200ea38ab56650dfb448c'
    and event_name = 'OfferWrite'
    group by
    1
    ) then 'New User'
    else 'Returning User'
    end as user_type
    from
    blast.core.ez_decoded_event_logs
    where
    contract_address = '0xb1a49c54192ea59b233200ea38ab56650dfb448c'
    and event_name = 'OfferWrite'
    UNION
    all
    SELECT
    tx_hash,
    block_timestamp,
    decoded_log:taker as trader_ad,
    case
    when (decoded_log:taker, block_timestamp) in (
    SELECT
    decoded_log:taker,
    min(block_timestamp)
    Last run: 10 days agoAuto-refreshes every 24 hours
    DATE
    # of New Trades
    # of total Traders
    1
    2024-04-18 00:00:00.000934678
    2
    2024-04-05 00:00:00.0001753422
    3
    2024-03-21 00:00:00.0001581198
    4
    2024-05-02 00:00:00.0001605595
    5
    2024-03-20 00:00:00.000751040
    6
    2024-04-26 00:00:00.000335156
    7
    2024-07-17 00:00:00.000148132
    8
    2024-07-27 00:00:00.00018160
    9
    2024-04-02 00:00:00.0003712918
    10
    2024-05-03 00:00:00.0001765771
    11
    2024-05-08 00:00:00.000806325
    12
    2024-05-19 00:00:00.000167055
    13
    2024-03-24 00:00:00.0001411549
    14
    2024-04-04 00:00:00.0001543247
    15
    2024-03-23 00:00:00.0001061408
    16
    2024-05-06 00:00:00.0001406166
    17
    2024-07-25 00:00:00.00058154
    18
    2024-05-28 00:00:00.000377256
    19
    2024-12-07 00:00:00.00018181
    20
    2024-08-10 00:00:00.00028166
    ...
    156
    5KB
    1s