with monkeydao_seller as(
select
SELLER,
sum(SALES_AMOUNT) as total_volume
from solana.core.fact_nft_sales
where
marketplace='solana monkey business marketplace'
and program_ID='J7RagMKwSD5zJSbRQZU56ypHUtux8LRDkUpAPSKH4WPp'
group by 1
)
select* from monkeydao_seller order by total_volume desc limit 10