encodeWithChecksum method

Mnemonic encodeWithChecksum(
  1. List<int> entropyBytes
)

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

-entropyBytes: The entropy bytes to encode.

Implementation

Mnemonic encodeWithChecksum(List<int> entropyBytes) {
  return withChecksumEncoder.encode(entropyBytes);
}