Sbhn_NPadidas total stats
    Updated 2023-02-02
    select
    count (distinct tx_hash) as Sales_Count,
    count (distinct tokenid) as Tokens_Count,
    count (distinct buyer_address) as Buyers_Count,
    count (distinct seller_address) as Sellers_Count,
    count (distinct platform_name) as Markets_Count,
    sum (price_usd) as Total_Sale_Volume,
    avg (price_usd) as Average_Sale_Volume,
    min (price_usd) as Min_Sale_Volume,
    max (price_usd) as Maximum_Sale_Volume
    from ethereum.core.ez_nft_sales
    where project_name = 'adidas'
    Run a query to Download Data