Skip to main content

ECDSA MPC Session API

The EcdsaSession class offers APIs that facilitate easy access to Multi-Party Computation (MPC) functionalities.

Import

import { EcdsaSession } from '@silencelaboratories/silent-shard-sdk';

Constructors

constructor

new EcdsaSession(config): EcdsaSession

Creates a new ECDSA Session

Parameters

NameTypeDescription
configSessionConfigThe configuration for the session.

Returns

EcdsaSession

Methods

export

export(config): Promise<string>

Parameters

NameType
configEcdsaExportConfig

Returns

Promise<string>


finishPresign

finishPresign(config): Promise<string>

Parameters

NameType
configEcdsaFinishPreSignConfig

Returns

Promise<string>


import

import(config): Promise<Keyshare>

Import private key into MPC (client and server) keyshares

Parameters

NameTypeDescription
configEcdsaImportConfigThe configuration for the key import.

Returns

Promise<Keyshare>

  • Returns a promise that resolves to a refreshed Keyshare object.

keygen

keygen(): Promise<Keyshare>

Generates a new Ecdsa keyshare

Returns

Promise<Keyshare>

Returns a promise that resolves to a Keyshare object.


preSign

preSign(config): Promise<string>

Compute pre sign with the Ecdsa keyshare

Parameters

NameTypeDescription
configEcdsaPreSignConfigThe configuration for the pre sign.

Returns

Promise<string>

  • Returns a promise that resolves to a computed presign.

recovery

recovery(keysharePublicKey): Promise<Keyshare>

Recover keyshare with public key

Parameters

NameTypeDescription
keysharePublicKeystringPublic in hex format of the existing keyshare object to be recovered.

Returns

Promise<Keyshare>

  • Returns a promise that resolves to a recovered Keyshare object.

refresh

refresh(keyshare): Promise<Keyshare>

Refreshes an existing Ecdsa keyshare

Parameters

NameTypeDescription
keyshareKeyshareThe existing keyshare object to be refreshed.

Returns

Promise<Keyshare>

  • Returns a promise that resolves to a refreshed Keyshare object.

sign

sign(config): Promise<string>

Signs a message hash with the Ecdsa keyshare

Parameters

NameTypeDescription
configEcdsaSignConfigThe configuration for the signing.

Returns

Promise<string>

  • Returns a promise that resolves to a signature.