Skip to content

Commit

Permalink
Fix [Q-9] Document behavior of tokenURI
Browse files Browse the repository at this point in the history
  • Loading branch information
nkrishang committed Sep 27, 2023
1 parent 97949b8 commit 17b37be
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -76,7 +76,8 @@ contract BurnToClaimDrop721Logic is
ERC 165 / 721 / 2981 logic
//////////////////////////////////////////////////////////////*/

/// @dev Returns the URI for a given tokenId.
/// @notice Returns the URI for a given tokenId.
/// @dev The URI, for a given tokenId, is returned once it is lazy minted, even if it might not be actually minted. (See `LazyMint`)
function tokenURI(uint256 _tokenId) public view override returns (string memory) {
(uint256 batchId, ) = _getBatchId(_tokenId);
string memory batchUri = _getBaseURI(_tokenId);
Expand Down

0 comments on commit 17b37be

Please sign in to comment.