Allows the minting of new tokens into the contract.
Mint tokens to the connected wallet.
var data = await contract.ERC20.Mint("{{amount}}");
The amount of tokens to mint.
Must be a string.
string
The same as mint, but allows you to specify the address to mint the tokens to.
mint
var data = await contract.ERC20.MintTo("{{wallet_address}}", "{{amount}}");
The wallet address to mint the tokens to.
The number of tokens to mint.