{
    "Function": "protocolRemove",
    "File": "contracts/managers/SherlockProtocolManager.sol",
    "Parent Contracts": [
        "contracts/managers/Manager.sol",
        "node_modules/@openzeppelin/contracts/security/Pausable.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/interfaces/managers/ISherlockProtocolManager.sol",
        "contracts/interfaces/managers/IManager.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_verifyProtocolExists",
        "onlyOwner",
        "_forceRemoveProtocol"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function protocolRemove(bytes32 _protocol) external override onlyOwner {\n    // checks to make sure the protocol actually has a protocol agent\n    address agent = _verifyProtocolExists(_protocol);\n\n    // Removes a protocol from Sherlock and cleans up its data\n    // Params are the protocol ID and the protocol agent to which remaining active balance should be sent and from which post-removal claims can be made\n    _forceRemoveProtocol(_protocol, agent);\n  }"
}