select platform_name, platform_exchange_version, event_type, count(distinct platform_address) as different_addresses, count(distinct tx_hash) as number_of_txs
from ethereum.core.ez_nft_sales
group by platform_name, platform_exchange_version, event_type
order by number_of_txs desc