Query unspent outputs for arbitrary address

6

1

Is there a way to query all unspent outputs for an arbitrary address (which I don't have the private key for), without resorting to a third party service (like Blockchain.info).

bitcoind apparently only lets you do that with addresses that belong to your wallet, even though it internally maintains the list of all unspent transaction outputs.

Flavien

Posted 2013-12-15T13:29:22.853

Reputation: 907

duplicate of Calculating address balance?

Janus Troelsen 2014-03-11T10:15:01.830

Answers

2

They're planning to add 'watch-only addresses' to bitcoind; https://github.com/bitcoin/bitcoin/pull/4045

  • this is already the 4th pull request, they've been working on it for a long time, should be getting into the next version or something I'd guess

once that is in you can get this kind of data out of the basic wallet, until then you'll need to use a blockexplorer or a 'better' wallet (eg Armory) that supports watch-only addresses.

Ruben de Vries

Posted 2013-12-15T13:29:22.853

Reputation: 546