-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
/**
* Compute the milestone ID (Blake2b256 hash of the milestone essence) of a milestone payload.
*
* @param payload A milestone payload.
* @returns The milestone ID.
*/
static milestoneId(payload: MilestonePayload): MilestoneId {
return callUtilsMethod({
name: 'milestoneId',
data: {
payload,
},
});
}