ISystemCoin
Inherits: IERC20Metadata, IAuthorizable
Functions
mint
Mint an amount of tokens to an account
Only authorized addresses can mint tokens
function mint(address _account, uint256 _amount) external;
Parameters
Name | Type | Description |
---|---|---|
_account | address | Address of the account to mint tokens to |
_amount | uint256 | Amount of tokens to mint [wad] |
burn
Burn an amount of tokens from the sender
function burn(uint256 _amount) external;
Parameters
Name | Type | Description |
---|---|---|
_amount | uint256 | Amount of tokens to burn [wad] |