Pages:
Author

Topic: HashEngineering - Android Wallet Creation Service (Read 35879 times)

jr. member
Activity: 257
Merit: 1
Dash coin on my phone it is great   Grin Grin Grin
jr. member
Activity: 257
Merit: 1
How hard is quark?

Are you taking orders? Cost?
copper member
Activity: 297
Merit: 1
From here dont want more this!
check this

https://github.com/mceme/ImageCoin

if interested develop android app, bounty
legendary
Activity: 1848
Merit: 1001
is there any chance the UNO wallet could be sorted out?

it seems to connect but is stuck in june...
sr. member
Activity: 1204
Merit: 253
Please help NewYorkCoin!

bitcoinj library and android wallet needed.

github.com/nycoin/nycoin

nycoin.net
newbie
Activity: 47
Merit: 0
what about an android wallet for USDE Coin be nice just as the relaunch is underway.


https://bitcointalksearch.org/topic/annusdex-unified-society-for-the-next-generation-digital-economy-2064798
sr. member
Activity: 756
Merit: 250
Hey guys.

Unobtanium wallet for Android.

I am trying to restore a backup file with the Unobtanium Wallet which was created by the wallet. When I try to restore, by opening the backup file with the app, I enter my password and get a success screen, but the UNO never appears in my wallet.

Also, when trying to send UNO from the wallet it just doesn't work.

Is there a way to get the private key / decrypt the backup file so that I can sweep the wallet into another wallet?

Please help I'm very concerned.
I understand that this is a difficult task and almost impossible. Each time the administration warns about the safety of their keys, What exactly is the owner for everything in the answer. Therefore, there are practically no methods of restoration.
newbie
Activity: 4
Merit: 0
Seriously though, can someone help me?
newbie
Activity: 4
Merit: 0
Hey guys.

Unobtanium wallet for Android.

I am trying to restore a backup file with the Unobtanium Wallet which was created by the wallet. When I try to restore, by opening the backup file with the app, I enter my password and get a success screen, but the UNO never appears in my wallet.

Also, when trying to send UNO from the wallet it just doesn't work.

Is there a way to get the private key / decrypt the backup file so that I can sweep the wallet into another wallet?

Please help I'm very concerned.

This sounds like this app is not connecting to the UNO network, so it cannot determine your balance.  Sending will not work either if there is no network connection.  Currently my app is connecting to one peer, but it is not syncing the blockchain. 

DECRYPTING YOUR WALLET FILE.

You will need a PC with openssl and git.  And your backup file.  You now have your backup file on your PC. Wallet backups are encrypted. Let's decrypt it using:

   openssl enc -d -aes-256-cbc -a -in unobtanium-wallet-backup-2014-11-01 > unobtanium-wallet-decrypted-backup

It will ask you for a decryption password, which is your backup password. If it prints
"bad password" you've got the wrong password, but if it doesn't print anything your password might
still be wrong. We can only be sure by looking at the decrypted data.

RECOVERING FROM PROTOBUF WALLET FORMAT

We need wallet-tool from bitcoinj. First, in a working directory, let's get bitcoinj:

   git clone -b release-0.12 https://github.com/hashengineering/unobtaniumj.git

Make sure everything is compiled and ready to go by using once:

   cd unobtaniumj/tools
   ./wallet-tool

Now use wallet-tool to sync the wallet from your backup:

   ./wallet-tool reset --wallet=unobtanium-wallet-decrypted-backup
   ./wallet-tool sync --wallet=unobtanium-wallet-decrypted-backup --debuglog

The sync process will take anywhere from a few minutes to hours. Wallet-tool will return to the
shell prompt if its finished synching. Have a look at the wallet:

   ./wallet-tool dump --wallet=/tmp/bitcoin-wallet-decrypted-backup --dump-privkeys

You can skip the sync to the wallet if you don't think you received any coins in new addresses since you made your last backup.

The last command will dump onto the screen all your private keys and your seed (12 word recovery phrase).  The phrase may be able to be used in other unobtainium software that can read BIP32 / BIP39 phrases.

