|
@@ -4,6 +4,10 @@ import "./IERC721Enumerable.sol";
|
|
|
import "./ERC721.sol";
|
|
|
import "../../introspection/ERC165.sol";
|
|
|
|
|
|
+/**
|
|
|
+ * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
|
|
|
+ * @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
|
|
|
+ */
|
|
|
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable {
|
|
|
// Mapping from owner to list of owned token IDs
|
|
|
mapping(address => uint256[]) private _ownedTokens;
|