Loading...
A mintable token allows the contract owner to create (mint) new tokens after the initial deployment, increasing the total supply. Each mint event is recorded on-chain for full transparency. Minting is restricted to the owner address, ensuring that only authorized parties can increase supply.
The mintable extension adds a `mint(address to, uint256 amount)` function to your token contract. This function is protected by the `onlyOwner` modifier, meaning only the contract owner can call it. When called, it creates new tokens and assigns them to the specified address, increasing the total supply.
function mint(address to, uint256 amount) public onlyOwner {
_mint(to, amount);
}Mint new tokens as rewards for stakers who lock their tokens in your protocol.
Distribute tokens over time rather than minting the entire supply at launch.
Reward active governance participants with newly minted tokens.
Mint tokens for new investment rounds without pre-allocating the entire supply.
Deploy a secure, verified smart contract with the Mintable feature on Ethereum in minutes. No coding required.
Create a Mintable Token