Skip to content

Commit

Permalink
remove reference to erc721enumerable from concrete
Browse files Browse the repository at this point in the history
  • Loading branch information
tinaszheng committed Nov 21, 2023
1 parent c413068 commit 38e78db
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions contracts/NonfungiblePositionManagerV4.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.19;

import {IERC721Metadata} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import {IERC721Enumerable} from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {PoolKey} from "@uniswap/v4-core/contracts/types/PoolKey.sol";
Expand Down Expand Up @@ -195,17 +194,14 @@ contract NonfungiblePositionManagerV4 is
emit Approval(ownerOf(tokenId), to, tokenId);
}

/// @inheritdoc IERC721Enumerable
function tokenByIndex(uint256 index) external view returns (uint256) {
// TODO: implement this
}

/// @inheritdoc IERC721Enumerable
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256) {
// TODO: implement this
}

/// @inheritdoc IERC721Enumerable
function totalSupply() external view returns (uint256) {
// TODO: implement this
}
Expand Down

0 comments on commit 38e78db

Please sign in to comment.