/* 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 FeeDiscountPluginImplementationInterface extends Interface { getFunction( nameOrSignature: | "applyFeeDiscount" | "getFeeDiscountRegistry" | "initializeFeeDiscount" | "setFeeDiscountRegistry" ): FunctionFragment; encodeFunctionData( functionFragment: "applyFeeDiscount", values: [AddressLike, AddressLike, BigNumberish] ): string; encodeFunctionData( functionFragment: "getFeeDiscountRegistry", values?: undefined ): string; encodeFunctionData( functionFragment: "initializeFeeDiscount", values: [AddressLike] ): string; encodeFunctionData( functionFragment: "setFeeDiscountRegistry", values: [AddressLike] ): string; decodeFunctionResult( functionFragment: "applyFeeDiscount", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "getFeeDiscountRegistry", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "initializeFeeDiscount", data: BytesLike ): Result; decodeFunctionResult( functionFragment: "setFeeDiscountRegistry", data: BytesLike ): Result; } export interface FeeDiscountPluginImplementation extends BaseContract { connect(runner?: ContractRunner | null): FeeDiscountPluginImplementation; waitForDeployment(): Promise; interface: FeeDiscountPluginImplementationInterface; 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; applyFeeDiscount: TypedContractMethod< [user: AddressLike, pool: AddressLike, fee: BigNumberish], [bigint], "nonpayable" >; getFeeDiscountRegistry: TypedContractMethod<[], [string], "view">; initializeFeeDiscount: TypedContractMethod< [_feeDiscountRegistry: AddressLike], [void], "nonpayable" >; setFeeDiscountRegistry: TypedContractMethod< [_feeDiscountRegistry: AddressLike], [void], "nonpayable" >; getFunction( key: string | FunctionFragment ): T; getFunction( nameOrSignature: "applyFeeDiscount" ): TypedContractMethod< [user: AddressLike, pool: AddressLike, fee: BigNumberish], [bigint], "nonpayable" >; getFunction( nameOrSignature: "getFeeDiscountRegistry" ): TypedContractMethod<[], [string], "view">; getFunction( nameOrSignature: "initializeFeeDiscount" ): TypedContractMethod< [_feeDiscountRegistry: AddressLike], [void], "nonpayable" >; getFunction( nameOrSignature: "setFeeDiscountRegistry" ): TypedContractMethod< [_feeDiscountRegistry: AddressLike], [void], "nonpayable" >; filters: {}; }