* Moved ERC1820 related contracts out of drafts and into introspection. * Moved ERC777 related contracts out of drafts and into token.
10 lines
292 B
Solidity
10 lines
292 B
Solidity
pragma solidity ^0.5.0;
|
|
|
|
import "../introspection/ERC1820Implementer.sol";
|
|
|
|
contract ERC1820ImplementerMock is ERC1820Implementer {
|
|
function registerInterfaceForAddress(bytes32 interfaceHash, address account) public {
|
|
_registerInterfaceForAddress(interfaceHash, account);
|
|
}
|
|
}
|