Validate a token ID (should be 32 bytes in hex format)
bool isValidTokenId(String tokenId) { return tokenId.length == 64 && _isValidHex(tokenId); }