mooolmUntitled Query
    Updated 2022-12-03
    select count sum (mint_price_usd) as total_volume,
    min (mint_price_usd) as min_vol,
    avg (mint_price_usd) as avg_vol,
    max (mint_price_usd) as max_vol,
    count (distinct tx_hash) as total_transaction,
    count (distinct nft_to_address) as total_minter
    from ethereum.core.ez_nft_sales
    where nft_address = '0x231d3559aa848Bf10366fB9868590F01d34bF240'

    Run a query to Download Data