Updated 2023-11-28


    WITH
    nba_buyers as (
    select
    distinct buyer
    from flow.nft.ez_nft_sales
    where nft_collection ='A.34f2bf4a80bb0f69.GooberXContract'
    --where block_timestamp>='2022-05-09'
    ),
    nba_sellers as (
    select
    distinct seller
    from flow.nft.ez_nft_sales
    where nft_collection ='A.34f2bf4a80bb0f69.GooberXContract'
    --where block_timestamp>='2022-05-09'
    ),
    buyers_crossovers as (
    SELECT
    distinct buyer as users
    from flow.nft.ez_nft_sales
    where buyer in (select * from nba_buyers)
    group by 1
    ),
    buyers_crossovers_2 as (
    SELECT
    distinct buyer as users
    from flow.nft.ez_nft_sales
    where buyer in (select * from nba_sellers)
    group by 1
    ),
    sellers_crossovers as (
    SELECT
    distinct seller as users
    from flow.nft.ez_nft_sales
    where seller in (select * from nba_sellers)
    Run a query to Download Data