How can I generate wallet files for multibit or armory?

4

I'm considering working on a bitcoin project that will need to generate wallet files. I'm not looking to create receipt addresses that a customer can send funds to for an existing wallet. Instead, I need to generate numerous wallet files, each with preferably only 1 payment address, that can be distributed across multiple locations.

Can this easily be done from a daemon command or with an existing API? If there is an API for this, any language is fine, though I would prefer Python.

RLH

Posted 2013-02-04T21:14:20.193

Reputation: 2 062

1

Related: pywallet

Nick ODell 2013-02-04T22:38:15.253

Thanks Nick ODell. Post an answer and I'll give you a +1.RLH 2013-02-05T12:08:15.110

Answers

5

For MultiBit you could use the command line utility called WalletTool that Mike Hearn wrote. You can use it to create bitcoinj wallets (which is what MultiBit uses). There is a description of it here: https://bitcointalk.org/index.php?topic=43616.msg1451177#msg1451177

You could wrap calls to it in your favourite scripting tool fairly easily I imagine.

jim618

Posted 2013-02-04T21:14:20.193

Reputation: 3 205

And what about armory?? Also I can't even find WalletTool... link?B T 2013-05-26T17:19:30.383

3

You can try this utility called pywallet. You don't need to run pywallet from the command line though - just put it in the same directory, do import pywallet, and you can use any of the functions in there. You should try running it from the command line first though, because it'll show you any missing dependencies.

Functions you might find interesting:

Nick ODell

Posted 2013-02-04T21:14:20.193

Reputation: 26 536