ElectrumV1.fromSeed constructor

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

Create an Electrum V1 instance from a seed represented as List<int>.

Implementation

factory ElectrumV1.fromSeed(List<int> seedBytes) {
  return ElectrumV1.fromPrivateKey(seedBytes);
}