Updated 2022-08-28
    with buyers as ( select count(tx_hash) as Buys, buyer_address as Wallets, sum(price_usd) as buy_usd

    from ethereum.core.ez_nft_sales where tx_hash not in ('0x92488a00dfa0746c300c66a716e6cc11ba9c0f9d40d8c58e792cc7fcebf432d0') and price > 0 and price_usd > 0
    and nft_address = '0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb' group by Wallets),
    sellers as ( select count(tx_hash) as Sells, seller_address as Wallets, sum(price_usd) as sale_usd

    from ethereum.core.ez_nft_sales where tx_hash not in ('0x92488a00dfa0746c300c66a716e6cc11ba9c0f9d40d8c58e792cc7fcebf432d0') and price > 0 and price_usd > 0
    and nft_address = '0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb' group by Wallets
    Run a query to Download Data