lasotezAmount of Day Trades
    Updated 2022-08-03
    select
    date (block_timestamp) as date,
    (count(distinct tx_hash) - count(distinct tokenid) ) as Day_trades
    from optimism.core.ez_nft_sales
    where platform_name = 'quixotic'
    group by 1
    Run a query to Download Data