Status

Esplora - Electrs backend API

This is forked from Blockstream/electrs. So, features and specifications are almost same with original. You can find documents for extended specification for tapyrus here tapyrus doc.

API documentation is available here.

Documentation for the database schema and indexing process is available here.

Installing & indexing

Install Rust, Tapyrus Core (no txindex needed) and the clang and cmake packages, then:

bash $ git clone https://github.com/chaintope/esplora-tapyrus && cd esplora-tapyrus $ cargo run --release --bin electrs -- -vvvv --daemon-dir ~/.tapyrus/prod-1 --network-id 1

See electrs's original documentation for more detailed instructions. Note that our indexes are incompatible with electrs's and has to be created separately.

The indexes require 610GB of storage after running compaction (as of June 2020), but you'll need to have free space of about double that available during the index compaction process. Creating the indexes should take a few hours on a beefy machine with SSD.

To deploy with Docker, follow the instructions here.

Light mode

For personal or low-volume use, you may set --lightmode to reduce disk storage requirements by roughly 50% at the cost of slower and more expensive lookups.

With this option set, raw transactions and metadata associated with blocks will not be kept in rocksdb (the T, X and M indexes), but instead queried from tapyrusd on demand.

Notable changes from Electrs:

CLI options

In addition to electrs's original configuration options, a few new options are also available:

Additional options with the liquid feature: - --parent-network <network> - the parent network this chain is pegged to.

Additional options with the electrum-discovery feature: - --electrum-hosts <json> - a json map of the public hosts where the electrum server is reachable, in the server.features format. - --electrum-announce - announce the electrum server on the electrum p2p server discovery network.

See $ cargo run --release --bin electrs -- --help for the full list of options.

License

MIT