deriveNode function

BipNode deriveNode(
  1. Uint8List seed,
  2. String path
)

Implementation

BipNode deriveNode(Uint8List seed, String path) {
  final node = bip32.BIP32.fromSeed(seed);
  return node.derivePath(path);
}