{
    "Function": "voteGaugeWeight",
    "File": "contracts/VoterProxy.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IVoting",
        "IVoting"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function voteGaugeWeight(address[] calldata _tokenVote, uint256[] calldata _weight)\n        external\n        returns (bool)\n    {\n        require(msg.sender == operator, \"!auth\");\n\n        if (escrowModle == IVoteEscrow.EscrowModle.PICKLE) {\n            //vote\n            IVoting(gaugeProxy).vote(_tokenVote, _weight);\n        } else {\n            for (uint256 i = 0; i < _tokenVote.length; i++) {\n                IVoting(gaugeProxy).vote_for_gauge_weights(_tokenVote[i], _weight[i]);\n            }\n        }\n        return true;\n    }"
}