Can I sign a message from withing the bitcore mobile android app? I dont find such an option.
If no, how can I import my mobile wallet in the desktop windows app? I dont find any option to "import" on my Desktop PC the backup of my mobile wallet. I want to apply for the next airdrop with the new rules but cant.
Hi,
I have same issue with my Old BTX wallet for android ;(
LITTLE TUTORIAL HOW TO PULL OUT PRIVATE KEYS FROM BTX WALLET FOR ANDROID 0.14.1.6
This tutorial is based on
https://github.com/LIMXTEC/bitcore-wallet/tree/master/walletWe need any Linux distribution, but I suggest to use Ubuntu
Backup your BTX android wallet and copy to your Linux distro because We need to use linux command line
1. Install additional pakeges:
sudo apt install android-tools-adb openssl git openjdk-8-jdk maven
2. Install wallet decryption tool:
git clone -b release-0.14
https://github.com/bitcoinj/bitcoinj.git cd bitcoinj/tools
./wallet-tool
Copy your BTX android wallet backup file to bitcoinj/tools direcroty
For example /home/$USER/bitcoinj/tools
$USER - is your user name
3. Wallet backups are encrypted. You need to decrypt it using:
openssl enc -d -aes-256-cbc -md md5 -a -in bitcore-wallet-backup > btx-wallet-decrypted.txt
cat btx-wallet-decrypted.txt | tr -cd "[:print:]" | awk '{print $1}'
If it prints "org.bitcoi[Suspicious link removed]oduction", you got the right password and the backup file uses the bitcoinj protobuf format
If it prints just a hash sign (#), you got the right password and the backup file uses the old text based private key format.
4. Decrypt and dump priv keys:
./wallet-tool decrypt --wallet=btx-wallet-decrypted.txt --password=YORWALLETPASSWORD
./wallet-tool dump --wallet=btx-wallet-decrypted.txt --password=YORWALLETPASSWORD --dump-privkeys > btx_dumped_keys.txt
5. YOUR PRIV KEYS:
cat btx_dumped_keys.txt
You will see yours priv keys
))
If this information is useful for you can do little donation
BTX: 1KmKhW6BdtbABCzpH82RF3ywv654TPdbqt
DOGGE: DNLGRhGPAt4gfuZ9wk2BGojT7U93daT6G2
You can contact me in Telegram:
https://t.me/CryptoMan69