{
    "Function": "harvest",
    "File": "contracts/v3/Harvester.sol",
    "Parent Contracts": [
        "contracts/v3/interfaces/IHarvester.sol"
    ],
    "High-Level Calls": [
        "IController"
    ],
    "Internal Calls": [
        "onlyHarvester"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function harvest(\n        IController _controller,\n        address _strategy,\n        uint256 _estimatedWETH,\n        uint256 _estimatedYAXIS\n    )\n        public\n        onlyHarvester\n    {\n        _controller.harvestStrategy(_strategy, _estimatedWETH, _estimatedYAXIS);\n        emit Harvest(address(_controller), _strategy);\n    }"
}