select seller, sum (price) as total_amount
from flow.core.ez_nft_sales as a
join (select nft_collection, nft_id from flow.core.dim_allday_metadata) b on (a.nft_collection = b.nft_collection and a.nft_id = b.nft_id)
where current_date >= block_timestamp::date
group by 1
order by 2 desc
limit 10