Author

Topic: Get unspent outputs for given address? (Read 2795 times)

legendary
Activity: 1526
Merit: 1129
January 07, 2014, 06:11:29 AM
#5
Someone seems to be tackling the first parts of that - look for the threads by drvillo on the mailing list. Once he has made the simple change suggested there, the FullPrunedBlockStore will receive full blocks whilst the chain is being downloaded (as well as the utxo deltas). You can then insert the contents of the blocks into SQL tables in the manner that any database app would, it's not very complicated. There's a ton of interest in this feature so I'm sure it'll be implemented by someone soon.
newbie
Activity: 56
Merit: 0
January 07, 2014, 02:44:40 AM
#4
I've been wanting the same information without the full block chain in a decentralized manner.  AFAIK, SPV does work to get this information since its not in the headers.

I've been looking into getting the information from Electrum servers (see https://github.com/spesmilo/electrum/blob/master/lib/wallet.py#L1023).  My lack of Python knowledge has been holding me back a little on extracting what i need.  But it is a way to get the information without a single point of failure.

Feel free to write up a nice implementation in Java for me. Smiley
legendary
Activity: 1001
Merit: 1003
October 21, 2013, 05:39:01 AM
#3
Hi Mike,

Thanks for the reply. I will try to do as you suggested. From your post, I take it that full verification mode is necessary to do what I want.
legendary
Activity: 1526
Merit: 1129
October 08, 2013, 10:50:36 AM
#2
I don't have any plans to implement that.

If you wanted to implement it, you'd do so by adding code to FullPrunedBlockStore. Unlike most block stores it's based on a full-blown embedded SQL database, which means it's very slow, but you can fairly easily add new tables and extend the queries as necessary. I haven't tried it, but I don't think it would be very difficult to do. If you implement this please consider submitting a patch for it.

However, do be aware that bitcoinj full verification mode is not designed for speed, at all. If you care about performance it would be better to extend bitcoind to support this using an additional LevelDB.

If you want this to make a web hosted wallet though, I'd suggest to think carefully about whether you really want to do that. It's a very painful endeavour.
legendary
Activity: 1001
Merit: 1003
October 08, 2013, 06:13:40 AM
#1
Hi Mike,

Any plans to add feature to get list of unspent outputs for a given address? (Address is not in wallet). Technically this information should be there in every client. Even bitcoind currently does not allow such a query though, so if you implement it, bitcoinj will be "ahead" of bitcoind... Cheesy

How hard is this to add? Perhaps you can give me pointers to which files to look at.
Jump to: