{
    "Function": "formatExecutedCollectInvest",
    "File": "src/gateway/Messages.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "abi.encodePacked()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function formatExecutedCollectInvest(\n        uint64 poolId,\n        bytes16 trancheId,\n        bytes32 investor,\n        uint128 currency,\n        uint128 currencyPayout,\n        uint128 trancheTokensPayout\n    ) internal pure returns (bytes memory) {\n        return abi.encodePacked(\n            uint8(Call.ExecutedCollectInvest),\n            poolId,\n            trancheId,\n            investor,\n            currency,\n            currencyPayout,\n            trancheTokensPayout\n        );\n    }"
}