deploy_token
Deploy a new ERC-20 token on Base mainnet via the SimpleTokenFactory. Set name, symbol, total supply, decimals, and recipient address.
Instructions
Deploy a new ERC-20 token via the SimpleTokenFactory on Base mainnet. Requires DEPLOYER_PRIVATE_KEY env var. Costs 0.0005 ETH deploy fee.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Token name (e.g. 'My Token') | |
| symbol | Yes | Token symbol/ticker (e.g. 'MTK') | |
| total_supply | No | Total supply in human-readable units (e.g. '1000000' for 1M tokens) | 1000000 |
| decimals | No | Token decimals (default 18) | |
| recipient | Yes | Address that receives all minted tokens |