btcd/blockchain/indexers
Calvin Kim ba5407615d multi: Run gofmt on the entire repository
The doc formatting changes introduced in the recent go version is
increasing the diff for all of the new commits.  Formatting it all in
this commit will help the readability of future PRs by reducing the
diff.
2023-06-21 22:31:09 +09:00
..
addrindex_test.go build: clean linter warnings 2020-05-13 08:58:39 -04:00
addrindex.go blockchain/indexers: add P2TR support to the addrindex 2022-03-15 18:23:37 -07:00
blocklogger.go multi: Run gofmt on the entire repository 2023-06-21 22:31:09 +09:00
cfindex.go multi: Run gofmt on the entire repository 2023-06-21 22:31:09 +09:00
common.go multi: Run gofmt on the entire repository 2023-06-21 22:31:09 +09:00
log.go indexers: Implement optional tx/address indexes. 2016-04-11 17:16:42 -05:00
manager.go multi: Run gofmt on the entire repository 2023-06-21 22:31:09 +09:00
README.md docs: update shields 2021-03-05 07:45:19 -05:00
txindex.go multi: Run gofmt on the entire repository 2023-06-21 22:31:09 +09: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.