Allows the minting of new tokens into the contract.
Mint tokens to the connected wallet.
var data = await contract.ERC20.Mint("{{amount}}");
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}}");