Docs
Reference
Contract documentation
common
IMintableERC20

IMintableERC20

Interface for ERC20 tokens with mint and burn functionality.

mint

function mint(address account, uint256 amount) external

Mints amount tokens and assigns them to the account address.

Parameters

NameTypeDescription
accountaddressThe account to receive the minted tokens.
amountuint256The amount of tokens to mint.

burn

function burn(address from, uint256 amount) external

Burns amount tokens from the from address.

Parameters

NameTypeDescription
fromaddressThe account from which the tokens will be burned.
amountuint256The amount of tokens to burn.