{
    "Function": "vote",
    "File": "contracts/contracts/Voter.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IVotingEscrow"
    ],
    "Internal Calls": [
        "_vote",
        "require(bool)",
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function vote(uint tokenId, address[] calldata _poolVote, uint256[] calldata _weights) external {\n        require(IVotingEscrow(_ve).isApprovedOrOwner(msg.sender, tokenId));\n        require(_poolVote.length == _weights.length);\n        _vote(tokenId, _poolVote, _weights);\n    }"
}