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).
Syntax
Section titled “Syntax”token:mint <token> <to> <amount>Arguments
Section titled “Arguments”| Name | Type | Description |
|---|---|---|
token |
address |
Token address |
to |
address |
Recipient |
amount |
number |
Amount in token units (wei) |
Examples
Section titled “Examples”load token
set $token 0x9C58BAcC331c9aa871AFD802DB6379a98e80CEdbtoken:mint $token @me 100e18mint(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.
See Also
Section titled “See Also”- access-control:grant — grant MINTER_ROLE first
- token:burn