{
    "Function": "deposit",
    "File": "contracts/mocks/yVault/Strategy.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function deposit() public view {\n        uint256 _token = IERC20(want).balanceOf(address(this));\n        if (_token > 0) {\n            // approve yVaultDAI use DAI\n            // yVault(yVaultDAI).depositAll();\n        }\n    }"
}