fromEntropyWithChecksum method

Mnemonic fromEntropyWithChecksum(
  1. List<int> entropyBytes
)

Generates a Monero mnemonic from entropy with a checksum.

-entropyBytes: The entropy bytes to encode.

Implementation

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