{
    "Function": "withdraw",
    "File": "contracts/tests/BatchLiquidator.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [
        "IERC20",
        "SafeERC20"
    ],
    "Internal Calls": [
        "owner"
    ],
    "Library Calls": [
        "safeTransfer"
    ],
    "Low-Level Calls": [],
    "Code": "function withdraw(IERC20 token) external {\n        token.safeTransfer(owner(), token.balanceOf(address(this)));\n    }"
}