LibERC20
Transfer
event Transfer(address from, address to, uint256 amount)
_mint
function _mint(address account, uint256 amount) internal
Mint tokens for a given account
Parameters
Name | Type | Description |
---|---|---|
account | address | Address recipient |
amount | uint256 | Amount of tokens to be minted |
_burn
function _burn(address account, uint256 amount) internal
Burn tokens held by given account
Parameters
Name | Type | Description |
---|---|---|
account | address | Address of burned tokens |
amount | uint256 | Amount of tokens to be burnt |