A bit OT... Anyone know how to export watch-only addresses from Armory, and get them into Blockchain.info or the Bitcoin Wallet Watcher app for Android? With Blockchain.info, I am able to import addresses one at a time, but I don't have a week to spend copy/pasting addresses one-by-one, and can't find a bulk import option, less "Import Backup," which I can't figure out how to paste a load of of watch-only addresses into. I've tried just the address strings, just public keys, and strings with public keys -- pasting any of those into Blockchain.info returns "Cannot Decode Import Data," and the Android app returns "0<=size"
I have not done this myself, but I suspect it may have to do with the formatting of the keys. For one, Armory displays private and public keys with a space between every quad of hex characters, which is done for ease of copying/typing by hand, but not necessarily handled by other applications (actually, it's probably not). Second, for public keys, they are usually serialized slightly differently. Armory displays this:
PublicX : 94bb ad39 3082 eb3d 82c3 2ef5 59d8 9528 a46d f6a5 f711 ea07 36b9 3441 a182 51a5
PublicY : e9c2 ea48 55de 4b62 a19d cc84 8ce7 18a4 0224 797c c6e3 8190 622d d2a9 ebbf 5e8f
But most applications would use the concatenated version with "04" prefix byte (and without the spaces between):
04 94bb ad39 3082 eb3d 82c3 2ef5 59d8 9528 a46d f6a5 f711 ea07 36b9 3441 a182 51a5 e9c2 ea48 55de 4b62 a19d cc84 8ce7 18a4 0224 797c c6e3 8190 622d d2a9 ebbf 5e8f
This wasn't done to be confusing: it was done because this display is much cleaner and I didn't expect anyone to
really use it for anything (and if they did, I expected they might already know what to do with it). But as I write this, I realize I should add a checkbox for "Raw Public Key" which gives you exactly what other apps would expect.