feyikemicorresponding-amaranth
    Updated 2025-04-07
    WITH Price AS (
    SELECT
    HOUR::date AS date,
    token_address,
    AVG(price) AS price_usd
    FROM ronin.price.ez_prices_hourly
    GROUP BY 1, 2
    ),

    NFT_TXNS AS (
    SELECT
    block_timestamp,
    tx_hash,
    from_address AS seller,
    to_address AS buyer,
    decoded_log:acceptedSettlePrice / 1e18 AS nft_price,
    (decoded_log:acceptedSettlePrice / 1e18) * price_usd AS nft_price_usd
    FROM ronin.nft.ez_nft_transfers tr
    JOIN ronin.core.ez_decoded_event_logs log
    USING (tx_hash, block_timestamp)
    LEFT JOIN Price p
    ON block_timestamp::date = p.date
    AND log.decoded_log:settleToken = token_address
    WHERE event_name = 'OrderMatched'
    AND decoded_log:order[0]:extraData[0][2] = token_id
    AND tx_succeeded
    ),

    All_Traders AS (
    SELECT buyer AS wallet, DATE_TRUNC('week', block_timestamp) AS trade_week FROM NFT_TXNS
    UNION
    SELECT seller AS wallet, DATE_TRUNC('week', block_timestamp) AS trade_week FROM NFT_TXNS
    ),

    First_Trade AS (
    SELECT wallet, MIN(trade_week) AS first_trade_week
    Last run: about 1 month ago
    TRADE_WEEK
    TRADER_TYPE
    TRADER_COUNT
    1
    2024-09-30 00:00:00.000New7024
    2
    2024-10-07 00:00:00.000New4749
    3
    2024-10-07 00:00:00.000Returning3029
    4
    2024-10-14 00:00:00.000New3467
    5
    2024-10-14 00:00:00.000Returning3574
    6
    2024-10-21 00:00:00.000New3750
    7
    2024-10-21 00:00:00.000Returning3771
    8
    2024-10-28 00:00:00.000New3039
    9
    2024-10-28 00:00:00.000Returning4005
    10
    2024-11-04 00:00:00.000New3020
    11
    2024-11-04 00:00:00.000Returning4477
    12
    2024-11-11 00:00:00.000New5430
    13
    2024-11-11 00:00:00.000Returning5034
    14
    2024-11-18 00:00:00.000New4588
    15
    2024-11-18 00:00:00.000Returning7714
    16
    2024-11-25 00:00:00.000New3727
    17
    2024-11-25 00:00:00.000Returning8076
    18
    2024-12-02 00:00:00.000New2692
    19
    2024-12-02 00:00:00.000Returning7618
    20
    2024-12-09 00:00:00.000New2561
    55
    2KB
    14s