Changes between Version 1 and Version 2 of blockchain deterministic wallet api
- Timestamp:
- May 16, 2016, 2:46:37 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
blockchain deterministic wallet api
v1 v2 3 3 Here is recommendations from block chain support: 4 4 5 {{{6 Hi,7 5 8 Generally, there should not be more than 20 unpaid addresses when working with this API. This is because this API leverages BIP 44 (as defined here: https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki ). 6 Hi, 9 7 10 I've created a google doc to help you recover the funds used. You should switch to a new account for this API, and please try to remain under the 20 address gap: https://docs.google.com/document/d/1-2l6xOqcbjs9QWEqSh72RD1d8EEdvG_hQuEXw_f_o6w/edit?usp=sharing 8 Generally, there should not be more than 20 unpaid addresses when working with this API. This is because this API leverages BIP 44 (as defined here: https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki ). 11 9 12 The address indexes you need to recover are: 10 I've created a google doc to help you recover the funds used. You should switch to a new account for this API, and please try to remain under the 20 address gap: https://docs.google.com/document/d/1-2l6xOqcbjs9QWEqSh72RD1d8EEdvG_hQuEXw_f_o6w/edit?usp=sharing 13 11 14 [251] 125fPxLHcEuGZ2wx6gW8dZzMsjuZ2cgW5P balance= 100000 15 [252] 15nb3LBkzzxwDTXmWXv2nJJuZVNR9ZJFrd balance= 100000 12 The address indexes you need to recover are: 16 13 17 Best, 18 Kevin 19 }}} 14 [251] 125fPxLHcEuGZ2wx6gW8dZzMsjuZ2cgW5P balance= 100000 15 [252] 15nb3LBkzzxwDTXmWXv2nJJuZVNR9ZJFrd balance= 100000 16 17 Best, 18 Kevin 19 20 21 advice about possible solution 22 23 Hi, 24 25 I will make a note to update the documentation so it is more clear. 26 27 1) we are working on deploying a fix that will do exactly that - prevent you from going past 20 consecutive empty addresses. This should be released in the coming weeks. 28 29 2) You can check the most recent 20 addresses that you've used for any balance using our addressBalance endpoint (found here: blockchain.info/q ). In regards to creating new xPubs, you can either go through a more manual approach and go into the web wallet, and generate many xPubs to put into your code to cycle through. Or, if you want a more programatic approach, you can look into implementing our wallet module so you can generate new xPubs on the fly: https://github.com/blockchain/service-my-wallet-v3 30 31 Best, 32 Kevin