{
    "Function": "maxDeposit",
    "File": "src/InvestmentManager.sol",
    "Parent Contracts": [
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function maxDeposit(address user, address liquidityPool) public view returns (uint256 currencyAmount) {\n        currencyAmount = uint256(orderbook[user][liquidityPool].maxDeposit);\n    }"
}