Sandeshmarketplace share
    Updated 2023-07-24
    select block_timestamp::date as "date", platform_name, count(tx_hash) as number_of_transactions from ethereum.core.ez_nft_sales
    where "date" >= {{start_date}}
    group by "date", platform_name
    order by "date" asc