superflyUntitled Query
    Updated 2023-01-14
    with table1 as (
    select buyer_address as Buyers,
    count (distinct tx_hash) as TX_Count,
    count (distinct tokenid) as Tokens_Count,
    sum (price_usd) as USD_Value,
    sum (price) as ETH_Value
    from ethereum.core.ez_nft_sales
    where project_name = 'wall st bulls' and event_type = 'sale' and buyer_address != '0x0000000000000000000000000000000000000000'
    group by 1)
    select avg(TX_Count),
    avg (Tokens_Count),
    avg (USD_Value),
    avg (ETH_Value)
    from table1


    Run a query to Download Data