{
    "Function": "_deposit",
    "File": "contracts/SavingsAccount/SavingsAccount.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/utils/ReentrancyGuard.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
        "node_modules/@openzeppelin/contracts-upgradeable/proxy/Initializable.sol",
        "contracts/interfaces/ISavingsAccount.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "_depositToYield"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _deposit(\n        uint256 _amount,\n        address _token,\n        address _strategy\n    ) internal returns (uint256 _sharesReceived) {\n        require(_amount != 0, 'SavingsAccount::_deposit Amount must be greater than zero');\n        _sharesReceived = _depositToYield(_amount, _token, _strategy);\n    }"
}