-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
/**
* Returns the hex representation of the serialized output bytes.
*
* @param output The output.
* @returns The hex representation of the serialized output bytes.
*/
static outputHexBytes(output: Output): HexEncodedString {
const hexBytes = callUtilsMethod({
name: 'outputHexBytes',
data: {
output,
},
});
return hexBytes;
}