{
    "Function": "removeOperator",
    "File": "contracts/RewardFactory.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [
        "EnumerableSet"
    ],
    "Internal Calls": [
        "onlyOwner"
    ],
    "Library Calls": [
        "remove"
    ],
    "Low-Level Calls": [],
    "Code": "function removeOperator(address _operator) public onlyOwner {\n        operators.remove(_operator);\n        veAssets[_operator] = address(0);\n    }"
}