UNPKG

ufomarketplace-sdk-new

Version:

SDK to interact with set ufo marketplace contracts

40 lines (36 loc) 993 B
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { IERC1822Proxiable, IERC1822ProxiableInterface, } from "../../draft-IERC1822.sol/IERC1822Proxiable"; const _abi = [ { type: "function", name: "proxiableUUID", inputs: [], outputs: [ { name: "", type: "bytes32", internalType: "bytes32", }, ], stateMutability: "view", }, ] as const; export class IERC1822Proxiable__factory { static readonly abi = _abi; static createInterface(): IERC1822ProxiableInterface { return new utils.Interface(_abi) as IERC1822ProxiableInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): IERC1822Proxiable { return new Contract(address, _abi, signerOrProvider) as IERC1822Proxiable; } }