deriveChildPublicKeyData method
- String derivationPath
Get keyshare derived child public key in bytes.
Implementation
Uint8List deriveChildPublicKeyData(String derivationPath) {
final derivationBuf =
utils.allocateTssBufferFromBytes(utf8.encode(derivationPath));
return utils.toBytesUnsafe(ctss_wrapper.dklsKeyshareDeriveChildPublicKey(
handle.ref, derivationBuf));
}