/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */

import { Contract, Signer } from "ethers";
import { Provider } from "@ethersproject/providers";

import type { ERC165Upgradeable } from "../ERC165Upgradeable";

export class ERC165Upgradeable__factory {
  static connect(
    address: string,
    signerOrProvider: Signer | Provider
  ): ERC165Upgradeable {
    return new Contract(address, _abi, signerOrProvider) as ERC165Upgradeable;
  }
}

const _abi = [
  {
    inputs: [
      {
        internalType: "bytes4",
        name: "interfaceId",
        type: "bytes4",
      },
    ],
    name: "supportsInterface",
    outputs: [
      {
        internalType: "bool",
        name: "",
        type: "bool",
      },
    ],
    stateMutability: "view",
    type: "function",
  },
];
