{
    "Function": "settleSwap",
    "File": "contracts/routers/MulticallRouter.sol",
    "Parent Contracts": [
        "contracts/helpers/Multicall.sol",
        "contracts/routers/StrategyRouter.sol",
        "contracts/helpers/StrategyTypes.sol",
        "contracts/interfaces/IStrategyRouter.sol"
    ],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "_delegateSwap",
        "_onlyInternal"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function settleSwap(\n        address adapter,\n        address tokenIn,\n        address tokenOut,\n        address from,\n        address to\n    ) public {\n        _onlyInternal();\n        uint256 amount = IERC20(tokenIn).balanceOf(from);\n        if (amount > 0)\n            _delegateSwap(adapter, amount, 0, tokenIn, tokenOut, from, to);\n    }"
}