ufomarketplace-sdk
Version:
SDK to interact with set ufo marketplace contracts
44 lines (39 loc) • 874 B
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Signer } from "ethers";
import { Provider } from "@ethersproject/providers";
import type { ISuperGalaticFactory } from "../ISuperGalaticFactory";
export class ISuperGalaticFactory__factory {
static connect(
address: string,
signerOrProvider: Signer | Provider
): ISuperGalaticFactory {
return new Contract(
address,
_abi,
signerOrProvider
) as ISuperGalaticFactory;
}
}
const _abi = [
{
inputs: [
{
internalType: "address",
name: "_nftAddress",
type: "address",
},
],
name: "isSuperGalaticNFTContract",
outputs: [
{
internalType: "bool",
name: "",
type: "bool",
},
],
stateMutability: "view",
type: "function",
},
];