{
    "Function": "harvest",
    "File": "contracts/v3/strategies/BaseStrategy.sol",
    "Parent Contracts": [
        "contracts/v3/interfaces/IStrategy.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "_harvest",
        "onlyController"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function harvest(\n        uint256 _estimatedWETH,\n        uint256 _estimatedYAXIS\n    )\n        external\n        override\n        onlyController\n    {\n        _harvest(_estimatedWETH, _estimatedYAXIS);\n    }"
}