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.

8 lines (7 loc) 281 B
import { IOperator } from "../KeyShares/KeySharesData/IOperator"; import { OperatorData } from "../KeyShares/KeySharesData/OperatorData"; /** * Sort operators input. * @param operators list */ export declare const operatorSortedList: (operators: IOperator[]) => OperatorData[];