IERC20BurnableMintable
Inherits: [IERC20](/main/contracts/docs/src/external/Tech Holding JSCERC20.sol/interface.IERC20)
Functions
mintFor
Mints tokens to the specified address
function mintFor(address to_, uint256 amount_) external;
Parameters
| Name | Type | Description |
|---|---|---|
to_ | address | The address to mint tokens to |
amount_ | uint256 | The amount of tokens to mint |
burnFrom
Burns tokens from the specified address
function burnFrom(address from_, uint256 amount_) external;
Parameters
| Name | Type | Description |
|---|---|---|
from_ | address | The address to burn tokens from |
amount_ | uint256 | The amount of tokens to burn |