iancoleman

Results 38 issues of iancoleman

See https://github.com/iancoleman/bip39/issues/257#issuecomment-433740985 > many popular wallets want you to back up your recovery seed using BIP39 mnemonics. If you can convert that string back into a 32 byte hex value,...

if you try to put a 1-of-2 it says "Required must be at least 1" (should say "at least 2")

Changing the number of bits (see #2) breaks previous implementations. But there is nowhere in the specification that indicates what this value should be set to. So it's not a...

Add a field for bip39 mnemonic, which automatically converts the mnemonic to entropy and fills the master secret. Likewise when combining use the master secret to generate and display a...

Add a list of alternative slip39 implementations, eg python-shamir-mnemonic

Some more info about what the tool does, how it works (eg secure random), etc would be handy to include.

There's a try/catch when recovering shares. It would be good to make the error messages more useful to the user than the default error messages; the default messages are useful...

Should be able to do up to 16 groups. Currently limited to 10, could be 14 but 10 is a round number. See https://github.com/ilap/slip39-js/pull/12

Currently the only available scheme of groups and members is N groups with 1-of-1 members in each group. Would be good to support more complex groups such as [[1,1], [2,3],...

Compatibility between bls12-381 libraries might be useful. For example, etherum2, zcash, chia.net, algorand, dfinity are all using or plan to use bls12-381. There's a simple single-key signature verification in [this...