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