Bitcoin Forum

Local => Новички => Topic started by: SergGT001 on August 18, 2017, 09:08:37 AM



Title: Как достать seed из bitcoin wallet 5.28 под андроид?
Post by: SergGT001 on August 18, 2017, 09:08:37 AM
Всем привет! Подскажите как получить seed из кошелька bitcoin wallet 5.28 под андроид?
Есть файл бекапа но как достать seed для получения bcc я не знаю...

Скрин кошелька(не мой)https://xplayon.com/images/softimages/01-2014/Bitcoin-Wallet/Bitcoin-Wallet-1.jpg


Title: Re: Как достать seed из bitcoin wallet 5.28 под андроид?
Post by: SergGT001 on August 18, 2017, 06:14:40 PM
Up


Title: Re: Как достать seed из bitcoin wallet 5.28 под андроид?
Post by: Raccoon Wallbtc on August 21, 2017, 09:42:52 PM
Всем привет! Подскажите как получить seed из кошелька bitcoin wallet 5.28 под андроид?
Есть файл бекапа но как достать seed для получения bcc я не знаю...

Скрин кошелька(не мой)https://xplayon.com/images/softimages/01-2014/Bitcoin-Wallet/Bitcoin-Wallet-1.jpg

Ссылка на скрин не работает, но как правило создание резервной копии кошелька выдает новую секретную фразу,в твоем вопросе просто не понятно какой у тебя кошель,и поддерживает он вообще эту функцию


Title: Re: Как достать seed из bitcoin wallet 5.28 под андроид?
Post by: ReMeChain on September 28, 2017, 06:47:24 AM
Хороший материал


Title: Re: Как достать seed из bitcoin wallet 5.28 под андроид?
Post by: SergGT001 on October 15, 2017, 06:07:35 PM
Всем привет! Подскажите как получить seed из кошелька bitcoin wallet 5.28 под андроид?
Есть файл бекапа но как достать seed для получения bcc я не знаю...

Скрин кошелька(не мой)https://xplayon.com/images/softimages/01-2014/Bitcoin-Wallet/Bitcoin-Wallet-1.jpg

Ссылка на скрин не работает, но как правило создание резервной копии кошелька выдает новую секретную фразу,в твоем вопросе просто не понятно какой у тебя кошель,и поддерживает он вообще эту функцию

Кошелек на андроиде из плей маркета. Такой https://play.google.com/store/apps/details?id=de.schildbach.wallet


Title: Re: Как достать seed из bitcoin wallet 5.28 под андроид?
Post by: fruit on October 16, 2017, 01:58:44 AM

В плеймаркете ссылка есть на джитхаб:
https://play.google.com/store/apps/details?id=de.schildbach.wallet
https://github.com/bitcoin-wallet/bitcoin-wallet

README.recover.md: Document how to dump private keys:
Quote
a block explorer to watch, or just open the destination wallet and watch from there. If your coins
 are confirmed, you're done and you can skip the next paragraph to EPILOGUE.
 
+You can also get a list of the private keys. If your wallet has a spending PIN set you need to decrypt it first, otherwise the private keys won't appear. Note that when you decrypt the wallet *the private keys can be accessed (and your Bitcoins stolen) by anyone with access to the system*, including malware or other users. Unless you fully trust the security of the computer consider running it on an offline system with no network connectivity.
+
+    ./wallet-tool decrypt --wallet=/tmp/bitcoin-wallet-decrypted-backup --password=<PIN>
+
+Then to get the private keys use:
+
+    ./wallet-tool dump --wallet=/tmp/bitcoin-wallet-decrypted-backup --dump-privkeys
+
+Look for `priv WIF=<...>`, where `<...>` will be your private keys in wallet import format. Be careful where you put them, as anybody getting access to them will be able to steal your coins. Consider securely deleting the decrypted wallet once you get your private keys.
 
 ## RECOVERING FROM BASE58 KEY FORMAT
https://github.com/bitcoin-wallet/bitcoin-wallet/commit/42be4a1f34ba041f0e50a5dd96a96cbc536763a7#diff-43edc69f08a41d4a6f9b64c57b97f271 (https://github.com/bitcoin-wallet/bitcoin-wallet/commit/42be4a1f34ba041f0e50a5dd96a96cbc536763a7#diff-43edc69f08a41d4a6f9b64c57b97f271)

Technical details
Quote
FILES

Your wallet contains your private keys and various transaction related metadata. It is stored in app-private storage:

Mainnet: /data/data/de.schildbach.wallet/files/wallet-protobuf
Testnet: /data/data/de.schildbach.wallet_test/files/wallet-protobuf-testnet

The wallet file format is not compatible to wallet.dat (Satoshi client). Rather, it uses a custom protobuf format which should be compatible between clients using bitcoinj.

Certain actions cause automatic rolling backups of your wallet to app-private storage:

Mainnet: /data/data/de.schildbach.wallet/files/key-backup-protobuf
Testnet: /data/data/de.schildbach.wallet_test/files/key-backup-protobuf-testnet

Your wallet can be manually backed up to and restored from external storage:

Mainnet: /sdcard/Download/bitcoin-wallet-backup-<yyyy-MM-dd>
Testnet: /sdcard/Download/bitcoin-wallet-backup-testnet-<yyyy-MM-dd>

If you want to recover coins from manual backups and for whatever reason you cannot use the app itself to restore from the backup, see the separate README.recover.md guide.

The current fee rate for each of the fee categories (economic, normal, priority) is cached in app-private storage:

Mainnet: /data/data/de.schildbach.wallet/files/fees.txt
Testnet: /data/data/de.schildbach.wallet_test/files/fees-testnet.txt
https://github.com/bitcoin-wallet/bitcoin-wallet/tree/master/wallet (https://github.com/bitcoin-wallet/bitcoin-wallet/tree/master/wallet)