encodeNoChecksum method
Encodes the provided entropy bytes into a Monero mnemonic without a checksum.
This method uses the no-checksum encoder to generate a Monero mnemonic without including a checksum.
entropyBytes
: The entropy bytes to encode.
Implementation
Mnemonic encodeNoChecksum(List<int> entropyBytes) {
return nochecksumEncoder.encode(entropyBytes);
}