{
    "Function": "onDeposit",
    "File": "src/escrows/INVEscrow.sol",
    "Parent Contracts": [],
    "High-Level Calls": [
        "IXINV",
        "IERC20"
    ],
    "Internal Calls": [],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function onDeposit() public {\n        uint invBalance = token.balanceOf(address(this));\n        if(invBalance > 0) {\n            xINV.mint(invBalance); // we do not check return value because we don't want errors to block this call\n        }\n    }"
}