Hi Thank you very much!! I’m getting a error on the override in my token contract. thinking this might just be a syntax error, but, I don’t see where. it’s reading Expected ‘{’ but got reserved keyword ‘override’ oh, also did I put the backticks in correctly for this post (my first post:) if so, I can put the rest of the contract up here, if that helps to see what’s going on. Cheers, and thank you again!
function tokenURI(uint256 tokenId) public view override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
return Items[newItemId].url;
}