btcd/blockchain/indexers
Olaoluwa Osuntokun caac0f821a
multi: update btcutil imports to point to new sub-module
In this commit, we update all the btcutil imports to point to the new
sub-module.

In the same commit, we also modify the recently added `btcutil/go.mod`
file as we need to continue pointing to the _old_ version of btcd, until
we merge this PR and push a new tag.
2022-01-10 18:44:58 -08:00
..
addrindex.go multi: update btcutil imports to point to new sub-module 2022-01-10 18:44:58 -08:00
addrindex_test.go build: clean linter warnings 2020-05-13 08:58:39 -04:00
blocklogger.go multi: update btcutil imports to point to new sub-module 2022-01-10 18:44:58 -08:00
cfindex.go multi: update btcutil imports to point to new sub-module 2022-01-10 18:44:58 -08:00
common.go multi: update btcutil imports to point to new sub-module 2022-01-10 18:44:58 -08:00
log.go indexers: Implement optional tx/address indexes. 2016-04-11 17:16:42 -05:00
manager.go multi: update btcutil imports to point to new sub-module 2022-01-10 18:44:58 -08:00
README.md docs: update shields 2021-03-05 07:45:19 -05:00
txindex.go multi: update btcutil imports to point to new sub-module 2022-01-10 18:44:58 -08:00

indexers

Build Status ISC License GoDoc

Package indexers implements optional block chain indexes.

These indexes are typically used to enhance the amount of information available via an RPC interface.

Supported Indexers

  • Transaction-by-hash (txbyhashidx) Index
    • Creates a mapping from the hash of each transaction to the block that contains it along with its offset and length within the serialized block
  • Transaction-by-address (txbyaddridx) Index
    • Creates a mapping from every address to all transactions which either credit or debit the address
    • Requires the transaction-by-hash index

Installation

$ go get -u github.com/btcsuite/btcd/blockchain/indexers

License

Package indexers is licensed under the copyfree ISC License.