A simple command line tool that exports the private Keys from a Multibit wallet file. The reason this tool exists is because Multibit is out of date and has known bugs. Exporting the private keys or wallet words from Multibit and importing them into another wallet may be the only effective way to access your funds.
- Install node version 6 or higher. You can get it from https://nodejs.org/en/download/.
- Open a command prompt and install this utility:
npm install -g mbexport
Now you are ready to export the private keys from your wallet.
| Version | Wallet file location |
|---|---|
| Multibit Classic | ~/Library/Application Support/MultiBit/*.wallet |
| MultibitHD | ~/Library/Application Support/MultiBitHD/<wallet-id>/mbhd.wallet.aes |
| Version | Wallet file location |
|---|---|
| Multibit Classic | C:\Users\<username>\AppData\Roaming\MultiBit\<wallet-name>.wallet |
| MultibitHD | C:\Users\<username>\AppData\Roaming\MultiBitHD\<wallet-id>\mbhd.wallet.aes |
<wallet-id> is a very long, random directory name that acts as a globally unique identifier for a wallet. It is starts with mbhd- followed by a long string of letters, numbers and dashes. You will have one directory like this for each wallet.
<wallet-name> is the name that you gave the wallet when you created it. You will have a ``.wallet file for each wallet.
<username> is your windows user name.
Once you figure out the name and location of your wallet file, you can export the keys.
Open a command prompt and type the following command:
mbexport <path-to-wallet-file>
For example, if you are using Multibit HD on MacOS, you would type something like:
mbexport ~/Library/Application\ Support/MultiBitHD/mbhd-aff7bb4a-8a5d9101-e7e97974-f999c7fb-53795c76/mbhd.wallet.aes
TIP: If you can find the wallet file in the file explorer application, you can type mbexport in the command prompt, then drag the file from explorer to the command prompt. It should fill in the long file name for you.
When you run mbexport, it will ask you to enter the passphrase for your wallet. Once you do will list any private keys and mnemonic seeds that it finds in the file. If you run mbexport on a Multibit Classic file, the output will look simliar to this:
multibit classic wallet opened Enter your passphrase: *** L5PUQVHfdaHmV8z4u4572ATv2EUiLhZDnMrp5QUBCqiMzJxr5gYL For Multibit HD, it will look like:
MultibitHD wallet opened Enter your passphrase: *** measure swim globe radio reunion awful reflect tail produce treat cluster spot Details coming soon
Details coming soon
Details coming soon
This tool and these instructions are distributed under the MIT License Copyright (c) 2017 Ken Heutmaker Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.