{
    "Function": "fillQuote",
    "File": "contracts/libraries/ExchangeHelpers.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "setMaxAllowance"
    ],
    "Library Calls": [],
    "Low-Level Calls": [
        "call"
    ],
    "Code": "function fillQuote(\n        IERC20 _sellToken,\n        address _swapTarget,\n        bytes memory _swapCallData\n    ) internal returns (bool) {\n        setMaxAllowance(_sellToken, _swapTarget);\n        // solhint-disable-next-line avoid-low-level-calls\n        (bool success, ) = _swapTarget.call(_swapCallData);\n        return success;\n    }"
}