Repository for the Energy Web Foundation client for the Tobalaba test network.
Download this repository and compile from source or get the binaries.
Parity requires Rust version 1.21.0 to build
We recommend installing Rust through rustup. If you don't already have rustup, you can install it like this:
-
Linux:
$ curl https://sh.rustup.rs -sSf | shParity also requires
gcc,g++,libssl-dev/openssl,libudev-devandpkg-configpackages to be installed. -
OSX:
$ curl https://sh.rustup.rs -sSf | shclangis required. It comes with Xcode command line tools or can be installed with homebrew. -
Windows Make sure you have Visual Studio 2015 with C++ support installed. Next, download and run the rustup installer from https://static.rust-lang.org/rustup/dist/x86_64-pc-windows-msvc/rustup-init.exe, start "VS2015 x64 Native Tools Command Prompt", and use the following command to install and set up the msvc toolchain:
$ rustup default stable-x86_64-pc-windows-msvc
Once you have rustup, install parity or download and build from source
# download energyweb-client code
$ git clone https://github.com/energywebfoundation/energyweb-client
$ cd energyweb-client
# build
$ cargo buildThis will produce an executable in the ./target/release subdirectory.
Note: if cargo fails to parse manifest try:
$ ~/.cargo/bin/cargo build --releaseTo start Parity manually, just run
$ ./target/release/parity --chain tobalabaand Parity will begin syncing the Tobalaba blockchain.
