{
    "Function": "deposit",
    "File": "src/LiquidityPool.sol",
    "Parent Contracts": [
        "src/interfaces/IERC4626.sol",
        "src/interfaces/IERC20.sol",
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "InvestmentManagerLike"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function deposit(uint256 assets, address receiver) public returns (uint256 shares) {\n        shares = investmentManager.processDeposit(receiver, assets);\n        emit Deposit(address(this), receiver, assets, shares);\n    }"
}