{
    "Function": "increaseAmount",
    "File": "contracts/VoterProxy.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "SafeERC20",
        "IVoteEscrow",
        "SafeERC20"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [
        "safeApprove",
        "safeApprove"
    ],
    "Low-Level Calls": [],
    "Code": "function increaseAmount(uint256 _value) external returns (bool) {\n        require(msg.sender == depositor, \"!auth\");\n        IERC20(veAsset).safeApprove(escrow, 0);\n        IERC20(veAsset).safeApprove(escrow, _value);\n        IVoteEscrow(escrow).increase_amount(_value);\n        return true;\n    }"
}