Sbhn_NPethereum data
    Updated 2022-09-17
    --credit : naranjaninja
    select count(distinct buyer_address) as total_unique_buyers,
    count(distinct tx_hash) as total_sales,
    sum(price_usd) as total_volume_in_usd,
    sum(price) total_volume
    from ethereum.core.ez_nft_sales
    where block_timestamp >= '2022-01-01'
    and tx_hash != '0xc5531fa64ce1e5c609489e734325835471215ad5f8e0972c94b64d12242d97e4' --wrong data tx with over 100B USD Volume
    and price_usd != 0
    Run a query to Download Data