hbd1994Buyers || Crossover between Top NFT Collections
Updated 2022-09-08
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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