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 (8 loc) 220 B
import { SSVKeysException } from './base'; export class KeySharesAbiDecodeError extends SSVKeysException { public data: any; constructor(data: any, message: string) { super(message); this.data = data; } }