Skip to main content

Import Key

Please refer to the Session creation section to learn how to create a new session.

Import key allows to transit from an EOA wallet to an MPC wallet. This is a common use case in the digital wallet ecosystem where a wallet provider wants to onboard existing users from other wallets.

note

Although converting an EOA wallet to an MPC wallet increases security, it's important to note that the original private key still exists in full form. Therefore, we cannot provide the same level of security guarantees as with a natively generated MPC wallet, where the full private key is never assembled.

Full example:

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

Future<void> importKey(
sdk.EcdsaSession session,
String privateKey, // PRIVATE_KEY_YOU_WANT_TO_IMPORT_IN_HEX
) async {
final keyshare = await session.import(privateKey: privateKey);
print('Imported keyshare ${keyshare.publicKeyHex}');
}
  • The import method takes an argument.
    • privateKey: This is the private key to be imported. It's a 32 bytes hex string.
  • Import the private key and create a new keyshare using the session.import() method.

You have now successfully imported an existing private key into an MPC wallet! 🎉