/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener, } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod, } from "./common"; export interface BatchAddressInterface extends Interface { getFunction( nameOrSignature: | "approveImpl" | "batchCreate" | "batchCreateAndRun" | "batchRun" | "codehash" | "implMap" | "owner" ): FunctionFragment; encodeFunctionData( functionFragment: "approveImpl", values: [AddressLike, boolean] ): string; encodeFunctionData( functionFragment: "batchCreate", values: [BigNumberish, BigNumberish] ): string; encodeFunctionData( functionFragment: "batchCreateAndRun", values: [AddressLike, BigNumberish, BigNumberish] ): string; encodeFunctionData( functionFragment: "batchRun", values: [AddressLike, BigNumberish, BigNumberish] ): string; encodeFunctionData(functionFragment: "codehash", values?: undefined): string; encodeFunctionData( functionFragment: "implMap", values: [AddressLike] ): string; encodeFunctionData(functionFragment: "owner", values?: undefined): string; decodeFunctionResult( functionFragment: "approveImpl", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "batchCreate", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "batchCreateAndRun", data: BytesLike ): Result; decodeFunctionResult(functionFragment: "batchRun", data: BytesLike): Result; decodeFunctionResult(functionFragment: "codehash", data: BytesLike): Result; decodeFunctionResult(functionFragment: "implMap", data: BytesLike): Result; decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result; } export interface BatchAddress extends BaseContract { connect(runner?: ContractRunner | null): BatchAddress; waitForDeployment(): Promise; interface: BatchAddressInterface; 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; approveImpl: TypedContractMethod< [impl: AddressLike, approved: boolean], [void], "nonpayable" >; batchCreate: TypedContractMethod< [start: BigNumberish, end: BigNumberish], [void], "nonpayable" >; batchCreateAndRun: TypedContractMethod< [impl: AddressLike, start: BigNumberish, end: BigNumberish], [void], "payable" >; batchRun: TypedContractMethod< [impl: AddressLike, start: BigNumberish, end: BigNumberish], [void], "payable" >; codehash: TypedContractMethod<[], [string], "view">; implMap: TypedContractMethod<[arg0: AddressLike], [boolean], "view">; owner: TypedContractMethod<[], [string], "view">; getFunction( key: string | FunctionFragment ): T; getFunction( nameOrSignature: "approveImpl" ): TypedContractMethod< [impl: AddressLike, approved: boolean], [void], "nonpayable" >; getFunction( nameOrSignature: "batchCreate" ): TypedContractMethod< [start: BigNumberish, end: BigNumberish], [void], "nonpayable" >; getFunction( nameOrSignature: "batchCreateAndRun" ): TypedContractMethod< [impl: AddressLike, start: BigNumberish, end: BigNumberish], [void], "payable" >; getFunction( nameOrSignature: "batchRun" ): TypedContractMethod< [impl: AddressLike, start: BigNumberish, end: BigNumberish], [void], "payable" >; getFunction( nameOrSignature: "codehash" ): TypedContractMethod<[], [string], "view">; getFunction( nameOrSignature: "implMap" ): TypedContractMethod<[arg0: AddressLike], [boolean], "view">; getFunction( nameOrSignature: "owner" ): TypedContractMethod<[], [string], "view">; filters: {}; }