BIP44.fromSeed constructor

BIP44.fromSeed(
  1. String seed, {
  2. int coinType = 0,
})

Implementation

factory BIP44.fromSeed(String seed, {int coinType = 0}) {
  final s = Uint8List.fromList(HEX.decode(seed));
  final node = BIP32.fromSeed(s);
  return BIP44(
    node: node,
    coinType: coinType,
  );
}