encodeWithChecksum method
Encodes the provided entropy bytes into a Monero mnemonic with a checksum.
This method uses the checksum encoder to generate a Monero mnemonic with an included checksum for error detection and correction.
entropyBytes
: The entropy bytes to encode.
Implementation
Mnemonic encodeWithChecksum(List<int> entropyBytes) {
return withChecksumEncoder.encode(entropyBytes);
}