ufomarketplace-sdk-new
Version:
SDK to interact with set ufo marketplace contracts
27 lines (26 loc) • 1.04 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { IUniswapV2Factory, IUniswapV2FactoryInterface } from "../../Trader.sol/IUniswapV2Factory";
export declare class IUniswapV2Factory__factory {
static readonly abi: readonly [{
readonly type: "function";
readonly name: "createPair";
readonly inputs: readonly [{
readonly name: "tokenA";
readonly type: "address";
readonly internalType: "address";
}, {
readonly name: "tokenB";
readonly type: "address";
readonly internalType: "address";
}];
readonly outputs: readonly [{
readonly name: "pair";
readonly type: "address";
readonly internalType: "address";
}];
readonly stateMutability: "nonpayable";
}];
static createInterface(): IUniswapV2FactoryInterface;
static connect(address: string, signerOrProvider: Signer | Provider): IUniswapV2Factory;
}