/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IERC1271 } from "./IERC1271"; export class IERC1271Factory { static connect( address: string, signerOrProvider: Signer | Provider ): IERC1271 { return new Contract(address, _abi, signerOrProvider) as IERC1271; } } const _abi = [ { inputs: [ { internalType: "bytes32", name: "hash", type: "bytes32", }, { internalType: "bytes", name: "signature", type: "bytes", }, ], name: "isValidSignature", outputs: [ { internalType: "bytes4", name: "magicValue", type: "bytes4", }, ], stateMutability: "view", type: "function", }, ];