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
Name | Type | Description |
---|---|---|
config | SessionConfig | The configuration for the session. |
Returns
Methods
import
▸ Future
<Keyshare
> import(privateKey
, keyId
, rootChainCode
)
Import private key into MPC (client and server) keyshares
Parameters
Name | Type | Description |
---|---|---|
privateKey | String | The hex encoded EDDSA private key.. |
keyId | String | (Optional) Key ID, unique id for a wallet, 32 byte base64 encoded string. |
rootChainCode | String | (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
Name | Type | Description |
---|---|---|
keyshare | Keyshare | The 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
Name | Type | Description |
---|---|---|
keyshare | Keyshare | The Eddsa keyshare object to sign the message hash. |
messageHash | String | The hex encoded message hash to sign. |
derivationPath | String | (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.