MintableERC20
MintableERC20
Exposes the mint function of ERC20 for tests
mint
function mint(uint256 _value) public virtual
Function to mint tokens
Parameters
Name | Type | Description |
---|---|---|
_value | uint256 | The amount of tokens to mint. |
mintTo
function mintTo(address _to, uint256 _value) public virtual
Function to mint tokens
Parameters
Name | Type | Description |
---|---|---|
_to | address | Address to mint to. |
_value | uint256 | The amount of tokens to mint. |