{
    "Function": "_deposit",
    "File": "contracts/v3/strategies/NativeStrategyCurve3Crv.sol",
    "Parent Contracts": [
        "contracts/v3/strategies/BaseStrategy.sol",
        "contracts/v3/interfaces/IStrategy.sol"
    ],
    "High-Level Calls": [
        "Gauge"
    ],
    "Internal Calls": [
        "balanceOfWant"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _deposit()\n        internal\n        override\n    {\n        uint256 _wantBal = balanceOfWant();\n        if (_wantBal > 0) {\n            // deposit [want] to Gauge\n            gauge.deposit(_wantBal);\n        }\n    }"
}