{
    "Function": "pay",
    "File": "src/escrows/GovTokenEscrow.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IERC20"
    ],
    "Internal Calls": [
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function pay(address recipient, uint amount) public {\n        require(msg.sender == market, \"ONLY MARKET\");\n        token.transfer(recipient, amount);\n    }"
}