Creator Coin Mint Tool
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
The Creator Coin Mint Tool lets you deploy a fully functional ERC-20 token contract in a single transaction. You specify the token name, symbol, decimals, and the total supply (in wei). The tool then deploys a standard ERC-20 contract that mints the entire supply to your connected wallet at construction. There are no minting functions, no admin keys, and no upgradeability — the supply is fixed forever. This makes it ideal for creator coins, community tokens, or any project that needs a simple, immutable token.
HOW TO USE
Connect your EVM wallet and select the target network (Ethereum, Goerli, Sepolia, Optimism, Arbitrum, Polygon, or Base). Enter the token name, symbol, and decimals (typically 18). Provide the total supply in wei — for example, 1000000000000000000 for 1 token with 18 decimals. Click "Preview & review" to see a summary of your configuration. If everything looks correct, click "Deploy token" and confirm the transaction in your wallet. The token contract is deployed and the full supply is minted to your address. You can then transfer tokens, add liquidity, or use them as you wish.
ONE TECHNICAL SECTION — THE REAL MECHANISM
The tool deploys a minimal ERC-20 implementation that follows the standard interface (balanceOf, transfer, approve, transferFrom, allowance). The constructor takes four parameters: name, symbol, decimals, and initial supply. It mints the entire supply to the deployer's address using the internal _mint function, which updates the totalSupply and the recipient's balance. The contract does not include any minting or burning functions beyond the constructor, so the total supply is permanently fixed at deployment. There is no owner role, no pause functionality, and no upgradeability — the token is entirely immutable after deployment. This guarantees that no one, not even the deployer, can inflate the supply or alter the contract's behavior.
WHAT IT CANNOT SEE
The tool cannot verify off-chain value, ensure liquidity provision, or guarantee that anyone will trade the token. It does not check if the token name or symbol is already in use, nor does it prevent malicious actors from deploying identical tokens. It cannot protect against front-running or sandwich attacks on decentralized exchanges. It does not audit the token for vulnerabilities beyond standard ERC-20 compliance. The tool also cannot recover tokens sent to the wrong address or reverse a deployment.
PLEASE NOTE
This tool is EVM-only and supports Ethereum, Goerli, Sepolia, Optimism, Arbitrum, Polygon, and Base. It does not support Solana, Tron, Starknet, SUI, TON, Aptos, Bitcoin, Cosmos, or XRP. Always double-check the supply in wei — a common mistake is entering 1000 instead of 1000 * 10^18, which results in a microscopic supply. The token is immutable after deployment, so verify all parameters before signing the transaction. The tool is provided free and as-is; users assume full responsibility for the token's legality and use.