/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { SignatureValidator, SignatureValidatorInterface, } from "../SignatureValidator"; const _abi = [ { inputs: [], name: "chainId", outputs: [ { internalType: "uint256", name: "", type: "uint256", }, ], stateMutability: "view", type: "function", }, ]; export class SignatureValidator__factory { static readonly abi = _abi; static createInterface(): SignatureValidatorInterface { return new utils.Interface(_abi) as SignatureValidatorInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): SignatureValidator { return new Contract(address, _abi, signerOrProvider) as SignatureValidator; } }