nitsMints Art gobblers
    Updated 2022-11-30
    SELECT count(DISTINCT tx_hash) as total_mint_txs,
    count(DISTINCT nft_to_address) as total_minters,
    sum(amount_usd) as total_amount,
    sum(tx_fee)*1300 as gas_fee_paid,
    max(amount_usd) as max_mint_price_paid,
    min(amount_usd) as min_mint_price_paid,
    avg(amount_usd) as avg_mint_price_paid
    from ethereum.core.ez_nft_mints
    where nft_address = '0x60bb1e2aa1c9acafb4d34f71585d7e959f387769'
    LIMIT 100
    Run a query to Download Data