/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import { Contract, Signer, utils } from "ethers"; import type { Provider } from "@ethersproject/providers"; import type { LibERC721, LibERC721Interface, } from "../../../../ERC721/common/libraries/LibERC721"; const _abi = [ { inputs: [ { internalType: "address", name: "tokenAddr", type: "address", }, { internalType: "uint256", name: "tokenId_", type: "uint256", }, ], name: "ownerOf", outputs: [ { internalType: "address", name: "addr", type: "address", }, ], stateMutability: "view", type: "function", }, ]; export class LibERC721__factory { static readonly abi = _abi; static createInterface(): LibERC721Interface { return new utils.Interface(_abi) as LibERC721Interface; } static connect( address: string, signerOrProvider: Signer | Provider ): LibERC721 { return new Contract(address, _abi, signerOrProvider) as LibERC721; } }