Fork of Trezor Blockbook.
 
 
 
 
 
 
Go to file
Martin Boehm efca04a3fb Correctly count unconfirmed txs in api GetXpub 2019-03-06 18:48:15 +01:00
api Correctly count unconfirmed txs in api GetXpub 2019-03-06 18:48:15 +01:00
bchain Resolve some linting issues 2019-03-06 17:50:20 +01:00
build Add Bellcoin (#116) 2019-03-04 22:29:30 +01:00
common Fix coding style and formatting issues 2019-01-24 15:24:56 +01:00
configs Add Bellcoin (#116) 2019-03-04 22:29:30 +01:00
contrib/scripts Fix backend deploy and test script 2019-03-01 13:59:06 +01:00
db Ensure ordering of address and xpub txs in the same block 2019-03-05 13:48:11 +01:00
docs Add Bellcoin (#116) 2019-03-04 22:29:30 +01:00
server Add getTransactionSpecific to websocket interface 2019-03-01 15:37:38 +01:00
static Add getTransactionSpecific to websocket interface 2019-03-01 15:37:38 +01:00
tests Add Bellcoin (#116) 2019-03-04 22:29:30 +01:00
.gitignore Update gitignore 2019-01-27 00:29:44 +01:00
.gitlab-ci.yml Add automatic backend deploy and integration test for all our coins 2019-02-26 11:05:19 +01:00
CONTRIBUTING.md Update documentation to match version 0.2.0 2019-01-24 18:08:37 +01:00
COPYING Add license file 2018-05-31 12:53:27 +02:00
Gopkg.lock Estimate full derivation path from xpub 2019-02-05 20:47:54 +01:00
Gopkg.toml Fix go dependencies 2019-01-09 13:11:45 +01:00
Makefile Build makes sure that images are rebuilt after change of docker defs 2018-10-17 13:04:03 +02:00
README.md Update documentation to match version 0.2.0 2019-01-24 18:08:37 +01:00
blockbook.go Merge branch 'master' into indexv4 2019-01-03 18:09:30 +01:00

README.md

Go Report Card

Blockbook

WARNING: Blockbook is currently in the state of heavy development. We may implement at any time backwards incompatible changes that require full reindexation of the database. Also, do not expect this documentation to be always up to date.

Blockbook is back-end service for Trezor wallet. Main features of Blockbook are:

  • index of addresses and address balances of the connected block chain
  • fast searches in the indexes
  • simple blockchain explorer
  • websocket, API and legacy Bitcore Insight compatible socket.io interfaces
  • support of multiple coins (Bitcoin and Ethereum type), with easy extensibility for other coins
  • scripts for easy creation of debian packages for backend and blockbook

Build and installation instructions

Officially supported platform is Debian Linux and AMD64 architecture.

Memory and disk requirements for initial synchronization of Bitcoin mainnet are around 32 GB RAM and over 160 GB of disk space. After initial synchronization, fully synchronized instance uses about 10 GB RAM. Other coins should have lower requirements, depending on the size of their block chain. Note that fast SSD disks are highly recommended.

User installation guide is here.

Developer build guide is here.

Contribution guide is here.

Implemented coins

Blockbook currently supports over 20 coins, among them:

  • Bitcoin, Litecoin, Bitcoin Cash, Bgold, ZCash, Dash, Ethereum, Ethereum Classic

Testnets for some coins are also supported, for example:

  • Bitcoin Testnet, Bitcoin Cash Testnet, ZCash Testnet, Ethereum Testnet Ropsten

List of all implemented coins is in the registry of ports.

Data storage in RocksDB

Blockbook stores data the key-value store RocksDB. Database format is described here.