ERC-20 Token Creator
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
ERC-20 Token Creator lets you deploy a standard ERC-20 token contract with just a few parameters. You provide the token name, symbol, decimals (0–18), and total supply, and the tool prepares, signs, and broadcasts a deployment transaction from your connected wallet. The entire supply is minted to your address at deployment, so you control the token immediately. It reads the current network chain ID and gas price from your wallet provider to ensure the transaction is submitted correctly.
HOW TO USE
Connect your wallet using the "Connect" button. Select the target network (Ethereum Mainnet, Sepolia, Polygon, BSC, Arbitrum, Optimism, and testnets are supported). Fill in the token parameters: name, symbol, decimals (typically 18), and initial supply in whole units. The review panel shows a preview of the deployment. Click "Deploy token" — your wallet will prompt you to confirm the transaction. Once mined, the contract address and transaction hash are displayed. You can immediately view your token on the block explorer.
TECHNICAL MECHANISM
The tool uses a precompiled, minimal ERC-20 bytecode derived from the OpenZeppelin ERC-20 implementation. This bytecode is combined with ABI-encoded constructor arguments (name, symbol, and total supply scaled by decimals) to form the complete deployment payload. The transaction is sent via the wallet's signer with a gas limit of 3,000,000, which is sufficient for ERC-20 deployment on all major EVM chains. The tool does not rely on any external API or contract factory — the entire bytecode is embedded and signed locally, so no third-party service handles your deployment data. After the transaction is sent, it waits for the receipt and extracts the contract address from the transaction receipt's `contractAddress` field. The tool does not verify the contract on block explorers; that step is left to the user.
WHAT IT CANNOT SEE
The generated contract is a basic ERC-20 only. It does not include mint, burn, blacklist, pause, or any other custom logic. The tool cannot verify the security or correctness of the deployed contract — you assume full responsibility for the contract's behavior. It cannot deploy on non-EVM chains (e.g., Solana, Bitcoin). Deployment is limited by your wallet's native token balance (to pay gas fees) and the availability of the RPC provider. The tool does not monitor the contract after deployment, nor does it provide a management interface.
PLEASE NOTE
This tool is for educational and rapid prototyping purposes. Always review the contract code and verify it on a block explorer before using it with real value. Only use on networks you trust. The tool does not persist any data; all state is lost on page reload. EVM chains only.