/** This is the project token. Is capped, burnable, pausable and have an access control.
function constructor(
uint256 _cap
) public
- @dev Constructor
ADMIN_ROLE, MINTER_ROLE and PAUSER_ROLE are given to deployer
Name | Type | Description |
---|---|---|
_cap |
uint256 | Sets the value of the max supply of token. This value is immutable, it can only be set once during construction.*/ |
function mint(
address account,
uint256 amount
) external
- mint $MONO token to an address
Name | Type | Description |
---|---|---|
account |
address | destination address |
amount |
uint256 | quantity of tokens to be minted*/ |
function pause(
) external
- pause token transfers, minting and burning*/
function unpause(
) external
- unpause token transfers, minting and burning*/