shreexCoral By Sale Numbers
Updated 2022-10-31
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
with lists as (
select distinct mint as col,contract_name as collection_name from solana.core.dim_nft_metadata
)
select
'Coral Cube' as marketplace,
collection_name,
sum(sales_amount) as sales_volume,
count(distinct mint) as unique_nfts,
count(distinct tx_id) as number_of_sales,
count(distinct purchaser) as buyers,
count(distinct seller) as sellers
from solana.core.fact_nft_sales,lists
where marketplace = 'coral cube'
AND succeeded = 'TRUE' and col = mint
group by collection_name
order by number_of_sales DESC
LIMIT 10
Run a query to Download Data