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.

15 lines (14 loc) 438 B
import { BaseCommand } from './BaseCommand'; import { KeySharesAction } from './actions/KeySharesAction'; export declare class SSVKeysCommand extends BaseCommand { /** * List of all supported command actions. * @protected */ protected actions: (typeof KeySharesAction)[]; protected useAction: string; /** * Add more specific help. */ constructor(interactive?: boolean, options?: undefined); }