{
    "Function": "settleTransferFrom",
    "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",
        "SafeERC20"
    ],
    "Internal Calls": [
        "_onlyInternal"
    ],
    "Library Calls": [
        "safeTransferFrom"
    ],
    "Low-Level Calls": [],
    "Code": "function settleTransferFrom(\n        address token,\n        address from,\n        address to\n    ) public {\n        _onlyInternal();\n        IERC20 erc20 = IERC20(token);\n        uint256 amount = erc20.balanceOf(from);\n        if (amount > 0) erc20.safeTransferFrom(from, to, amount);\n    }"
}