16 lines
541 B
TypeScript
16 lines
541 B
TypeScript
/**
|
|
* MPC Service Value Objects
|
|
*
|
|
* Value objects are immutable domain primitives that encapsulate validation rules.
|
|
* They have no identity - equality is based on their values.
|
|
*/
|
|
|
|
export { SessionId } from './session-id.vo';
|
|
export { PartyId } from './party-id.vo';
|
|
export { ShareId } from './share-id.vo';
|
|
export { Threshold } from './threshold.vo';
|
|
export { ShareData } from './share-data.vo';
|
|
export { PublicKey } from './public-key.vo';
|
|
export { Signature } from './signature.vo';
|
|
export { MessageHash } from './message-hash.vo';
|