ufomarketplace-sdk-new
Version:
SDK to interact with set ufo marketplace contracts
59 lines (55 loc) • 1.31 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 {
ERC165Upgradeable,
ERC165UpgradeableInterface,
} from "../ERC165Upgradeable";
const _abi = [
{
type: "function",
name: "supportsInterface",
inputs: [
{
name: "interfaceId",
type: "bytes4",
internalType: "bytes4",
},
],
outputs: [
{
name: "",
type: "bool",
internalType: "bool",
},
],
stateMutability: "view",
},
{
type: "event",
name: "Initialized",
inputs: [
{
name: "version",
type: "uint8",
indexed: false,
internalType: "uint8",
},
],
anonymous: false,
},
] as const;
export class ERC165Upgradeable__factory {
static readonly abi = _abi;
static createInterface(): ERC165UpgradeableInterface {
return new utils.Interface(_abi) as ERC165UpgradeableInterface;
}
static connect(
address: string,
signerOrProvider: Signer | Provider
): ERC165Upgradeable {
return new Contract(address, _abi, signerOrProvider) as ERC165Upgradeable;
}
}