It was nice talking with you the other day. :)
The main problem I see here is that we have a standardized wordlist, it's defined in each SDK, here is pythons.
I don't see any specific mnemonic examples in the developer docs, but it's used in these examples: https://developer.algorand.org/docs/features/accounts/create/#recover-wallet-and-regenerate-account
You can also generate an account using the algokey
utility which is part of the node software.
mnemonic.to_private_key(passphrase) always gives the same error #232
Bug Report.
Python code:
Error
It does not matter what words are chosen, the error is the same. From the traceback it seems to fail on the last word every time:
m_checksum = word_to_index[mnemonic[-1]]
.Surely I must be doing something wrong. It should not fail out of the box.