recovery method

Future<SchnorrKeyshare> recovery({
  1. required String publicKey,
})

Recover keyshare with public key in hex (only trio)

Implementation

Future<schnorr.SchnorrKeyshare> recovery({required String publicKey}) async {
  await init();
  return _keygenSession.recovery(publicKeyHex: publicKey);
}