{
    "Function": "setSubgraphMetadata",
    "File": "contracts/discovery/SubgraphNFT.sol",
    "Parent Contracts": [
        "contracts/discovery/ISubgraphNFT.sol",
        "node_modules/@openzeppelin/contracts/token/ERC721/ERC721.sol",
        "node_modules/@openzeppelin/contracts/token/ERC721/IERC721Enumerable.sol",
        "node_modules/@openzeppelin/contracts/token/ERC721/IERC721Metadata.sol",
        "node_modules/@openzeppelin/contracts/token/ERC721/IERC721.sol",
        "node_modules/@openzeppelin/contracts/introspection/ERC165.sol",
        "node_modules/@openzeppelin/contracts/introspection/IERC165.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/governance/Governed.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyMinter",
        "_exists",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setSubgraphMetadata(uint256 _tokenId, bytes32 _subgraphMetadata)\n        external\n        override\n        onlyMinter\n    {\n        require(_exists(_tokenId), \"ERC721Metadata: URI set of nonexistent token\");\n        _subgraphMetadataHashes[_tokenId] = _subgraphMetadata;\n        emit SubgraphMetadataUpdated(_tokenId, _subgraphMetadata);\n    }"
}