{
    "Function": "recoverEther",
    "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",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function recoverEther(uint256 amount) external onlyByOwnGov {\n        (bool success,) = address(owner).call{ value: amount }(\"\");\n        require(success, \"Invalid transfer\");\n\n        emit EmergencyEtherRecovered(amount);\n    }"
}