iancoleman / bip39

A web tool for converting BIP39 mnemonic codes
https://iancoleman.io/bip39/
MIT License
3.45k stars 1.43k forks source link

BIP39 Mnemonic #383

Closed ARTEMKA-STOM closed 4 years ago

ARTEMKA-STOM commented 4 years ago

why at input of the phrase bip39 Mnemonic on the index conceived by me;(355 26 476 43 745 374 1 686 34 132 602 45 clump add derivative aim fringe concert abandon fiber aerobic away enroll airport)- iancoleman.io/bip39 / changes the index of words to 1 digit of the table(https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt#L40) I need precisely on this index introduce words but site changes significance index ян1 ян2 ян3

iancoleman commented 4 years ago

The wordlist indexes are between 0 to 2047 (in binary 00000000000 to 11111111111)

The list on github is displayed with line numbers, ie 1 to 2048. Note that 2048 is 12 bits long, ie 100000000000 whereas bip39 uses only up to 11 bits.

This is standard zero based numbering.