{
    "Function": "delegate",
    "File": "src/escrows/GovTokenEscrow.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "require(bool)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function delegate(address delegatee) public {\n        require(msg.sender == beneficiary);\n        token.delegate(delegatee);\n    }"
}