{
    "Function": "setWithdrawer",
    "File": "src/automators/Automator.sol",
    "Parent Contracts": [
        "lib/openzeppelin-contracts/contracts/access/Ownable.sol",
        "lib/openzeppelin-contracts/contracts/utils/Context.sol",
        "src/utils/Swapper.sol",
        "src/interfaces/IErrors.sol",
        "lib/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyOwner"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setWithdrawer(address _withdrawer) public onlyOwner {\n        emit WithdrawerChanged(_withdrawer);\n        withdrawer = _withdrawer;\n    }"
}