craft-nft

A standalone NFT implementation for real-world arts and crafts assets
Log | Files | Refs | README

commit ecd6b47ba1dffa4707a96acea8f8f5d9a2fec8da
parent 2e32f28d04a8a6b11a5b13d7d23441d3390a886d
Author: lash <dev@holbrook.no>
Date:   Tue,  7 Feb 2023 06:04:04 +0000

remove enumerable interface

Diffstat:
Msolidity/CraftNFT.sol | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/solidity/CraftNFT.sol b/solidity/CraftNFT.sol @@ -440,9 +440,9 @@ contract CraftNFT { if (interfaceID == 0x5b5e139f) { // EIP 721 (Metadata - optional) return true; } - if (interfaceID == 0x780e9d63) { // EIP 721 (Enumerable - optional) - return true; - } + //if (interfaceID == 0x780e9d63) { // EIP 721 (Enumerable - optional) + // return true; + //} if (interfaceID == 0x449a52f8) { // Minter return true; }