encode method

  1. @override
Mnemonic encode(
  1. List<int> entropyBytes
)
override

Encodes the provided entropy bytes into a Monero mnemonic without a checksum.

This method encodes the given entropy bytes into a Monero mnemonic without including a checksum. The resulting mnemonic may be less error-tolerant and should be handled with caution. s entropyBytes: The entropy bytes to encode.

Implementation

@override
Mnemonic encode(List<int> entropyBytes) {
  return Mnemonic.fromList(_encodeToList(entropyBytes));
}