rajsNFT Wallets Crossover
    Updated 2022-06-15
    with topshot_wallets as
    (
    SELECT
    distinct buyer as topshot_wallets
    from flow.core.fact_nft_sales
    where block_timestamp >= '2022-05-09'
    and nft_collection = 'A.0b2a3299cc857e29.TopShot'

    union

    SELECT
    distinct seller as topshot_wallets
    from flow.core.fact_nft_sales
    where block_timestamp >= '2022-05-09'
    and nft_collection = 'A.0b2a3299cc857e29.TopShot'
    )
    ,

    allday_wallets AS
    (
    SELECT
    distinct buyer as allday_wallets
    from flow.core.fact_nft_sales
    where block_timestamp >= '2022-05-09'
    and nft_collection = 'A.e4cf4bdc1751c65d.AllDay'

    union

    SELECT
    distinct seller as allday_wallets
    from flow.core.fact_nft_sales
    where block_timestamp >= '2022-05-09'
    and nft_collection = 'A.e4cf4bdc1751c65d.AllDay'
    )
    ,

    Run a query to Download Data