npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mbexport

v0.0.7

Published

A utility that exports the private keys or wallet words from Multibit wallet files

Downloads

114

Readme

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.

Installation

  1. Install node version 6 or higher. You can get it from https://nodejs.org/en/download/.
  2. Open a command prompt and install this utility: npm install -g mbexport

Now you are ready to export the private keys from your wallet.

Locating your wallet file

Mac OS

| Version | Wallet file location | |---|---| | Multibit Classic | ~/Library/Application Support/MultiBit/*.wallet | | MultibitHD | ~/Library/Application Support/MultiBitHD/<wallet-id>/mbhd.wallet.aes |

Windows

| 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.

Exporting Your 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

Multibit (Classic)

Importing to Electrum

Details coming soon

MultibitHD

Importing to Electrum

Details coming soon

Importing to Bread Wallet

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.