Kruys-Collinsthoughtful-gold
    Updated 2025-04-01
    WITH runiverse_nft_transfers AS (
    SELECT
    tx_hash,
    block_timestamp,
    from_address,
    to_address,
    token_id,
    quantity,
    name AS nft_name
    FROM ronin.nft.ez_nft_transfers
    WHERE name ILIKE '%runiverse%'
    AND to_address != '0x0000000000000000000000000000000000000000' -- Exclude burns
    ),

    marketplace_transactions AS (
    SELECT
    logs.tx_hash,
    pays.from_address AS buyer,
    nfts.from_address AS seller,
    pays.amount_usd AS transaction_value,
    nfts.block_timestamp
    FROM ronin.core.fact_event_logs logs
    INNER JOIN (
    SELECT tx_hash, from_address, block_timestamp
    FROM runiverse_nft_transfers
    ) nfts ON logs.tx_hash = nfts.tx_hash
    LEFT JOIN (
    SELECT
    tx_hash,
    from_address,
    amount_usd
    FROM ronin.core.ez_token_transfers
    WHERE to_address IN (
    '0x3ef234bc2a04d86f6041e419458d9acbd077f2c1', -- Collection Offer Proxy
    '0x3b3adf1422f84254b7fbb0e7ca62bd0865133fe3', -- Market Gateway Proxy
    '0x21a0a1c081dc2f3e48dc391786f53035f85ce0bc' -- Market Gateway Multi Send Proxy
    Last run: 27 days ago
    TRADE_WEEK
    Highest Price Paid USD
    Unique Buyer Wallets
    1
    2024-09-30 00:00:00.0001620.379
    2
    2024-10-07 00:00:00.0001337.9982
    3
    2024-10-14 00:00:00.000520.25101
    4
    2024-10-21 00:00:00.000345.7662
    5
    2024-10-28 00:00:00.0002218.545
    6
    2024-11-04 00:00:00.000309.0252
    7
    2024-11-11 00:00:00.000369.541
    8
    2024-11-18 00:00:00.000309743
    9
    2024-11-25 00:00:00.0004039.238
    10
    2024-12-02 00:00:00.00033869.175
    11
    2024-12-09 00:00:00.0003195247
    12
    2024-12-16 00:00:00.000877.8105
    13
    2024-12-23 00:00:00.000343.845
    14
    2024-12-30 00:00:00.000836.2266
    15
    2025-01-06 00:00:00.000179171
    16
    2025-01-13 00:00:00.0006130.88269
    17
    2025-01-20 00:00:00.000317.5294
    18
    2025-01-27 00:00:00.0001950.4805548
    19
    2025-02-03 00:00:00.00066361
    20
    2025-02-10 00:00:00.000670.2748
    27
    1KB
    11s