KaskoazulSales table time series by platform info
    Updated 2022-09-25
    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


    Run a query to Download Data