/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { ERC721NativeMintableFacet, ERC721NativeMintableFacetInterface, } from "../../../../ERC721/native/facets/ERC721NativeMintableFacet"; const _abi = [ { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "from", type: "address", }, { indexed: true, internalType: "address", name: "to", type: "address", }, { indexed: true, internalType: "uint256", name: "tokenId", type: "uint256", }, ], name: "Transfer", type: "event", }, { inputs: [ { internalType: "address", name: "to", type: "address", }, { internalType: "uint256", name: "tokenId", type: "uint256", }, ], name: "mintTo", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "to", type: "address", }, { internalType: "uint256", name: "tokenId", type: "uint256", }, { internalType: "string", name: "tokenUri", type: "string", }, ], name: "mintToWithUri", outputs: [], stateMutability: "nonpayable", type: "function", }, ]; export class ERC721NativeMintableFacet__factory { static readonly abi = _abi; static createInterface(): ERC721NativeMintableFacetInterface { return new utils.Interface(_abi) as ERC721NativeMintableFacetInterface; } static connect( address: string, signerOrProvider: Signer | Provider ): ERC721NativeMintableFacet { return new Contract( address, _abi, signerOrProvider ) as ERC721NativeMintableFacet; } }