Skip to content

token:mint

Mint tokens to an account. Calls the mint(address,uint256) function commonly exposed by OpenZeppelin-based ERC20 tokens (usually role- or owner-gated).

token:mint <token> <to> <amount>
Name Type Description
token address Token address
to address Recipient
amount number Amount in token units (wei)
load token
set $token 0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdb
token:mint $token @me 100e18
  • mint(address,uint256) is not part of the ERC20 standard — it exists only where the contract exposes it (OpenZeppelin Wizard-style tokens), usually gated by MINTER_ROLE or the owner.