{
    "Function": "requestDeposit",
    "File": "src/LiquidityPool.sol",
    "Parent Contracts": [
        "src/interfaces/IERC4626.sol",
        "src/interfaces/IERC20.sol",
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "InvestmentManagerLike"
    ],
    "Internal Calls": [
        "withApproval"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function requestDeposit(uint256 assets, address owner) public withApproval(owner) {\n        investmentManager.requestDeposit(assets, owner);\n        emit DepositRequested(owner, assets);\n    }"
}