ElectrumV2Standard.fromSeed constructor

ElectrumV2Standard.fromSeed(
  1. List<int> seedBytes
)

Factory method to create an instance from a seed.

Implementation

factory ElectrumV2Standard.fromSeed(List<int> seedBytes) {
  final bip = Bip32Slip10Secp256k1.fromSeed(seedBytes);
  return ElectrumV2Standard(bip);
}