Skip to main content

Export Key

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

Full Example

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

const port = 8080;
final nodeUri = Platform.isAndroid ? '10.0.2.2:$port' : '0.0.0.0:$port';

Future<void> exportKey(sdk.EcdsaSession session) async {
// Creating a new keyshare for demo purpose. In real application, you can use an existing keyshare.
final keyshare = await session.keygen();

final privateKey = await session.export(keyshare: keyshare);
print('Exported private key: $privateKey');
}
  • The export method takes an argument.
    • keyshare: The client's share of the MPC wallet.
  • privateKeyHex: The expored private key in hex format.