/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { ERC721NonNativeWrapper, ERC721NonNativeWrapperInterface, } from "../../../ERC721/non-native-wrapper/ERC721NonNativeWrapper"; const _abi = [ { inputs: [], name: "AlreadyInitialized", type: "error", }, { stateMutability: "payable", type: "fallback", }, { inputs: [ { internalType: "address", name: "_systemContextAddress", type: "address", }, { internalType: "address", name: "_originalAddress", type: "address", }, { components: [ { internalType: "address", name: "facetAddress", type: "address", }, { internalType: "enum IDiamondCut.FacetCutAction", name: "action", type: "uint8", }, { internalType: "bytes4[]", name: "functionSelectors", type: "bytes4[]", }, ], internalType: "struct IDiamondCut.FacetCut[]", name: "_diamondCut", type: "tuple[]", }, ], name: "encode", outputs: [ { internalType: "bytes", name: "", type: "bytes", }, ], stateMutability: "pure", type: "function", }, { inputs: [ { internalType: "bytes", name: "initializerEncoded_", type: "bytes", }, ], name: "initialize", outputs: [], stateMutability: "nonpayable", type: "function", }, { stateMutability: "payable", type: "receive", }, ]; export class ERC721NonNativeWrapper__factory { static readonly abi = _abi; static createInterface(): ERC721NonNativeWrapperInterface { return new utils.Interface(_abi) as ERC721NonNativeWrapperInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): ERC721NonNativeWrapper { return new Contract( address, _abi, signerOrProvider ) as ERC721NonNativeWrapper; } }