{
    "Function": "updateBlocklister",
    "File": "contracts/v1/Blocklistable.sol",
    "Parent Contracts": [
        "contracts/v1/Ownable.sol",
        "contracts/util/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function updateBlocklister(address _newBlocklister) external onlyOwner {\n        require(\n            _newBlocklister != address(0),\n            \"Blocklistable: new blocklister is the zero address\"\n        );\n        blocklister = _newBlocklister;\n        emit BlocklisterChanged(blocklister);\n    }"
}