UNPKG

ufomarketplace-sdk-new

Version:

SDK to interact with set ufo marketplace contracts

50 lines (46 loc) 1.14 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { ISuperGalaticFactory, ISuperGalaticFactoryInterface, } from "../ISuperGalaticFactory"; const _abi = [ { type: "function", name: "isSuperGalaticNFTContract", inputs: [ { name: "_nftAddress", type: "address", internalType: "address", }, ], outputs: [ { name: "", type: "bool", internalType: "bool", }, ], stateMutability: "view", }, ] as const; export class ISuperGalaticFactory__factory { static readonly abi = _abi; static createInterface(): ISuperGalaticFactoryInterface { return new utils.Interface(_abi) as ISuperGalaticFactoryInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): ISuperGalaticFactory { return new Contract( address, _abi, signerOrProvider ) as ISuperGalaticFactory; } }