/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { ethers, EventFilter, Signer, BigNumber, BigNumberish, PopulatedTransaction, BaseContract, ContractTransaction, Overrides, CallOverrides, } from "ethers"; import { BytesLike } from "@ethersproject/bytes"; import { Listener, Provider } from "@ethersproject/providers"; import { FunctionFragment, EventFragment, Result } from "@ethersproject/abi"; import type { TypedEventFilter, TypedEvent, TypedListener } from "./common"; interface IGaugeV2UniV3FactoryInterface extends ethers.utils.Interface { functions: { "createGauge(address,address,address,address,address,address,uint256,uint256)": FunctionFragment; }; encodeFunctionData( functionFragment: "createGauge", values: [ string, string, string, string, string, string, BigNumberish, BigNumberish ] ): string; decodeFunctionResult( functionFragment: "createGauge", data: BytesLike ): Result; events: { "GaugeCreated(address,address,address,address,address,address,address,uint256,uint256)": EventFragment; }; getEvent(nameOrSignatureOrTopic: "GaugeCreated"): EventFragment; } export type GaugeCreatedEvent = TypedEvent< [ string, string, string, string, string, string, string, BigNumber, BigNumber ] & { _gauge: string; _pool: string; _bribe: string; _registry: string; _refundee: string; _uniswapV3factory: string; _nonfungiblePositionManager: string; _maxIncentiveStartLeadTime: BigNumber; _maxIncentiveDuration: BigNumber; } >; export class IGaugeV2UniV3Factory extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; listeners, EventArgsObject>( eventFilter?: TypedEventFilter ): Array>; off, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; on, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; once, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; removeListener, EventArgsObject>( eventFilter: TypedEventFilter, listener: TypedListener ): this; removeAllListeners, EventArgsObject>( eventFilter: TypedEventFilter ): this; listeners(eventName?: string): Array; off(eventName: string, listener: Listener): this; on(eventName: string, listener: Listener): this; once(eventName: string, listener: Listener): this; removeListener(eventName: string, listener: Listener): this; removeAllListeners(eventName?: string): this; queryFilter, EventArgsObject>( event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>>; interface: IGaugeV2UniV3FactoryInterface; functions: { createGauge( _pool: string, _bribe: string, _registry: string, _refundee: string, _uniswapV3factory: string, _nonfungiblePositionManager: string, _maxIncentiveStartLeadTime: BigNumberish, _maxIncentiveDuration: BigNumberish, overrides?: Overrides & { from?: string | Promise } ): Promise; }; createGauge( _pool: string, _bribe: string, _registry: string, _refundee: string, _uniswapV3factory: string, _nonfungiblePositionManager: string, _maxIncentiveStartLeadTime: BigNumberish, _maxIncentiveDuration: BigNumberish, overrides?: Overrides & { from?: string | Promise } ): Promise; callStatic: { createGauge( _pool: string, _bribe: string, _registry: string, _refundee: string, _uniswapV3factory: string, _nonfungiblePositionManager: string, _maxIncentiveStartLeadTime: BigNumberish, _maxIncentiveDuration: BigNumberish, overrides?: CallOverrides ): Promise; }; filters: { "GaugeCreated(address,address,address,address,address,address,address,uint256,uint256)"( _gauge?: null, _pool?: null, _bribe?: null, _registry?: null, _refundee?: null, _uniswapV3factory?: null, _nonfungiblePositionManager?: null, _maxIncentiveStartLeadTime?: null, _maxIncentiveDuration?: null ): TypedEventFilter< [ string, string, string, string, string, string, string, BigNumber, BigNumber ], { _gauge: string; _pool: string; _bribe: string; _registry: string; _refundee: string; _uniswapV3factory: string; _nonfungiblePositionManager: string; _maxIncentiveStartLeadTime: BigNumber; _maxIncentiveDuration: BigNumber; } >; GaugeCreated( _gauge?: null, _pool?: null, _bribe?: null, _registry?: null, _refundee?: null, _uniswapV3factory?: null, _nonfungiblePositionManager?: null, _maxIncentiveStartLeadTime?: null, _maxIncentiveDuration?: null ): TypedEventFilter< [ string, string, string, string, string, string, string, BigNumber, BigNumber ], { _gauge: string; _pool: string; _bribe: string; _registry: string; _refundee: string; _uniswapV3factory: string; _nonfungiblePositionManager: string; _maxIncentiveStartLeadTime: BigNumber; _maxIncentiveDuration: BigNumber; } >; }; estimateGas: { createGauge( _pool: string, _bribe: string, _registry: string, _refundee: string, _uniswapV3factory: string, _nonfungiblePositionManager: string, _maxIncentiveStartLeadTime: BigNumberish, _maxIncentiveDuration: BigNumberish, overrides?: Overrides & { from?: string | Promise } ): Promise; }; populateTransaction: { createGauge( _pool: string, _bribe: string, _registry: string, _refundee: string, _uniswapV3factory: string, _nonfungiblePositionManager: string, _maxIncentiveStartLeadTime: BigNumberish, _maxIncentiveDuration: BigNumberish, overrides?: Overrides & { from?: string | Promise } ): Promise; }; }