Difference between revisions of "Wallet"

From Bitcoin Wiki
Jump to: navigation, search
m (Armory: dead link fix)
Line 28: Line 28:
  
 
Blockchain.info use a plain text JSON wallet format documented [https://blockchain.info/wallet/wallet-format here]. Private keys Keys are stored in base58.
 
Blockchain.info use a plain text JSON wallet format documented [https://blockchain.info/wallet/wallet-format here]. Private keys Keys are stored in base58.
 +
 +
=== Coinkite ===
 +
 +
[https://coinkite.com/promo/wiki Coinkite] is the only web wallet using [https://en.bitcoin.it/wiki/BIP_0032 "HD Wallet (BIP32)"] technology, which can be shared partially or entirely with different systems, each with or without the ability to spend coins  [https://coinkite.com/faq here]. Private keys Keys are sent to you encrypted with AES-256-CBC.
  
 
=== Multibit ===
 
=== Multibit ===

Revision as of 06:38, 18 November 2013

A Bitcoin wallet is a file that contains a collection of private keys.

Bitcoin Qt

The original Bitcoin client wallet file is named wallet.dat and contains[1]:

  • keypairs for each of your addresses
  • transactions done from/to your addresses
  • user preferences
  • default key
  • reserve keys
  • accounts
  • a version number
  • Key pool
  • Since 0.3.21: information about the current best chain, to be able to rescan automatically when restoring from a backup.

The data file for the wallet is wallet.dat and is located in the Bitcoin data directory.

It is intended that a wallet be used on only one installation of Bitcoin at a time. Attempting to clone a wallet for use on multiple computers will result in "weird behavior"[2].

The format of this file is Berkeley DB. Tools that can manipulate wallet files include pywallet.

Armory

The Armory client uses a custom binary wallet format.

Blockchain.info

Blockchain.info use a plain text JSON wallet format documented here. Private keys Keys are stored in base58.

Coinkite

Coinkite is the only web wallet using "HD Wallet (BIP32)" technology, which can be shared partially or entirely with different systems, each with or without the ability to spend coins here. Private keys Keys are sent to you encrypted with AES-256-CBC.

Multibit

Multibit uses the bitcoinj protobuf wallet file.

Bitcoin Wallet

Bitcoin Wallet uses the bitcoinj protobuf format for its wallet file. However, due to Android isolation of applications, it is impossible to access the wallet file as a non-root user.

See Also

References