Skip to main content

ERC20 - Mint Tokens

You can utilize these features of the SDK if your contract implements the ERC20Mintable interface.

Mint Tokens

Mint tokens to a specified address.

const amount = "1.5"; // The amount of this token you want to mint
await contract.erc20.mint(toAddress, amount);

This snippet is for v3 of the SDK. Learn how to upgrade.

View in React SDK Documentation