Skip to content

Instantly share code, notes, and snippets.

@yorhodes
Last active September 23, 2023 20:43
Show Gist options
  • Save yorhodes/440c8f63e01d48d71415f1d233f06be5 to your computer and use it in GitHub Desktop.
Save yorhodes/440c8f63e01d48d71415f1d233f06be5 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT OR Apache-2.0
pragma solidity >=0.8.0;
import {IInterchainSecurityModule} from "@hyperlane-xyz/core/contracts/interfaces/IInterchainSecurityModule.sol";
contract NoopIsm is IInterchainSecurityModule {
uint8 public constant override moduleType = uint8(Types.NULL);
function verify(bytes calldata, bytes calldata) public pure override returns (bool) {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment