Go to file
teor 42f6c27c98
Enable a transitive feature that speeds up compilation (#4796)
2022-08-03 23:42:50 +00:00
.cargo lint(clippy): add `unwrap_in_result` lint (#4667) 2022-06-28 06:22:07 +00:00
.github Make sure Rust tests actually ran in deploy-gcp-tests.yml (#4710) 2022-08-03 17:22:35 +00:00
book Release Zebra to 1.0.0-beta.13 (#4765) 2022-07-30 20:20:43 +00:00
docker 1. add(ci): Add a Zebra cached state update test, fix lightwalletd tests (#4813) 2022-07-26 08:13:25 +10:00
grafana Update transaction verification Grafana dashboard to show all shielded pool sigs, proofs, nullifiers (#4585) 2022-06-09 15:08:57 +00:00
tower-batch Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
tower-fallback build(deps): bump tokio from 1.20.0 to 1.20.1 (#4864) 2022-08-03 01:01:45 +00:00
zebra-chain Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
zebra-client Repoint zebra image links to our new zfnd.org site for now (#3949) 2022-03-27 23:42:47 +00:00
zebra-consensus Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
zebra-network build(deps): bump serde from 1.0.141 to 1.0.142 (#4876) 2022-08-03 20:48:16 +00:00
zebra-node-services Release Zebra to 1.0.0-beta.13 (#4765) 2022-07-30 20:20:43 +00:00
zebra-rpc build(deps): bump serde from 1.0.141 to 1.0.142 (#4876) 2022-08-03 20:48:16 +00:00
zebra-script Release Zebra to 1.0.0-beta.13 (#4765) 2022-07-30 20:20:43 +00:00
zebra-state Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
zebra-test Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
zebra-utils Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
zebrad Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
.codespellrc feat(ci): add a codespell linting action (#4482) 2022-05-26 00:27:44 +00:00
.dockerignore fix(build): avoid docker cache contamination and invalidation (#4254) 2022-05-03 10:13:28 -04:00
.gitignore fix: improve file and directories to be ignored by git and Docker (#3399) 2022-01-26 06:22:51 +00:00
CHANGELOG.md Release Zebra to 1.0.0-beta.13 (#4765) 2022-07-30 20:20:43 +00:00
CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md (#1097) 2021-03-25 10:54:08 +01:00
CONTRIBUTING.md docs: fix typo (#3877) 2022-03-22 22:01:35 -04:00
Cargo.lock Enable a transitive feature that speeds up compilation (#4796) 2022-08-03 23:42:50 +00:00
Cargo.toml deps: upgrade ECC dependencies (#4699) 2022-06-27 23:12:56 +00:00
LICENSE-APACHE Add copyright marks on each license 2019-11-14 11:50:49 -08:00
LICENSE-MIT Add copyright marks on each license 2019-11-14 11:50:49 -08:00
README.md docs(readme): add missing status badges & sections (#4817) 2022-08-03 01:03:31 +00:00
SECURITY.md Explicitly allow unencrypted disclosures for alpha releases (#2127) 2021-05-11 14:41:33 +02:00
clippy.toml Apply clippy fixes 2020-02-05 12:42:32 -08:00
codecov.yml Re-enable code coverage comments on PRs (#3246) 2021-12-22 00:52:08 +00:00
deny.toml deps: upgrade ECC dependencies (#4699) 2022-06-27 23:12:56 +00:00
firebase.json Configure redirect for firebase hosting 2020-01-16 18:38:16 -05:00
katex-header.html Add KaTeX to rendered docs. (#832) 2020-08-05 17:34:30 -07:00
prometheus.yaml Tell Prometheus to scrape more aggressively 2020-02-14 20:14:05 -05:00

README.md

Zebra logotype


CI Docker CI OSes Continuous Delivery Coverage codecov Build docs Build lightwalletd Build Zcash Params

License

Contents

About

Zebra is the Zcash Foundation's independent, consensus-compatible implementation of a Zcash node, currently under development. It can be used to join the Zcash peer-to-peer network, which helps keeping Zcash working by validating and broadcasting transactions, and maintaining the Zcash blockchain state in a distributed manner.

Zcash is a cryptocurrency designed to preserve the user's privacy. If you just want to send and receive Zcash then you don't need to use Zebra directly. You can download a Zcash wallet application which will handle that for you.

Please join us on Discord if you'd like to find out more or get involved!

Using Zebra

You would want to run Zebra if you want to contribute to the Zcash network: the more nodes are run, the more reliable the network will be in terms of speed and resistance to denial of service attacks, for example.

Zebra aims to be faster, more secure, and more easily extensible than other Zcash implementations.

Beta Releases

Every few weeks, we release a new Zebra beta release.

Zebra's network stack is interoperable with zcashd, and Zebra implements all the features required to reach Zcash network consensus.

Currently, Zebra validates all of the Zcash consensus rules for the NU5 network upgrade.

But it may not validate any:

  • Undocumented rules derived from Bitcoin
  • Undocumented network protocol requirements

Getting Started

Building zebrad requires Rust, libclang, and a C++ compiler.

Build and Run Instructions

zebrad is still under development, so there is no supported packaging or install mechanism. To run zebrad, follow the instructions to compile zebrad for your platform:

  1. Install cargo and rustc.
    • Zebra is tested with the latest stable Rust version. Earlier versions are not supported or tested, but they might work. (Rust 1.57 and earlier are not supported, due to missing features.)
  2. Install Zebra's build dependencies:
    • libclang: the libclang, libclang-dev, llvm, or llvm-dev packages, depending on your package manager
    • clang or another C++ compiler: g++, Xcode, or MSVC
  3. Run cargo install --locked --git https://github.com/ZcashFoundation/zebra --tag v1.0.0-beta.13 zebrad
  4. Run zebrad start (see Running Zebra for more information)

For more detailed instructions, refer to the documentation.

Optional Features

For performance reasons, some debugging and monitoring features are disabled in release builds.

You can enable these features using:

cargo install --features=<name> ...

System Requirements

The recommended requirements for compiling and running zebrad are:

  • 4+ CPU cores
  • 16+ GB RAM
  • 100 GB+ available disk space for building binaries and storing cached chain state
  • 100+ Mbps network connections

We continuously test that our builds and tests pass on:

The latest GitHub Runners for:

  • macOS
  • Ubuntu

Docker:

  • Debian Bullseye

Zebra's tests can take over an hour, depending on your machine. We're working on making them faster.

zebrad might build and run fine on smaller and slower systems - we haven't tested its exact limits yet.

For more detailed requirements, refer to the documentation.

Memory Troubleshooting

If Zebra's build runs out of RAM, try setting: export CARGO_BUILD_JOBS=2

If Zebra's tests timeout or run out of RAM, try running: cargo test -- --test-threads=2

(cargo uses all the processor cores on your machine by default.)

macOS Test Troubleshooting

Some of Zebra's tests deliberately cause errors that make Zebra panic. macOS records these panics as crash reports.

If you are seeing "Crash Reporter" dialogs during Zebra tests, you can disable them using this Terminal.app command:

defaults write com.apple.CrashReporter DialogType none

Network Ports and Data Usage

By default, Zebra uses the following inbound TCP listener ports:

  • 8233 on Mainnet
  • 18233 on Testnet

Zebra needs some peers which have a round-trip latency of 2 seconds or less. If this is a problem for you, please open a ticket.

zebrad's typical mainnet network usage is:

  • Initial sync: 40 GB download (in the longer term, several hundred GB are likely to be downloaded).
  • Ongoing updates: 10 MB - 1 GB upload and download per day, depending on user-created transaction size, and peer requests

Zebra also performs an initial sync every time its internal database version changes.

For more detailed information, refer to the documentation.

Network Troubleshooting

Some of Zebra's tests download Zcash blocks, so they might be unreliable depending on your network connection. You can set ZEBRA_SKIP_NETWORK_TESTS=1 to skip the network tests.

Zebra may be unreliable on Testnet, and under less-than-perfect network conditions. See our roadmap for details.

Disk Usage

Zebra uses up to 40 GB of space for cached mainnet data, and 10 GB of space for cached testnet data.

RocksDB cleans up outdated data periodically, and when the database is closed and re-opened.

Disk Troubleshooting

Zebra's state commits changes using RocksDB database transactions.

If you forcibly terminate Zebra, or it panics, any incomplete changes will be rolled back the next time it starts.

So Zebra's state should always be valid, unless your OS or disk hardware is corrupting data.

Known Issues

There are a few bugs in Zebra that we're still working on fixing:

  • No Windows support #3801
    • We used to test with Windows Server 2019, but not anymore; see issue for details

Performance

We are working on improving Zebra performance, the following are known issues:

  • Send note commitment and history trees from the non-finalized state to the finalized state #4824
  • Speed up opening the database #4822
  • Revert note commitment and history trees when forking non-finalized chains #4794
  • Store only the first tree state in each identical series of tree states #4784

RPCs might also be slower than they used to be, we need to check:

  • Revert deserializing state transactions in rayon threads #4831

Ongoing investigations:

  • Find out which parts of CommitBlock/CommitFinalizedBlock are slow #4823
  • Mini-Epic: Stop tokio tasks running for a long time and blocking other tasks #4747
  • Investigate busiest tasks per tokio-console #4583

Future Work

Features:

  • Wallet functionality

Performance and Reliability:

  • Reliable syncing under poor network conditions
  • Additional batch verification
  • Performance tuning

Currently, the following features are out of scope:

  • Mining support
  • Optional Zcash network protocol messages
  • Consensus rules removed before Canopy activation (Zebra checkpoints on Canopy activation)

Documentation

The Zebra website contains user documentation, such as how to run or configure Zebra, set up metrics integrations, etc., as well as developer documentation, such as design documents. We also render API documentation for the external API of our crates, as well as internal documentation for private APIs.

Security

Zebra has a responsible disclosure policy, which we encourage security researchers to follow.

License

Zebra is distributed under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE and LICENSE-MIT.