UNPKG

ufomarketplace-sdk-new

Version:

SDK to interact with set ufo marketplace contracts

23 lines (22 loc) 817 B
import { Signer } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { ERC165, ERC165Interface } from "../ERC165"; export declare class ERC165__factory { static readonly abi: readonly [{ readonly type: "function"; readonly name: "supportsInterface"; readonly inputs: readonly [{ readonly name: "interfaceId"; readonly type: "bytes4"; readonly internalType: "bytes4"; }]; readonly outputs: readonly [{ readonly name: ""; readonly type: "bool"; readonly internalType: "bool"; }]; readonly stateMutability: "view"; }]; static createInterface(): ERC165Interface; static connect(address: string, signerOrProvider: Signer | Provider): ERC165; }