{
    "Function": "togglePauseDepositEther",
    "File": "src/frxETHMinter.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts/contracts/security/ReentrancyGuard.sol",
        "src/OperatorRegistry.sol",
        "src/Utils/Owned.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyByOwnGov"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function togglePauseDepositEther() external onlyByOwnGov {\n        depositEtherPaused = !depositEtherPaused;\n\n        emit DepositEtherPaused(depositEtherPaused);\n    }"
}