select
b.ADDRESS_NAME,
count(distinct TX_HASH) as "Number of Transactions"
from
optimism.core.ez_nft_sales a join optimism.core.dim_labels b on a.NFT_ADDRESS=b.ADDRESS
where
PLATFORM_NAME='quixotic'
group by
b.ADDRESS_NAME
order by
"Number of Transactions" desc