INft

Inherits: IERC721Enumerable

Functions

tokenOfOwnerByIndexExists

Check if an NFT exists for a given owner and index.

function tokenOfOwnerByIndexExists(address owner, uint256 index) external view returns (bool);

checkAuthorized

Check if the caller has access to a specific NFT by tokenId.

function checkAuthorized(address spender, uint256 tokenId) external view returns (address owner);

tokenIdsOfOwner

List of tokenIds by owner.

function tokenIdsOfOwner(address owner) external view returns (uint256[] memory tokenIds);

tokenURI

Get the token URI for a given tokenId.

function tokenURI(uint256 tokenId) external view returns (string memory);

name

function name() external view returns (string memory);

symbol

function symbol() external view returns (string memory);

Last updated