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