fromEntropyWithChecksum method

Mnemonic fromEntropyWithChecksum(
  1. List<int> entropyBytes
)

Generates a Monero mnemonic from entropy with a checksum.

This method generates a Monero mnemonic from the provided entropy bytes with an included checksum for enhanced error detection and correction.

entropyBytes: The entropy bytes to encode.

Implementation

Mnemonic fromEntropyWithChecksum(List<int> entropyBytes) {
  return encoder.encodeWithChecksum(entropyBytes);
}