fromEntropyNoChecksum method

Mnemonic fromEntropyNoChecksum(
  1. List<int> entropyBytes
)

Generates a Monero mnemonic from entropy without a checksum.

This method generates a Monero mnemonic from the provided entropy bytes without including a checksum.

entropyBytes: The entropy bytes to encode.

Implementation

Mnemonic fromEntropyNoChecksum(List<int> entropyBytes) {
  return encoder.encodeNoChecksum(entropyBytes);
}