UNPKG

ssv-keys

Version:

Tool for splitting a validator key into a predefined threshold of shares via Shamir-Secret-Sharing (SSS), and encrypt them with a set of operator keys.

10 lines (9 loc) 334 B
import { SSVKeysException } from './base'; export declare class BLSDeserializeError extends SSVKeysException { publicKey: string; constructor(publicKey: string, message: string); } export declare class SingleSharesSignatureInvalid extends SSVKeysException { data: string; constructor(data: string, message: string); }