You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
689 B
26 lines
689 B
pragma solidity ^0.6.0;
|
|
|
|
import "../GSN/Context.sol";
|
|
import "../token/ERC777/ERC777.sol";
|
|
|
|
contract ERC777Mock is Context, ERC777 {
|
|
constructor(
|
|
address initialHolder,
|
|
uint256 initialBalance,
|
|
string memory name,
|
|
string memory symbol,
|
|
address[] memory defaultOperators
|
|
) public ERC777(name, symbol, defaultOperators) {
|
|
_mint(_msgSender(), initialHolder, initialBalance, "", "");
|
|
}
|
|
|
|
function mintInternal (
|
|
address operator,
|
|
address to,
|
|
uint256 amount,
|
|
bytes memory userData,
|
|
bytes memory operatorData
|
|
) public {
|
|
_mint(operator, to, amount, userData, operatorData);
|
|
}
|
|
}
|
|
|