Good Luck.



Alright-- I've got openssl on my PC. When I run the

openssl enc -d -aes-256-cbc -a -in unobtanium-wallet-backup-2014-11-01 > unobtanium-wallet-decrypted-backup

it asks me for my password, as expected. Except when I enter my password it returns a string of bizarre symbols and an error message. The password is apparently wrong. Nonetheless this is the very password that works each time I open the backup file on my Android device with the Unobtanium Wallet. Does the Unobtanium Wallet convert/translate the password I've chosen into something else, something which would yield a success in openssl?

Thanks again
newbie
Activity: 4
Merit: 0
Hey guys.

Unobtanium wallet for Android.

I am trying to restore a backup file with the Unobtanium Wallet which was created by the wallet. When I try to restore, by opening the backup file with the app, I enter my password and get a success screen, but the UNO never appears in my wallet.

Also, when trying to send UNO from the wallet it just doesn't work.

Is there a way to get the private key / decrypt the backup file so that I can sweep the wallet into another wallet?

Please help I'm very concerned.

This sounds like this app is not connecting to the UNO network, so it cannot determine your balance.  Sending will not work either if there is no network connection.  Currently my app is connecting to one peer, but it is not syncing the blockchain. 

DECRYPTING YOUR WALLET FILE.

You will need a PC with openssl and git.  And your backup file.  You now have your backup file on your PC. Wallet backups are encrypted. Let's decrypt it using:

   openssl enc -d -aes-256-cbc -a -in unobtanium-wallet-backup-2014-11-01 > unobtanium-wallet-decrypted-backup

It will ask you for a decryption password, which is your backup password. If it prints
"bad password" you've got the wrong password, but if it doesn't print anything your password might
still be wrong. We can only be sure by looking at the decrypted data.

RECOVERING FROM PROTOBUF WALLET FORMAT

We need wallet-tool from bitcoinj. First, in a working directory, let's get bitcoinj:

   git clone -b release-0.12 https://github.com/hashengineering/unobtaniumj.git

Make sure everything is compiled and ready to go by using once:

   cd unobtaniumj/tools
   ./wallet-tool

Now use wallet-tool to sync the wallet from your backup:

   ./wallet-tool reset --wallet=unobtanium-wallet-decrypted-backup
   ./wallet-tool sync --wallet=unobtanium-wallet-decrypted-backup --debuglog

The sync process will take anywhere from a few minutes to hours. Wallet-tool will return to the
shell prompt if its finished synching. Have a look at the wallet:

   ./wallet-tool dump --wallet=/tmp/bitcoin-wallet-decrypted-backup --dump-privkeys

You can skip the sync to the wallet if you don't think you received any coins in new addresses since you made your last backup.

The last command will dump onto the screen all your private keys and your seed (12 word recovery phrase).  The phrase may be able to be used in other unobtainium software that can read BIP32 / BIP39 phrases.

Good Luck.



Wow, awesome response, thank you!

I don't really follow though (I am new to all this). Are those commands that I enter into openssl? How does the software pull the proper file?

sr. member
Activity: 350
Merit: 250
Independent Cryptoveloper
Hey guys.

Unobtanium wallet for Android.

I am trying to restore a backup file with the Unobtanium Wallet which was created by the wallet. When I try to restore, by opening the backup file with the app, I enter my password and get a success screen, but the UNO never appears in my wallet.

Also, when trying to send UNO from the wallet it just doesn't work.

Is there a way to get the private key / decrypt the backup file so that I can sweep the wallet into another wallet?

Please help I'm very concerned.

This sounds like this app is not connecting to the UNO network, so it cannot determine your balance.  Sending will not work either if there is no network connection.  Currently my app is connecting to one peer, but it is not syncing the blockchain. 

DECRYPTING YOUR WALLET FILE.

