I hope this is not too off-topic.
When doing data analysis on the blockchain, I have to deal with a lot of addresses. Trying to remember and discern them gives me headaches. I tried to offer a solution here:
I need your feedback on this.
There is also an issue with my proposal: the first word of most mnemonics start with the letter ‘a’, which kind of defeats the purpose. This is not due to an error, 20 byte addresses fall into a range where the base conversion results in this accumulation for the first word. I have a few solutions in mind, but first would like to hear your opinion.
I quite like it actually! I really think a different set of words than BIP39 would be required. I cringe thinking about someone inadvertently copy/pasting their seed. I know you design it against that, but it WILL happen lol. At least an input field can reject the word list as invalid (although sizes do the same thing)
If you do three words (like status does when verifying Transactions) you could probably stick that checksum word at the end, and it would enough entropy to be hard to spoof
Oh right, we do need to use a different word set if there is to be an app that takes phrases as input.
My main purpose was to increase readability. If people use this as a way of sharing public keys, e.g. on the phone, we have to make sure they don’t share seeds. I’m open to suggestions.
The proposal doesn’t have checksums. Do you mean computing the checksum of an entire phrase, and appending it at the end of its truncated version? Sounds interesting, is this to decrease the risk of collision?
Decreases the risk of collision, but first and foremost protects against the user making a mistake flopping a word or using the wrong one. Capital and lowercase letters in hex addresses are used to to track the checksum of the address for this purpose.
@fubuloubu I created an alternative word list that can be used for public stuff. I gleaned the most commonly used English words online, and tried to find ones that aren’t used in BIP39.
It would be great if you could check whether there are words that shouldn’t be there and/or propose alternatives.
BIP39 has some extra stuff I think to make sure all words have at least the first 4 letters unique, so that you can type in and suggest the word after 3 letters, and that any 4 letter combo is enough to get the whole word.