{
    "Function": "increaseInvestOrder",
    "File": "src/gateway/Gateway.sol",
    "Parent Contracts": [
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "Messages",
        "RouterLike"
    ],
    "Internal Calls": [
        "pauseable",
        "onlyInvestmentManager",
        "_addressToBytes32"
    ],
    "Library Calls": [
        "formatIncreaseInvestOrder"
    ],
    "Low-Level Calls": [],
    "Code": "function increaseInvestOrder(\n        uint64 poolId,\n        bytes16 trancheId,\n        address investor,\n        uint128 currency,\n        uint128 currencyAmount\n    ) public onlyInvestmentManager pauseable {\n        outgoingRouter.send(\n            Messages.formatIncreaseInvestOrder(poolId, trancheId, _addressToBytes32(investor), currency, currencyAmount)\n        );\n    }"
}