• Stars
    star
    402
  • Rank 107,380 (Top 3 %)
  • Language
    Rust
  • License
    Apache License 2.0
  • Created over 5 years ago
  • Updated 3 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Zcash - Financial Privacy in Rust 🦓

Zebra logotype


CI Docker CI OSes Continuous Delivery codecov Build docs License

Contents

About

Zebra is the Zcash Foundation's independent, consensus-compatible implementation of a Zcash node.

Zebra's network stack is interoperable with zcashd, and Zebra implements all the features required to reach Zcash network consensus, including the validation of all the consensus rules for the NU5 network upgrade. Here are some benefits of Zebra.

Zebra validates blocks and transactions, but needs extra software to generate them:

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

Getting Started

You can run Zebra using our Docker image or you can build it manually. Please see the System Requirements section in the Zebra book for system requirements.

Docker

This command will run our latest release, and sync it to the tip:

docker run zfnd/zebra:latest

For more information, read our Docker documentation.

Building Zebra

Building Zebra requires Rust, libclang, pkg-config, and a C++ compiler.

Zebra is tested with the latest stable Rust version. Earlier versions are not supported or tested. Any Zebra release can start depending on new features in the latest stable Rust.

Every few weeks, we release a new Zebra version.

Below are quick summaries for installing the dependencies on your machine.

General instructions for installing dependencies

  1. Install cargo and rustc.

  2. Install Zebra's build dependencies:

    • libclang is a library that might have different names depending on your package manager. Typical names are libclang, libclang-dev, llvm, or llvm-dev.
    • clang or another C++ compiler: g++ (all platforms) or Xcode (macOS).
    • pkg-config

Dependencies on Arch

sudo pacman -S rust clang pkgconf

Note that the package clang includes libclang as well as the C++ compiler.

Once the dependencies are in place, you can build and install Zebra:

cargo install --locked zebrad

You can start Zebra by

zebrad start

See the Installing Zebra and Running Zebra sections in the book for more details.

Optional Features

You can also build Zebra with additional Cargo features:

You can combine multiple features by listing them as parameters of the --features flag:

cargo install --features="<feature1> <feature2> ..." ...

Our full list of experimental and developer features is in the API documentation.

Some debugging and monitoring features are disabled in release builds to increase performance.

Known Issues

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

Future Work

We will continue to add new features as part of future network upgrades, and in response to community feedback.

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.

User support

For bug reports please open a bug report ticket in the Zebra repository.

Alternatively by chat, Join the Zcash Foundation Discord Server and find the #zebra-support channel.

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.

Some Zebra crates are distributed under the MIT license only, because some of their code was originally from MIT-licensed projects. See each crate's directory for details.

More Repositories

1

zecwallet

A z-address first full node and UI wallet for zcash
TypeScript
183
star
2

frost

Rust implementation of FROST (Flexible Round-Optimised Schnorr Threshold signatures) by the Zcash Foundation
Rust
138
star
3

zcash-fpga

Zcash FPGA acceleration engine
SystemVerilog
117
star
4

parity-zcash

A consensus-compatible Zcash node client written in Rust. 🦓
Rust
81
star
5

libbolt

Rust implementation of libbolt
C++
73
star
6

ZcashFoundation

58
star
7

zepio

Zepio | ZEC Wallet
JavaScript
40
star
8

ed25519-zebra

Zcash-flavored Ed25519 for use in Zebra.
Rust
32
star
9

Elections

A space to describe and run the Zcash Foundation's elections.
31
star
10

redjubjub

A minimal RedJubjub implementation for use in Zebra.
Rust
28
star
11

GrantProposals-2018Q2

Submission site for 2018Q2 Zcash Foundation grant proposals.
26
star
12

zcash-pegzone

A shielded pegzone bridging Cosmos and Zcash.
26
star
13

GrantProposals-2017Q4

Submission site for Zcash Foundation grant proposals
25
star
14

powersoftau-attestations

25
star
15

ristretto255-dh

Diffie-Hellman key exchange using the Ristretto255 group, in Rust.
Rust
21
star
16

zfnd

The Zcash Foundation Website
SCSS
14
star
17

zcon0-workshop-notes

Collection of workshop notes from Zcon0
11
star
18

zcash-grant-system

The Zcash Foundation Grant System
TypeScript
11
star
19

reddsa

A minimal RedDSA implementation for use in Zebra and zcashd.
Rust
9
star
20

frost-zcash-demo

A CLI demo for trusted dealer key generation with Frost
Rust
7
star
21

coredns-zcash

Build/deploy instructions for the Foundation's DNS seeder
Shell
6
star
22

zomg

HTML
4
star
23

dnsseeder

Configurable DNS seeder for Zcash based on CoreDNS
Go
4
star
24

zepio-docs

Zepio Documentation
JavaScript
3
star
25

zfaucet-deploy

containers and scripts for deploying a testnet faucet
Shell
3
star
26

archived-zfnd-website

JavaScript
3
star
27

zwallet-ios

WIP Zcash shielded-first iOS wallet by XMR Systems
Swift
2
star
28

zebra-net-ra-crash-repro

smallest repro I can come up with for the rust-analyzer bug thats breaks RA for zebra-network
Rust
1
star
29

tech-reports

Technical reports published by the Zcash Foundation
TeX
1
star
30

zcash_script

Rust bindings to the ECC's zcash_script C++ library.
C++
1
star