Whitelisted Mint Executor
Free to download on every platform. Comes pre-installed on BotFone, BotPad and BotFlip — with extra free apps included.
About this app
WHAT IT DOES
Whitelisted Mint Executor lets you mint NFTs using your whitelist allocation in a single, streamlined transaction. Instead of manually checking your whitelist status, verifying mint parameters, and submitting separate transactions, you check your eligibility—whether you are whitelisted, how many you can mint, and the mint price—then execute the mint in one go. The tool reads your whitelist status, your remaining allocation, the current supply, and the mint price from the contract. It then submits the mint transaction with the correct payment. This is essential for NFT collectors who are whitelisted for a mint and want to avoid missing out due to gas or timing issues.
HOW TO USE
Connect your EVM wallet and select the network. Enter the mint contract address that manages whitelist minting. Set the quantity of NFTs you want to mint. Click "Check whitelist status" to verify your eligibility—the tool displays whether you are whitelisted, your minted count, remaining allocation, mint price, and current supply. Review the status, then click "Mint" to execute the transaction. The tool calculates the total cost (price × quantity), verifies your native balance, and submits the mint transaction with the correct payment.
TECHNICAL MECHANISM
The tool first queries the mint contract for the connected wallet's whitelist status using isWhitelisted(address). It reads mint parameters including mintPrice(), maxSupply(), totalSupply(), maxPerWallet(), and mintedCount(address) to determine eligibility and remaining allocation. It calculates the total cost as mintPrice × quantity and verifies that the wallet has sufficient native balance. It then calls the whitelistMint(uint256 quantity) function with the correct payment as value, which checks the whitelist status on-chain, enforces allocation limits, and mints the specified number of NFTs to the caller's wallet. The tool uses receipt.effectiveGasPrice for accurate gas reporting and provides progress feedback during the minting process.
WHAT IT CANNOT SEE
This tool cannot mint if the wallet is not whitelisted or has exceeded its allocation—eligibility is verified before proceeding. It relies on the whitelist contract supporting the specific mint logic and function signatures. Whitelist contracts with non-standard mint mechanics—such as requiring signatures, proofs, or off-chain verification—are not supported. The tool cannot guarantee that the mint will be successful if the supply is exhausted between the check and the mint transaction. It also does not handle gas estimation or priority fees beyond what the wallet provides.
PLEASE NOTE
Minting requires paying the mint price in native currency (ETH, BNB, etc.). Ensure you have sufficient native balance to cover both the mint cost and gas fees. The mint contract must be trusted; verify its security and audit status before use. This tool is for EVM chains only and does not support non-EVM networks.