"offline" blockchain querying library

4

Is there a library which provides all the same address/transaction querying information as blockchain.info, depending only on having a bitcoind synchronised database?

There are a number of queries which bitcoind cannot answer. For example, bitcoind only indexes transactions which are unspent.

I realize blockchain.info has a public API, but it isn't an option for us to use this. I doubt they'd want us to spider the entire blockchain over their API anyway.

IHateBitcoin

Posted 2013-09-04T13:29:01.583

Reputation: 81

Technically, it doesn't any transactions at all. It just maintains a set of unspent transaction outputs. -txindex will make it maintain a full transaction index, but that is still only by txids, and not by address/script.Pieter Wuille 2013-11-03T22:45:40.150

Answers

1

You should take a look at Abe:

Abe: a free block chain browser for Bitcoin-based currencies.

Abe reads the Bitcoin block file, transforms and loads the data into a database, and presents a web interface similar to Bitcoin Block Explorer or Blockchain.io.

Not to mention it was written in Python.

s4w3d0ff

Posted 2013-09-04T13:29:01.583

Reputation: 201

-1

Apparently, you can force bitcoind to index spent transactions. More information here.

John Henry

Posted 2013-09-04T13:29:01.583

Reputation: 1 153

Why the downvotes?John Henry 2015-12-18T17:10:30.123