interface Key {
    id: string;
    pubKeys: {
        [key: string]: Uint8Array;
    };
    signingThreshold?: Threshold;
    snapshot?: Snapshot;
    state: KeyState;
}

Properties

id: string
pubKeys: {
    [key: string]: Uint8Array;
}

Type declaration

  • [key: string]: Uint8Array
signingThreshold?: Threshold
snapshot?: Snapshot
state: KeyState

Generated using TypeDoc