UNPKG

ufomarketplace-sdk

Version:

SDK to interact with set ufo marketplace contracts

40 lines (35 loc) 775 B
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer } from "ethers"; import { Provider } from "@ethersproject/providers"; import type { IERC165 } from "../IERC165"; export class IERC165__factory { static connect( address: string, signerOrProvider: Signer | Provider ): IERC165 { return new Contract(address, _abi, signerOrProvider) as IERC165; } } const _abi = [ { inputs: [ { internalType: "bytes4", name: "interfaceId", type: "bytes4", }, ], name: "supportsInterface", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, ];