This month's update: changes up to version 0.8.0
WalletIt does not show characters on screen while a user is entering the seed-password.
The solution is unfortunately platform dependent and requires MinGW in case of Windows.
If you cannot compile the wallet anymore, you can switch this feature off - just delete "wallet/hidepass_*.go"
ClientFrom the things that only devels care about, the structure of the code in the "client/" folder has been hugely reworked.
It isn't all-in-one anymore, but contains sub-packages.
As for the useful features, starting from version 0.7.6 there is a new tab on WebUI:
MakeTx.
MakeTx allows the user to select (in a GUI-like matter) the specific outputs that he wants to spend and produces the exact command line that shall be executed.
It creates the "balance/" folder for the wallet, along with "pay_cmd.txt" file containing the command to be executed at the wallet's PC in order to sign the requested tx.
An example screenshot of how the new feature looks in your browser:
http://imgur.com/JyIRZJlFetchBalanceRecently I have also created quite a useful tool that can fetch a balance of your wallet from the popular block explorers.
I tried to use only one of them, but could not find a fully satisfying API and ended up needing both;
blockchain.info &
blockexplorer.comNot every transaction can be recovered this way, but most of them should work. If any transaction cannot be fetched and decoded properly, it will inform you.
I will try to add a proxy support for it later, so you could easily fetch your wallet's balance using Tor.
Using this tool
you do not need an online node anymore; only the small wallet app, and you have a fully functional and secure bitcoin brain/deterministic/cold wallet solution.
It is a single file
tools/fetchbal.go - compile it to an executable, or use "go run" on the source.
Not having the client, you can just use
blockchain.info/pushtx to broadcast the signed transactions coming from the wallet.
If anyone would like to try any of the pieces, but does not want to play with building the s/w himself, I can provide binaries for Windows or Linux.
Also, if you built and tried it on Mac, please let me know whether it works - I am curious to know, but have no apples here.