CardanoByronLegacy.fromSeed constructor

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

Constructor to create a Cardano Byron Legacy wallet from a seed.

Initializes the wallet's hierarchical deterministic (HD) structure using the provided seed bytes.

Parameters:

  • seedBytes: The seed bytes used for wallet initialization.

Implementation

CardanoByronLegacy.fromSeed(List<int> seedBytes)
    : bip32 = CardanoByronLegacyBip32.fromSeed(seedBytes);