{
    "Function": "_setImplementation",
    "File": "contracts/upgrades/GraphProxyStorage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "sstore(uint256,uint256)",
        "_implementation"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _setImplementation(address _newImplementation) internal {\n        address oldImplementation = _implementation();\n\n        bytes32 slot = IMPLEMENTATION_SLOT;\n        assembly {\n            sstore(slot, _newImplementation)\n        }\n\n        emit ImplementationUpdated(oldImplementation, _newImplementation);\n    }"
}