UNPKG

ufomarketplace-sdk

Version:

SDK to interact with set ufo marketplace contracts

75 lines (70 loc) 1.55 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { ISuperGalatic } from "../ISuperGalatic"; export class ISuperGalatic__factory { static connect( address: string, signerOrProvider: Signer | Provider ): ISuperGalatic { return new Contract(address, _abi, signerOrProvider) as ISuperGalatic; } } const _abi = [ { inputs: [ { internalType: "address", name: "minter", type: "address", }, ], name: "createGenesis", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "_admin", type: "address", }, { internalType: "address", name: "_factory", type: "address", }, { internalType: "uint256", name: "_categoryId", type: "uint256", }, ], name: "initialize", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "uint256", name: "bodyType", type: "uint256", }, { internalType: "uint256", name: "tokenId", type: "uint256", }, ], name: "updateBody", outputs: [], stateMutability: "nonpayable", type: "function", }, ];