UNPKG

ufomarketplace-sdk-new

Version:

SDK to interact with set ufo marketplace contracts

107 lines (91 loc) 2.66 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumber, BytesLike, CallOverrides, ContractTransaction, Overrides, 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, } from "../common"; export interface IUniswapV2FactoryInterface extends utils.Interface { functions: { "createPair(address,address)": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "createPair"): FunctionFragment; encodeFunctionData( functionFragment: "createPair", values: [string, string] ): string; decodeFunctionResult(functionFragment: "createPair", data: BytesLike): Result; events: {}; } export interface IUniswapV2Factory extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise<this>; interface: IUniswapV2FactoryInterface; queryFilter<TEvent extends TypedEvent>( event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise<Array<TEvent>>; listeners<TEvent extends TypedEvent>( eventFilter?: TypedEventFilter<TEvent> ): Array<TypedListener<TEvent>>; listeners(eventName?: string): Array<Listener>; removeAllListeners<TEvent extends TypedEvent>( eventFilter: TypedEventFilter<TEvent> ): this; removeAllListeners(eventName?: string): this; off: OnEvent<this>; on: OnEvent<this>; once: OnEvent<this>; removeListener: OnEvent<this>; functions: { createPair( tokenA: string, tokenB: string, overrides?: Overrides & { from?: string } ): Promise<ContractTransaction>; }; createPair( tokenA: string, tokenB: string, overrides?: Overrides & { from?: string } ): Promise<ContractTransaction>; callStatic: { createPair( tokenA: string, tokenB: string, overrides?: CallOverrides ): Promise<string>; }; filters: {}; estimateGas: { createPair( tokenA: string, tokenB: string, overrides?: Overrides & { from?: string } ): Promise<BigNumber>; }; populateTransaction: { createPair( tokenA: string, tokenB: string, overrides?: Overrides & { from?: string } ): Promise<PopulatedTransaction>; }; }