/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { BaseContract, BigNumber, BytesLike, CallOverrides, ContractTransaction, PayableOverrides, PopulatedTransaction, Signer, utils, } from "ethers"; import { FunctionFragment, Result } from "@ethersproject/abi"; import { Listener, Provider } from "@ethersproject/providers"; import { TypedEventFilter, TypedEvent, TypedListener, OnEvent } from "./common"; export interface ForceFunderMockInterface extends utils.Interface { functions: { "fund(address)": FunctionFragment; }; encodeFunctionData(functionFragment: "fund", values: [string]): string; decodeFunctionResult(functionFragment: "fund", data: BytesLike): Result; events: {}; } export interface ForceFunderMock extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: ForceFunderMockInterface; 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: { fund( destination: string, overrides?: PayableOverrides & { from?: string | Promise } ): Promise; }; fund( destination: string, overrides?: PayableOverrides & { from?: string | Promise } ): Promise; callStatic: { fund(destination: string, overrides?: CallOverrides): Promise; }; filters: {}; estimateGas: { fund( destination: string, overrides?: PayableOverrides & { from?: string | Promise } ): Promise; }; populateTransaction: { fund( destination: string, overrides?: PayableOverrides & { from?: string | Promise } ): Promise; }; }