adriaparcerisasbeezie sales 2: new buyers
    Updated 2025-03-24
    with news as (
    select distinct topics[2] as buyer, min(trunc(block_timestamp,'day')) as debut
    from flow.core_evm.fact_event_logs
    where origin_function_signature in ('0x052eb226','0x09c56431') and contract_address='0xd112634f06902a977db1d596c77715d72f8da8a9' and tx_succeeded='TRUE'
    and data='0x' and event_index=12
    group by 1
    )

    select debut as date,
    count(distinct buyer) as new_nft_traders,
    sum(new_nft_traders) over (order by date) as total_nft_traders
    from news
    group by 1 order by 1 desc




    Last run: 11 days ago
    DATE
    NEW_NFT_TRADERS
    TOTAL_NFT_TRADERS
    1
    2025-03-23 00:00:00.000190
    2
    2025-03-13 00:00:00.000289
    3
    2025-03-12 00:00:00.000487
    4
    2025-03-11 00:00:00.000283
    5
    2025-03-10 00:00:00.000181
    6
    2025-03-09 00:00:00.000180
    7
    2025-03-08 00:00:00.000179
    8
    2025-03-05 00:00:00.000178
    9
    2025-03-04 00:00:00.000177
    10
    2025-03-03 00:00:00.000276
    11
    2025-03-01 00:00:00.000274
    12
    2025-02-28 00:00:00.000172
    13
    2025-02-26 00:00:00.000371
    14
    2025-02-25 00:00:00.000168
    15
    2025-02-21 00:00:00.000167
    16
    2025-02-20 00:00:00.000166
    17
    2025-02-14 00:00:00.000165
    18
    2025-02-13 00:00:00.000164
    19
    2025-02-12 00:00:00.000263
    20
    2025-02-11 00:00:00.000161
    52
    2KB
    1s