Skip to content

Commit

Permalink
doesn't need enumerable
Browse files Browse the repository at this point in the history
  • Loading branch information
wanderer committed Nov 18, 2023
1 parent d59abbf commit 4193885
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store-reg.sol
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.21;

import "openzeppelin-contracts/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "openzeppelin-contracts/contracts/token/ERC721/ERC721.sol";
import "openzeppelin-contracts/contracts/access/Ownable.sol";
import "lib/delegatable-sol/contracts/Delegatable.sol";


contract Store is ERC721Enumerable, Delegatable {
contract Store is ERC721, Delegatable {
string public baseURI;
mapping(uint256 => bytes32) public storeRootHash;
mapping(uint256 => string[]) public relays;
Expand Down

0 comments on commit 4193885

Please sign in to comment.