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