derivePrivateKeyETH function

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

Implementation

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

  final bip32.BIP32 childNode = node.derivePath(
    path,
  );
  return childNode.privateKey!;
}