derivePublicKeyETH function

Uint8List derivePublicKeyETH(
  1. Uint8List seed,
  2. String path
)

Implementation

Uint8List derivePublicKeyETH(Uint8List seed, String path) {
  final node = bip32.BIP32.fromSeed(seed);

  final bip32.BIP32 childNode = node.derivePath(path);
  return childNode.publicKeyUncompressed;
}