{
    "Function": "delegateSwap",
    "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": [],
    "Internal Calls": [
        "_onlyInternal",
        "_delegateSwap"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function delegateSwap(\n        address adapter,\n        uint256 amount,\n        uint256 expected,\n        address tokenIn,\n        address tokenOut,\n        address from,\n        address to\n    ) public {\n        _onlyInternal();\n        _delegateSwap(\n            adapter,\n            amount,\n            expected,\n            tokenIn,\n            tokenOut,\n            from,\n            to\n        );\n    }"
}