ERC20Mintable
Functionality available for contracts that implement the
IERC20
and
IMintableERC20
interfaces.
Allows the minting of new tokens into the contract.
Mint
Mint tokens to the connected wallet.
var data = await contract.ERC20.Mint("{{amount}}");
Configuration
MintTo
The same as mint
, but allows you to specify the address to mint the tokens to.
var data = await contract.ERC20.MintTo("{{wallet_address}}", "{{amount}}");