{
    "Function": "unSetTrustedSenders",
    "File": "src/core/Governance/TemporalGovernor.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts/contracts/security/Pausable.sol",
        "lib/openzeppelin-contracts/contracts/access/Ownable.sol",
        "lib/openzeppelin-contracts/contracts/utils/Context.sol",
        "src/core/Governance/ITemporalGovernor.sol"
    ],
    "High-Level Calls": [
        "EnumerableSet"
    ],
    "Internal Calls": [
        "addressToBytes",
        "require(bool,string)"
    ],
    "Library Calls": [
        "remove"
    ],
    "Low-Level Calls": [],
    "Code": "function unSetTrustedSenders(\n        TrustedSender[] calldata _trustedSenders\n    ) external {\n        require(\n            msg.sender == address(this),\n            \"TemporalGovernor: Only this contract can update trusted senders\"\n        );\n\n        unchecked {\n            for (uint256 i = 0; i < _trustedSenders.length; i++) {\n                trustedSenders[_trustedSenders[i].chainId].remove(\n                    addressToBytes(_trustedSenders[i].addr)\n                );\n\n                emit TrustedSenderUpdated(\n                    _trustedSenders[i].chainId,\n                    _trustedSenders[i].addr,\n                    false /// removed from list\n                );\n            }\n        }\n    }"
}