]>
Commit | Line | Data |
---|---|---|
ebd8d4e8 IC |
1 | # BIP39 Tool |
2 | ||
3 | A tool for converting BIP39 mnemonic phrases to addresses and private keys. | |
4 | ||
5 | ## Online Version | |
6 | ||
b630f83d | 7 | https://iancoleman.github.io/bip39/ |
ebd8d4e8 IC |
8 | |
9 | ## Standalone offline version | |
10 | ||
11 | Download `bip39-standalone.html` | |
12 | ||
13 | Open the file in a browser by double clicking it. | |
14 | ||
ab78acc6 IC |
15 | This can be compiled from source using the command `python compile.py` |
16 | ||
ebd8d4e8 IC |
17 | ## Usage |
18 | ||
19 | Enter your BIP39 phrase into the 'BIP39 Phrase' field, or press | |
20 | 'Generate Random Phrase' | |
21 | ||
22 | If required, set the derivation path, although the defaults are quite usable. | |
23 | ||
24 | See the table for a list of addresses generated from the phrase. | |
25 | ||
26 | Toggle columns to blank to easily copy/paste a single column of data, eg to | |
27 | import private keys into a wallet or supply someone with a list of addresses. | |
28 | ||
29 | The BIP32 keys can be used at [bip32.org](https://bip32.org) if desired. | |
ab78acc6 IC |
30 | |
31 | ## Making changes | |
32 | ||
33 | Please do not make modifications to `bip39-standalone.html`, since they will | |
34 | be overwritten by `compile.py`. | |
35 | ||
36 | Make changes in `src/*` and apply them using the command `python compile.py` | |
88e2cdaa IC |
37 | |
38 | # Tests | |
39 | ||
40 | Tests depend on [phantomjs](http://phantomjs.org/). | |
41 | ||
42 | Run tests from the command-line | |
43 | ||
44 | ``` | |
45 | $ phantomjs tests.js | |
46 | ``` | |
24ebb699 IC |
47 | |
48 | # License | |
49 | ||
50 | This BIP39 tool is released under the terms of the MIT license. See LICENSE for | |
51 | more information or see https://opensource.org/licenses/MIT. |