Fork of Trezor Blockbook.
 
 
 
 
 
 
Go to file
Martin Boehm 9642e306ac Merge branch 'mempool' 2019-04-15 12:27:24 +02:00
api Show first seen date of mempool transaction in explorer 2019-04-03 14:09:27 +02:00
bchain Merge branch 'mempool' 2019-04-15 12:27:24 +02: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 Bump Bcash to 0.19.3 2019-04-11 14:58:22 +02:00
contrib/scripts Fix linter issues 2019-03-21 22:53:48 +01:00
db Enable parallel sync only for initial sync 2019-04-12 16:46:54 +02:00
docs Fix link path 2019-04-08 12:48:48 +02:00
server Preserve socket.io BlockTimestamp backward compatibility 2019-04-05 17:13:56 +02:00
static Stop displaying first seen tx time when unknown 2019-04-10 13:54:20 +02:00
tests Support Polis (#118) 2019-04-08 12:48:48 +02:00
.gitignore Support Polis (#118) 2019-04-08 12:48:48 +02: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 Support Groestlcoin xpub 2019-04-01 17:00:53 +02: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 api.GetBlock to support ethereum type coins 2019-03-21 09:36:18 +01:00
blockbook.go Swich from Fatal log to Error log in Blockbook main 2019-04-12 15:44:11 +02: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.

API

Blockbook API is described here.