{
    "Function": "removeExecutors",
    "File": "contracts/hyphen/ExecutorManager.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol",
        "contracts/hyphen/interfaces/IExecutorManager.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "removeExecutor",
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function removeExecutors(address[] calldata executorArray) external override onlyOwner {\n        for (uint256 i = 0; i < executorArray.length; ++i) {\n            removeExecutor(executorArray[i]);\n        }\n    }"
}