ufomarketplace-sdk-new
Version:
SDK to interact with set ufo marketplace contracts
46 lines (42 loc) • 1.09 kB
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Signer, utils } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type {
IERC165Upgradeable,
IERC165UpgradeableInterface,
} from "../IERC165Upgradeable";
const _abi = [
{
type: "function",
name: "supportsInterface",
inputs: [
{
name: "interfaceId",
type: "bytes4",
internalType: "bytes4",
},
],
outputs: [
{
name: "",
type: "bool",
internalType: "bool",
},
],
stateMutability: "view",
},
] as const;
export class IERC165Upgradeable__factory {
static readonly abi = _abi;
static createInterface(): IERC165UpgradeableInterface {
return new utils.Interface(_abi) as IERC165UpgradeableInterface;
}
static connect(
address: string,
signerOrProvider: Signer | Provider
): IERC165Upgradeable {
return new Contract(address, _abi, signerOrProvider) as IERC165Upgradeable;
}
}