{
    "Function": "rescueToken",
    "File": "contracts/BalLiquidityProvider.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "SafeERC20",
        "IERC20"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [
        "safeTransfer"
    ],
    "Low-Level Calls": [],
    "Code": "function rescueToken(address _erc20) external {\n        require(msg.sender == provider || msg.sender == dao, \"!auth\");\n        IERC20 tkn = IERC20(_erc20);\n        tkn.safeTransfer(dao, tkn.balanceOf(address(this)));\n    }"
}