{
    "Function": "computeSignatoryRecordHash",
    "File": "src/contracts/libraries/MiddlewareUtils.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)",
        "abi.encodePacked()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function computeSignatoryRecordHash(\n        uint32 globalDataStoreId,\n        bytes32[] memory nonSignerPubkeyHashes,\n        uint256 signedStakeFirstQuorum,\n        uint256 signedStakeSecondQuorum\n    ) internal pure returns (bytes32) {\n        return keccak256(\n            abi.encodePacked(globalDataStoreId, nonSignerPubkeyHashes, signedStakeFirstQuorum, signedStakeSecondQuorum)\n        );\n    }"
}