Updated 2022-11-22

    select
    count (distinct tx_hash) as Sales_Count,
    count (distinct buyer_address) as Buyers_Count,
    count (distinct seller_address) as Sellers_Count,
    count (distinct tokenid) as NFTS_Count,
    count (distinct platform_name) as Marketplaces_Count,
    sum (price_usd) as Total_Sale_Volume,
    avg (price_usd) as avg_Sale_Volume,
    min (price_usd) as min_Sale_Volume,
    max (price_usd) as max_Sale_Volume
    from ethereum.core.ez_nft_sales
    where price_usd > 0
    Run a query to Download Data