You will need a PC with openssl and git.  And your backup file.  You now have your backup file on your PC. Wallet backups are encrypted. Let's decrypt it using:

   openssl enc -d -aes-256-cbc -a -in unobtanium-wallet-backup-2014-11-01 > unobtanium-wallet-decrypted-backup

It will ask you for a decryption password, which is your backup password. If it prints
"bad password" you've got the wrong password, but if it doesn't print anything your password might
still be wrong. We can only be sure by looking at the decrypted data.

RECOVERING FROM PROTOBUF WALLET FORMAT

We need wallet-tool from bitcoinj. First, in a working directory, let's get bitcoinj:

   git clone -b release-0.12 https://github.com/hashengineering/unobtaniumj.git

Make sure everything is compiled and ready to go by using once:

   cd unobtaniumj/tools
   ./wallet-tool

Now use wallet-tool to sync the wallet from your backup:

   ./wallet-tool reset --wallet=unobtanium-wallet-decrypted-backup
   ./wallet-tool sync --wallet=unobtanium-wallet-decrypted-backup --debuglog

The sync process will take anywhere from a few minutes to hours. Wallet-tool will return to the
shell prompt if its finished synching. Have a look at the wallet:

   ./wallet-tool dump --wallet=/tmp/bitcoin-wallet-decrypted-backup --dump-privkeys

You can skip the sync to the wallet if you don't think you received any coins in new addresses since you made your last backup.

The last command will dump onto the screen all your private keys and your seed (12 word recovery phrase).  The phrase may be able to be used in other unobtainium software that can read BIP32 / BIP39 phrases.

Good Luck.

newbie
Activity: 4
Merit: 0
Hey guys.

Unobtanium wallet for Android.

I am trying to restore a backup file with the Unobtanium Wallet which was created by the wallet. When I try to restore, by opening the backup file with the app, I enter my password and get a success screen, but the UNO never appears in my wallet.

Also, when trying to send UNO from the wallet it just doesn't work.

Is there a way to get the private key / decrypt the backup file so that I can sweep the wallet into another wallet?

Please help I'm very concerned.
sr. member
Activity: 350
Merit: 250
Independent Cryptoveloper
We don't do POS coins.  That requires an external server running a special block explorer.  To date none have provided me with a working block explorer to serve that function.

See this:  https://talk.peercoin.net/t/ann-peercoin-android-wallet-3-1-released/2846 - The Peercoin wallet would be the place to start.
newbie
Activity: 47
Merit: 0
hi, maybe you would have some time to fit in android wallet for DMD Diamond Coin, its Groestl Algo proof of stake:

https://bitcointalksearch.org/topic/ann-dmd-diamond-30-scarce-valuable-secure-pos-30-masternodes-65-580725

https://bit.diamonds/

and your groestlcoin app is superb so should be an easy port also their maybe a bounty for this

its a big community.

thank you.
full member
Activity: 266
Merit: 100
Would you be interested in doing knoxcoin (KNX)?  It is full PoS now.

https://bitcointalksearch.org/topic/m.22601626

https://knoxcoin.me

Thanks you
sr. member
Activity: 1204
Merit: 253
NewYorkCoin needs an Android wallet

Scrypt, pow, fair launch 2014. Block explorer, mining pools and github at nycoin.net
sr. member
Activity: 350
Merit: 250
Independent Cryptoveloper

I was thinking about doing primecoin a while back.  It has a different POW than other coins that I have done, and that would be a challenge.

Unfortunately, I don't have time to work on it.
sr. member
Activity: 481
Merit: 252
sr. member
Activity: 350
Merit: 250
Independent Cryptoveloper
TYVM!

I was a bit concerned my phone was more damaged than previously assumed..


next topic - How much would an IXC android wallet cost?

(opinions on IXC welcome)



Our price hasn't change in over 2 years - 1 BTC per wallet.
legendary
Activity: 1848
Merit: 1001
TYVM!

I was a bit concerned my phone was more damaged than previously assumed..


next topic - How much would an IXC android wallet cost?

(opinions on IXC welcome)

Pages:
Jump to: