IERC20Mintable
The interface of a mintable ERC20 token.
This page shows the write methods within the IERC20Mintable
interface. The source code is available on GitHub.
Write Methods
mint
function mint(address account, uint256 amount) external
Creates an amount
of new tokens for the account
address.
Input Parameters:
Name | Type | Description |
---|---|---|
account | address | The address to create tokens for |
amount | uint256 | The amount of tokens to create |