CardanoByronLegacy.fromSeed constructor

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

CardanoByronLegacy 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

/// 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.
CardanoByronLegacy.fromSeed(List<int> seedBytes)
    : bip32 = CardanoByronLegacyBip32.fromSeed(seedBytes);