I am running in a issue related to tokenURI(). This is my function:
function initialize(string memory _baseUri) public initializer { __ERC721_init("GAME", "GM"); __Ownable_init(); baseUri = _baseUri; } function mint(address _address) internal { tokenId.increment(); uint256 currentTokenId = tokenId.current(); _safeMint(_address, currentTokenId); tokenURI(currentTokenId); } I passed my metadata file's url which is this as baseURI. After deploying when i queried the value of tokenURI it shows this: https://gateway.pinata.cloud/ipfs/QmaU1NBQczTWYz7cbhJDSeEugyhYPRoZrFPfcRxMkvQ79t1 for tokenId 1. When i gone to the link it shows this error: ipfs resolve -r /ipfs/QmaU1NBQczTWYz7cbhJDSeEugyhYPRoZrFPfcRxMkvQ79t1: invalid path "/ipfs/QmaU1NBQczTWYz7cbhJDSeEugyhYPRoZrFPfcRxMkvQ79t1": invalid CID: selected encoding not supported. What is the issue?