export method

Future<Uint8List> export({
  1. required SchnorrKeyshare keyshare,
})

Exports a keyshare from the MPC to EdDSA private key. (Only trio)

Implementation

Future<Uint8List> export({
  required schnorr.SchnorrKeyshare keyshare,
}) async {
  await init();
  return _exportSession.export(keyshare: keyshare);
}