12 lines
325 B
Solidity
12 lines
325 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.6.0;
|
||
|
|
||
|
import "../introspection/ERC1820Implementer.sol";
|
||
|
|
||
|
contract ERC1820ImplementerMock is ERC1820Implementer {
|
||
|
function registerInterfaceForAddress(bytes32 interfaceHash, address account) public {
|
||
|
_registerInterfaceForAddress(interfaceHash, account);
|
||
|
}
|
||
|
}
|