sinahosseinzadehUntitled Query
    Updated 2022-08-07
    select date(block_timestamp)block_date,platform_name,currency_symbol,currency_address,count(distinct tx_hash)total_transaction,
    count(distinct seller_address)total_seller_address,count(distinct buyer_address)total_buyer_address,sum(price)total_price
    from optimism.core.ez_nft_sales
    group by date(block_timestamp),platform_name,currency_symbol,currency_address
    Run a query to Download Data