{
    "Function": "acceptUpgradeAndCall",
    "File": "contracts/upgrades/GraphProxy.sol",
    "Parent Contracts": [
        "contracts/upgrades/GraphProxyStorage.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_implementation",
        "require(bool)",
        "_acceptUpgrade",
        "ifAdminOrPendingImpl"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "delegatecall"
    ],
    "Code": "function acceptUpgradeAndCall(bytes calldata data) external ifAdminOrPendingImpl {\n        _acceptUpgrade();\n        // solhint-disable-next-line avoid-low-level-calls\n        (bool success, ) = _implementation().delegatecall(data);\n        require(success);\n    }"
}