ufomarketplace-sdk
Version:
SDK to interact with set ufo marketplace contracts
37 lines (32 loc) • 758 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 { ERC165 } from "../ERC165";
export class ERC165__factory {
static connect(address: string, signerOrProvider: Signer | Provider): ERC165 {
return new Contract(address, _abi, signerOrProvider) as ERC165;
}
}
const _abi = [
{
inputs: [
{
internalType: "bytes4",
name: "interfaceId",
type: "bytes4",
},
],
name: "supportsInterface",
outputs: [
{
internalType: "bool",
name: "",
type: "bool",
},
],
stateMutability: "view",
type: "function",
},
];