Docs

ERC20Mintable

Allows the minting of new tokens into the contract.

Mint

Mint tokens to the connected wallet.

var data = await contract.ERC20.Mint("{{amount}}");

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}}");