UNPKG

ufomarketplace-sdk

Version:

SDK to interact with set ufo marketplace contracts

184 lines (179 loc) 3.33 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IUniswapV2Factory } from "../IUniswapV2Factory"; export class IUniswapV2Factory__factory { static connect( address: string, signerOrProvider: Signer | Provider ): IUniswapV2Factory { return new Contract(address, _abi, signerOrProvider) as IUniswapV2Factory; } } const _abi = [ { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "token0", type: "address", }, { indexed: true, internalType: "address", name: "token1", type: "address", }, { indexed: false, internalType: "address", name: "pair", type: "address", }, { indexed: false, internalType: "uint256", name: "", type: "uint256", }, ], name: "PairCreated", type: "event", }, { inputs: [ { internalType: "uint256", name: "", type: "uint256", }, ], name: "allPairs", outputs: [ { internalType: "address", name: "pair", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "allPairsLength", outputs: [ { internalType: "uint256", name: "", type: "uint256", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "tokenA", type: "address", }, { internalType: "address", name: "tokenB", type: "address", }, ], name: "createPair", outputs: [ { internalType: "address", name: "pair", type: "address", }, ], stateMutability: "nonpayable", type: "function", }, { inputs: [], name: "feeTo", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "feeToSetter", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "tokenA", type: "address", }, { internalType: "address", name: "tokenB", type: "address", }, ], name: "getPair", outputs: [ { internalType: "address", name: "pair", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "", type: "address", }, ], name: "setFeeTo", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "", type: "address", }, ], name: "setFeeToSetter", outputs: [], stateMutability: "nonpayable", type: "function", }, ];