Skip to main content

MPC Session API

The EddsaSession 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): EddsaSession

Creates a new ECDSA Session

Parameters

NameTypeDescription
configSessionConfigThe configuration for the session.

Returns

EddsaSession

Methods

import

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

Import private key into MPC (client and server) keyshares

Parameters

NameTypeDescription
privateKeyStringThe hex encoded EDDSA 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 Eddsa keyshare

Returns

Future<Keyshare>

Returns a future that resolves to a Keyshare object.


refresh

Future<Keyshare> refresh(keyshare)

Refreshes an existing Eddsa 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 Eddsa keyshare

Parameters

NameTypeDescription
keyshareKeyshareThe Eddsa 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.