SELECT
COUNT(DISTINCT nft_to_address) as number_of_unique_wallets,
SUM(mint_price_eth) as total_mint_price_eth,
SUM(mint_price_usd) as total_mint_price_usd,
MAX(mint_price_eth) as maximum_eth_spent
FROM
ethereum.core.ez_nft_mints
WHERE
nft_address = lower('0x23581767a106ae21c074b2276D25e5C3e136a68b')