select block_timestamp::date as fecha, platform_name, platform_exchange_version, event_type, count(distinct tx_hash) as number_of_txs
from ethereum.core.ez_nft_sales
where fecha > '2021-01-01'
group by fecha, platform_name, platform_exchange_version, event_type
order by fecha desc