tvemulapAzuki Minters
    Updated 2023-04-17
    select
    nft_to_address,
    sum(mint_price_eth),
    avg(mint_price_eth),
    avg(mint_price_usd),
    count(nft_count),
    sum(tx_fee),
    avg(tx_fee)
    from ethereum.core.ez_nft_mints
    where nft_count > 0
    and nft_address = lower('0xED5AF388653567Af2F388E6224dC7C4b3241C544')
    and mint_price_eth > 0
    GROUP BY nft_to_address
    ORDER BY count(nft_count) DESC

    Run a query to Download Data