hbd1994Buyers || Crossover between Top NFT Collections
    Updated 2022-09-08
    with degods as
    (with tab1 as (select *
    from solana.core.dim_nft_metadata
    where CONTRACT_NAME in ('DeGods'))

    select
    'DeGods' as collection,
    PURCHASER as Unique_Buyers,
    SELLER as Unique_Sellers
    from solana.core.fact_nft_sales
    inner join tab1 on tab1.mint=fact_nft_sales.mint
    where SUCCEEDED = TRUE
    ),
    smb as
    (with tab1 as (select *
    from solana.core.dim_nft_metadata
    where CONTRACT_NAME in ('Solana Monkey Business'))

    select
    'Solana Monkey Business' as collection,
    PURCHASER as Unique_Buyers,
    SELLER as Unique_Sellers
    from solana.core.fact_nft_sales
    inner join tab1 on tab1.mint=fact_nft_sales.mint
    where SUCCEEDED = TRUE),
    okay as
    (with tab1 as (select *
    from solana.core.dim_nft_metadata
    where CONTRACT_NAME in ('Okay Bears'))

    select
    'Okay Bears' as collection,
    PURCHASER as Unique_Buyers,
    SELLER as Unique_Sellers
    from solana.core.fact_nft_sales
    inner join tab1 on tab1.mint=fact_nft_sales.mint
    Run a query to Download Data