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, ); }