summaryrefslogtreecommitdiff
path: root/bip-0032.mediawiki
diff options
context:
space:
mode:
Diffstat (limited to 'bip-0032.mediawiki')
-rw-r--r--bip-0032.mediawiki8
1 files changed, 6 insertions, 2 deletions
diff --git a/bip-0032.mediawiki b/bip-0032.mediawiki
index 504597f..3b70bd6 100644
--- a/bip-0032.mediawiki
+++ b/bip-0032.mediawiki
@@ -15,7 +15,7 @@ RECENT CHANGES:
==Abstract==
-This document describes hierarchical determinstic wallets (or "HD Wallets"): wallets which can be shared partially or entirely with different systems, each with or without the ability to spend coins.
+This document describes hierarchical deterministic wallets (or "HD Wallets"): wallets which can be shared partially or entirely with different systems, each with or without the ability to spend coins.
The specification is intended to set a standard for deterministic wallets that can be interchanged between different clients. Although the wallets described here have many features, not all are required by supporting clients.
@@ -265,7 +265,9 @@ An Objective-C implementation is available at https://github.com/oleganza/CoreBi
A Ruby implementation is available at https://github.com/wink/money-tree
-A Go implementation is available at https://github.com/WeMeetAgain/go-hdwallet
+Two Go implementations exist:
+
+hdkeychain (https://github.com/conformal/btcutil/tree/master/hdkeychain) provides an API for bitcoin hierarchical deterministic extended keys (BIP0032). Go HD Wallet (https://github.com/WeMeetAgain/go-hdwallet).
A JavaScript implementation is available at https://github.com/sarchar/brainwallet.github.com/tree/bip32
@@ -273,6 +275,8 @@ A PHP implemetation is available at https://github.com/Bit-Wasp/bitcoin-lib-php
A C# implementation is available at https://github.com/NicolasDorier/NBitcoin (ExtKey, ExtPubKey)
+A Haskell implementation is available at https://github.com/haskoin/haskoin
+
==Acknowledgements==
* Gregory Maxwell for the original idea of type-2 deterministic wallets, and many discussions about it.