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) • 406 B
TypeScript
import { BaseAction } from './BaseAction';
/**
* Command to build keyshares from user input.
*/
export declare class KeySharesAction extends BaseAction {
static get options(): any;
execute(): Promise<string>;
private validateKeystoreArguments;
private processKeystorePath;
private validateKeystoreFiles;
private getOperators;
private processFile;
private saveKeyShares;
}