UNPKG

@pollum-io/universal-router

Version:
92 lines (72 loc) 2.43 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { ethers, EventFilter, Signer, BigNumber, BigNumberish, PopulatedTransaction, } from "ethers"; import { Contract, ContractTransaction, CallOverrides, } from "@ethersproject/contracts"; import { BytesLike } from "@ethersproject/bytes"; import { Listener, Provider } from "@ethersproject/providers"; import { FunctionFragment, EventFragment, Result } from "@ethersproject/abi"; interface MockLooksRareRewardsDistributorInterface extends ethers.utils.Interface { functions: { "routerRewardsDistributor()": FunctionFragment; }; encodeFunctionData( functionFragment: "routerRewardsDistributor", values?: undefined ): string; decodeFunctionResult( functionFragment: "routerRewardsDistributor", data: BytesLike ): Result; events: {}; } export class MockLooksRareRewardsDistributor extends Contract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise<this>; on(event: EventFilter | string, listener: Listener): this; once(event: EventFilter | string, listener: Listener): this; addListener(eventName: EventFilter | string, listener: Listener): this; removeAllListeners(eventName: EventFilter | string): this; removeListener(eventName: any, listener: Listener): this; interface: MockLooksRareRewardsDistributorInterface; functions: { routerRewardsDistributor(overrides?: CallOverrides): Promise<{ 0: string; }>; "routerRewardsDistributor()"(overrides?: CallOverrides): Promise<{ 0: string; }>; }; routerRewardsDistributor(overrides?: CallOverrides): Promise<string>; "routerRewardsDistributor()"(overrides?: CallOverrides): Promise<string>; callStatic: { routerRewardsDistributor(overrides?: CallOverrides): Promise<string>; "routerRewardsDistributor()"(overrides?: CallOverrides): Promise<string>; }; filters: {}; estimateGas: { routerRewardsDistributor(overrides?: CallOverrides): Promise<BigNumber>; "routerRewardsDistributor()"(overrides?: CallOverrides): Promise<BigNumber>; }; populateTransaction: { routerRewardsDistributor( overrides?: CallOverrides ): Promise<PopulatedTransaction>; "routerRewardsDistributor()"( overrides?: CallOverrides ): Promise<PopulatedTransaction>; }; }