MLDZMNbag12
Updated 2022-10-30
9
1
2
3
4
5
6
7
8
9
›
⌄
select
Purchaser,
count(TX_ID) as sale_no,
sum(SALES_AMOUNT) as volume
from solana.core.fact_nft_sales s left outer join solana.core.dim_nft_metadata b on s.mint=b.mint
where SUCCEEDED='TRUE'
and marketplace in ('coral cube')
group by 1
order by 3 desc limit 10
Run a query to Download Data