Manage Token
Owner controls
One place to mint, pause, change tax, transfer ownership, or renounce. Available actions depend on which features the contract was deployed with.
Contract
Pick the token you want to manage.
Actions
Owner-only operations available on this contract.
FAQ
Frequently asked questions
Why are some token management actions greyed out?
Because smart contracts are strictly immutable on the blockchain, your dashboard only displays the features you explicitly enabled during deployment. Furthermore, to keep your deployment gas costs as low as possible, Monlabs only injects the Ownable (admin control) code into your contract if you select advanced features like Mintable or Tax Token.If you deployed a standard, fixed-supply ERC-20 token, admin controls are not needed. Therefore, the contract is deployed without an owner by default, and management actions like Mint Token, Change Tax, Change Owner or Renounce Ownership will be disabled or hidden.
Can I mint more tokens after deployment?
If you deployed your contract with the “Mintable” feature enabled, yes. As the contract owner, you can navigate to the Mint Token tab to instantly generate additional supply. You simply paste the recipient’s Web3 wallet address and enter the exact token amount. The newly minted tokens are automatically deposited into the designated wallet in a single transaction.
Can I change my token's tax percentage or treasury wallet?
Yes. If you launched a Tax Token, you maintain full control over the fee structure via the Change Tax tab. You can easily update the tax percentage or change the “Tax Recipient” address where the collected fees are routed.
How do I transfer ownership of my token to a new wallet?
If you need to hand over control to a co-founder, a multi-sig treasury, or a community DAO, you can do so using the Change Owner tab without renouncing the contract. This executes a
transferOwnership function, moving all admin controls to the new address in one transaction.Warning: Double-check the new owner address carefully. The previous owner loses access immediately. If you send ownership to an incorrect or unreachable address, admin control over your token is permanently lost.What does it mean to "Renounce Ownership" of a smart contract?
Renouncing ownership is the ultimate way to build trust with your token’s community. By using the Renounce Ownership tab, you permanently transfer admin control to the “zero address” (0x0000...), meaning the contract effectively has no owner.This action is irreversible. Once confirmed on-chain, no one including you will ever be able to mint new supply, alter tax percentages, or change the owner again. Always ensure your tokenomics and taxes are 100% finalized before executing this function.