Skip to main content

MPC Session API

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

Import

main.dart
import 'package:silent_shard_sdk/silent_shard_sdk.dart' as sdk;

Constructors

constructor

new EcdsaSession(config): EcdsaSession

Creates a new ECDSA Session

Parameters

NameTypeDescription
configSessionConfigThe configuration for the session.

Returns

EcdsaSession

Methods

import

Future<Keyshare> import(privateKey, keyId, rootChainCode)

Import private key into MPC (client and server) keyshares

Parameters

NameTypeDescription
privateKeyStringThe hex encoded ECDSA private key..
keyIdString(Optional) Key ID, unique id for a wallet, 32 byte base64 encoded string.
rootChainCodeString(Optional) The hex encoded BIP32 root chain code, if you don't have one generate random 32 byte.

Returns

Future<Keyshare>

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

keygen

Future<Keyshare> keygen()

Generates a new Ecdsa keyshare

Returns

Future<Keyshare>

Returns a future that resolves to a Keyshare object.


refresh

Future<Keyshare> refresh(keyshare)

Refreshes an existing Ecdsa keyshare

Parameters

NameTypeDescription
keyshareKeyshareThe existing keyshare object to be refreshed.

Returns

Future<Keyshare>

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

sign

Future<string> sign(keyshare, messageHash, derivationPath)

Signs a message hash with the Ecdsa keyshare

Parameters

NameTypeDescription
keyshareKeyshareThe Ecdsa keyshare object to sign the message hash.
messageHashStringThe hex encoded message hash to sign.
derivationPathString(Optional) The BIP-32 non-hardened derivation path to use for signing msgHash. Defaults to 'm'

Returns

Future<string>

  • Returns a future that resolves to a signature.