{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/gateway/GraphTokenGateway.sol",
    "Parent Contracts": [
        "contracts/arbitrum/ITokenGateway.sol",
        "contracts/governance/Managed.sol",
        "contracts/governance/Pausable.sol",
        "contracts/upgrades/GraphUpgradeable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "abstract contract GraphTokenGateway is GraphUpgradeable, Pausable, Managed, ITokenGateway {\n    /**\n     * @dev Check if the caller is the Controller's governor or this contract's pause guardian.\n     */\n    modifier onlyGovernorOrGuardian() {\n        require(\n            msg.sender == controller.getGovernor() || msg.sender == pauseGuardian,\n            \"Only Governor or Guardian can call\"\n        );\n        _;\n    }\n\n    /**\n     * @notice Change the Pause Guardian for this contract\n     * @param _newPauseGuardian The address of the new Pause Guardian\n     */\n    function setPauseGuardian(address _newPauseGuardian) external onlyGovernor {\n        require(_newPauseGuardian != address(0), \"PauseGuardian must be set\");\n        _setPauseGuardian(_newPauseGuardian);\n    }\n\n    /**\n     * @dev Override the default pausing from Managed to allow pausing this\n     * particular contract instead of pausing from the Controller.\n     */\n    function _notPaused() internal view override {\n        require(!_paused, \"Paused (contract)\");\n    }\n\n    /**\n     * @notice Change the paused state of the contract\n     * @param _newPaused New value for the pause state (true means the transfers will be paused)\n     */\n    function setPaused(bool _newPaused) external onlyGovernorOrGuardian {\n        _setPaused(_newPaused);\n    }\n\n    /**\n     * @notice Getter to access paused state of this contract\n     */\n    function paused() external view returns (bool) {\n        return _paused;\n    }\n}"
}