我们很好奇有多少完整的bip32标准实现。
bip32高清钱包
分享
改进这个问题
跟随
2014年8月22日23:05问
选通器
4111青铜徽章
分层确定性钱包(BIP32)状态的可能重复–Jonathan Cross 2月15日3:03
添加评论
4个答案
1
我知道这三个:
gemapi允许钱包使用BIP32兼容的API制作。
还有使用BIP32 Multisig钱包的BitGo服务。
BitStash硬件钱包也符合BIP 32标准。
分享
改进这个答案
跟随
回复时间:2014年10月27日23:56
莫尔斯编码器
13.3k22金徽章3636银徽章8585铜徽章
添加评论
1
bip32文档中有一个实现列表:
存在两种Python实现:
皮科因(https://github.com/richardkiss/pycoin)是一套用于处理比特币的实用程序,包括BIP0032钱包功能。双32utils(https://github.com/jmcorgan/bip32utils)是一个专门针对BIP0032钱包和脚本的库和命令行界面。
Java实现在https://github.com/bitsofproof/supernode/blob/1.1/api/src/main/java/com/bitsofproof/supernode/api/ExtendedKey.java
在C++中实现了一个C++实现。https://github.com/CodeShark/CoinClasses/tree/master/tests/hdwallets
Objective-C实现可在https://github.com/oleganza/CoreBitcoin/blob/master/CoreBitcoin/BTCKeychain.h
Ruby实现可以在https://github.com/GemHQ/money-tree
存在两种Go实现:
HDK钥匙链(https://github.com/conformal/btcutil/tree/master/hdkeychain)提供比特币分层确定性扩展密钥(BIP0032)的API。Go HD钱包(https://github.com/WeMeetAgain/go-hdwallet).
存在两种JavaScript实现:在https://github.com/sarchar/brainwallet.github.com/tree/bip32 以及https://github.com/bitpay/bitcore
PHP实现可在https://github.com/Bit-Wasp/bitcoin-lib-php
C#实现可在https://github.com/NicolasDorier/NBitcoin (ExtKey,ExtPubKey)
Haskell实现可在https://github.com/haskoin/haskoin 以及位于https://github.com/np/hx
你应该检查文件,而不是依赖于我的副本,虽然,因为我的副本将过时的时间
分享
改进这个答案
跟随
6月20日15点23分回答
穆尔豪森
163311金徽章1313银徽章3030铜徽章
添加评论
0
我知道android上的Wallet32与trezor兼容,它们都使用BIP32。暗瓦莱是另一个连同银合欢。军械库是另一个。GreenAddress.it。我只知道这些。
蟒蛇
皮科因(https://github.com/richardkiss/pycoin)是一套用于处理比特币的实用程序,包括BIP0032钱包功能。
双32utils(https://pypi.org/project/bip32utils/)是一个专门针对BIP0032钱包和脚本的库和命令行界面。
btc\ U hd\ U钱包(https://github.com/scgbckbone/btc-hd-wallet)易于使用的python高清(纸质)钱包实现。
Java
https://github.com/bitsofproof/supernode/blob/1.1/api/src/main/java/com/bitsofproof/supernode/api/ExtendedKey.java
https://github.com/bushidowallet/bushido-java-core/tree/master/src/main/java/com/bushidowallet/core/bitcoin/bip32
C++
https://github.com/ciphrex/mSIGNA/blob/master/deps/CoinCore/src/hdkeys.h
目标-C
https://github.com/oleganza/CoreBitcoin/blob/master/CoreBitcoin/BTCKeychain.h
红宝石
https://github.com/GemHQ/money-tree
去吧
HDK钥匙链(https://github.com/conformal/btcutil/tree/master/hdkeychain)提供比特币分层确定性扩展密钥(BIP0032)的API。
Go HD钱包(https://github.com/WeMeetAgain/go-hdwallet).
JavaScript语言
https://github.com/sarchar/brainwallet.github.com/tree/bip32
https://github.com/bitpay/bitcore
菲律宾比索
https://github.com/Bit-Wasp/bitcoin-lib-php
C级#
https://github.com/MetacoSA/NBitcoin (ExtKey,ExtPubKey)
哈斯克尔
https://github.com/haskoin/haskoin 以及位于https://github.com/np/hx
分享
改进这个答案
跟随
3小时前回答的
社区wiki
用户2084795
它最初是从BIP中获取的,3小时前在github.com/bitcoin/bips/pull/962–user2084795中删除了它