infrastructure-upgrade/lib/openzeppelin-contracts/contracts/mocks/ERC1820ImplementerMock.sol
T-Hax 735546619e
init
Signed-off-by: T-Hax <>
2023-04-08 18:46:18 +00:00

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);
}
}