/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IERC1271Upgradeable, IERC1271UpgradeableInterface, } from "../IERC1271Upgradeable"; 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", }, ]; export class IERC1271Upgradeable__factory { static readonly abi = _abi; static createInterface(): IERC1271UpgradeableInterface { return new utils.Interface(_abi) as IERC1271UpgradeableInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): IERC1271Upgradeable { return new Contract(address, _abi, signerOrProvider) as IERC1271Upgradeable; } }