All Projects → paritytech → Parity Zcash

paritytech / Parity Zcash

Licence: gpl-3.0
Rust implementation of Zcash protocol

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to Parity Zcash

Verge
Official Verge Core Source Code Repository 💪
Stars: ✭ 1,311 (+863.97%)
Mutual labels:  blockchain, client
Polkadot
Polkadot Node Implementation
Stars: ✭ 4,915 (+3513.97%)
Mutual labels:  blockchain, client
Bee
A framework for IOTA nodes, clients and applications in Rust
Stars: ✭ 176 (+29.41%)
Mutual labels:  blockchain, client
Parity Bitcoin
The Parity Bitcoin client
Stars: ✭ 651 (+378.68%)
Mutual labels:  blockchain, client
Javascript Cli
A CLI in JavaScript for the ARK Blockchain.
Stars: ✭ 48 (-64.71%)
Mutual labels:  blockchain, client
Parity Ethereum
The fast, light, and robust client for Ethereum-like networks.
Stars: ✭ 6,499 (+4678.68%)
Mutual labels:  blockchain, client
Substrate
Substrate: The platform for blockchain innovators
Stars: ✭ 6,275 (+4513.97%)
Mutual labels:  blockchain, client
Minimal
Modular Ethereum client
Stars: ✭ 69 (-49.26%)
Mutual labels:  blockchain, client
Nakamoto
Bitcoin light-client implementation in Rust
Stars: ✭ 129 (-5.15%)
Mutual labels:  blockchain, client
Awdy
are we decentralized yet? an analysis of how truly decentralized cryptocurrency networks are
Stars: ✭ 133 (-2.21%)
Mutual labels:  blockchain
Sengi
Mastodon & Pleroma Multi-account Desktop Client
Stars: ✭ 133 (-2.21%)
Mutual labels:  client
Blockstack.org
The Blockstack website
Stars: ✭ 132 (-2.94%)
Mutual labels:  blockchain
Pyrogram
Telegram MTProto API Client Library and Framework in Pure Python for Users and Bots
Stars: ✭ 2,252 (+1555.88%)
Mutual labels:  client
Ulordchain
Ulord is a P2P value transfer public blockchain. Through building its blockchain underlying architecture and digital resource distribution protocols, it enables third-party developers to explore their own applications over open-source agreements to form a complete ecology of blockchain technology and applications.
Stars: ✭ 134 (-1.47%)
Mutual labels:  blockchain
Yearn Vaults
Yearn Vault smart contracts
Stars: ✭ 132 (-2.94%)
Mutual labels:  blockchain
Amqp
AMQP 1.0 client library for Go.
Stars: ✭ 135 (-0.74%)
Mutual labels:  client
Jstp
Fast RPC for browser and Node.js based on TCP, WebSocket, and MDSF
Stars: ✭ 132 (-2.94%)
Mutual labels:  client
Spreadsheet server
A python server harnessing the calculational ability of LibreOffice Calc (thanks to 'pyoo'). It provides 'instant' access to the cell ranges of a set of spreadsheets.
Stars: ✭ 132 (-2.94%)
Mutual labels:  client
Bitiodine
A Rust Bitcoin blockchain parser with clustering capabilities, allowing to group together addresses in ownership clusters. Please contact @mikispag if interested in using BitIodine for any real-world use case.
Stars: ✭ 135 (-0.74%)
Mutual labels:  blockchain
Tessera
Tessera - Enterprise Implementation of Quorum's transaction manager
Stars: ✭ 135 (-0.74%)
Mutual labels:  blockchain

The Parity Zcash client.

Build Status Snap Status

Gitter Gitter https://gitter.im/paritytech/parity-zcash

Blog: Parity teams up with Zcash Foundation for Parity Zcash client

Installing from source

Installing pzec from source requires rustc and cargo.

Minimal supported version is rustc 1.23.0 (766bd11c8 2018-01-01)

Install rustc and cargo

Both rustc and cargo are a part of rust tool-chain.

An easy way to install the stable binaries for Linux and Mac is to run this in your shell:

curl https://sh.rustup.rs -sSf | sh

Windows binaries can be downloaded from rust-lang website.

Install C and C++ compilers

You will need the cc and gcc compilers to build some of the dependencies.

On macOS

build-essential is a Debian package. On macOS you will need to make sure you have Xcode installed. If you already have Homebrew installed, you probably also already have the Xcode tools installed as well. If not, you can run the command below:

xcode-select --install

On Linux

sudo apt-get update
sudo apt-get install build-essential

Clone and build pzec

Now let's clone pzec and enter it's directory:

git clone https://github.com/paritytech/parity-zcash
cd parity-zcash

# builds pzec in release mode
cargo build -p pzec --release

pzec is now available at ./target/release/pzec.

Installing the snap

In any of the supported Linux distros:

sudo snap install parity-zcash --edge

Running tests

pzec has internal unit tests and it conforms to external integration tests.

Running unit tests

Assuming that repository is already cloned, we can run unit tests with this command:

cargo test --all

Going online

By default parity connects to Zcash seednodes. Full list is here.

To start syncing the main network, just start the client without any arguments:

./target/release/pzec

To start syncing the testnet:

./target/release/pzec --testnet

To not print any syncing progress add --quiet flag:

./target/release/pzec --quiet

Importing zcashd database

It it is possible to import existing zcashd database:

# where $ZCASH_DB is path to your zcashd database. By default:
# on macOS: "/Users/user/Library/Application Support/Zcash"
# on Linux: "~/.zcash"
./target/release/pzec import "$ZCASH_DB/blocks"

By default, import verifies the imported blocks. You can disable this, by adding the --verification-level=none option.

./target/release/pzec --verification-level=none import "$ZCASH_DB/blocks"

Command line interface

Full list of CLI options, which is available under pzec --help: see here

Logging

This is a section only for developers and power users.

You can enable detailed client logging by setting the environment variable RUST_LOG, e.g.,

RUST_LOG=verification=info ./target/release/pzec

pzec started with this environment variable will print all logs coming from verification module with verbosity info or higher. Available log levels are:

  • error
  • warn
  • info
  • debug
  • trace

It's also possible to start logging from multiple modules in the same time:

RUST_LOG=sync=trace,p2p=trace,verification=trace,db=trace ./target/release/pzec

Internal documentation

Once released, pzec documentation will be available here. Meanwhile it's only possible to build it locally:

cd parity-zcash
./tools/doc.sh
open target/doc/pzec/index.html
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].