/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener, } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod, } from "../../../common"; export interface IVerifierInterface extends Interface { getFunction(nameOrSignature: "verifyProof"): FunctionFragment; encodeFunctionData( functionFragment: "verifyProof", values: [BytesLike, BigNumberish[]] ): string; decodeFunctionResult( functionFragment: "verifyProof", data: BytesLike ): Result; } export interface IVerifier extends BaseContract { connect(runner?: ContractRunner | null): IVerifier; waitForDeployment(): Promise; interface: IVerifierInterface; queryFilter( event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>>; queryFilter( filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>>; on( event: TCEvent, listener: TypedListener ): Promise; on( filter: TypedDeferredTopicFilter, listener: TypedListener ): Promise; once( event: TCEvent, listener: TypedListener ): Promise; once( filter: TypedDeferredTopicFilter, listener: TypedListener ): Promise; listeners( event: TCEvent ): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners( event?: TCEvent ): Promise; verifyProof: TypedContractMethod< [_proof: BytesLike, _input: BigNumberish[]], [boolean], "nonpayable" >; getFunction( key: string | FunctionFragment ): T; getFunction( nameOrSignature: "verifyProof" ): TypedContractMethod< [_proof: BytesLike, _input: BigNumberish[]], [boolean], "nonpayable" >; filters: {}; }