From 6437f468dfbd2f5d940471b7d8c38565cb0c30ac Mon Sep 17 00:00:00 2001 From: zeroXbrock <2791467+zeroXbrock@users.noreply.github.com> Date: Thu, 2 May 2024 18:39:45 -0700 Subject: [PATCH] rename /nftData to /metadata --- examples/chatGPT-nft-minter/ethL1/NFTEE2.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chatGPT-nft-minter/ethL1/NFTEE2.sol b/examples/chatGPT-nft-minter/ethL1/NFTEE2.sol index bd3d891..0eeab8f 100644 --- a/examples/chatGPT-nft-minter/ethL1/NFTEE2.sol +++ b/examples/chatGPT-nft-minter/ethL1/NFTEE2.sol @@ -9,7 +9,7 @@ import {LibString} from "solmate/utils/LibString.sol"; contract SuaveNFT is ERC721 { using LibString for uint256; - string private constant BASE_URI = "http://localhost:8080/nftData/"; + string private constant BASE_URI = "http://localhost:8080/metadata/"; // Event declarations event NFTMintedEvent(address indexed recipient, uint256 indexed tokenId);