/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumber, BytesLike, CallOverrides, PopulatedTransaction, Signer, utils, } from "ethers"; import type { FunctionFragment, Result } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, PromiseOrValue, } from "../../common"; export interface ForwarderWrongInterfaceInterface extends utils.Interface { functions: { "supportsInterface(bytes4)": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "supportsInterface"): FunctionFragment; encodeFunctionData( functionFragment: "supportsInterface", values: [PromiseOrValue] ): string; decodeFunctionResult( functionFragment: "supportsInterface", data: BytesLike ): Result; events: {}; } export interface ForwarderWrongInterface extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: ForwarderWrongInterfaceInterface; queryFilter( event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>; listeners( eventFilter?: TypedEventFilter ): Array>; listeners(eventName?: string): Array; removeAllListeners( eventFilter: TypedEventFilter ): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { supportsInterface( arg0: PromiseOrValue, overrides?: CallOverrides ): Promise<[boolean]>; }; supportsInterface( arg0: PromiseOrValue, overrides?: CallOverrides ): Promise; callStatic: { supportsInterface( arg0: PromiseOrValue, overrides?: CallOverrides ): Promise; }; filters: {}; estimateGas: { supportsInterface( arg0: PromiseOrValue, overrides?: CallOverrides ): Promise; }; populateTransaction: { supportsInterface( arg0: PromiseOrValue, overrides?: CallOverrides ): Promise; }; }