Go to file
2016-03-07 16:28:51 +01:00
devtools
docker
ethash eth_getwork implemented. 2016-02-29 19:30:13 +01:00
ethcore Add memory usage reports. 2016-03-06 22:39:04 +01:00
evmjit version bump, test script for full suite 2016-02-16 13:40:58 +03:00
parity Add memory usage reports. 2016-03-06 22:39:04 +01:00
rpc fixed jsonrpc reporting current block is one less than actuall, fixed #612 2016-03-07 10:30:19 +01:00
sync Do not remove the peer immediatelly on send error 2016-03-07 11:34:07 +01:00
util Fixing tests in bigint and util 2016-03-07 16:28:51 +01:00
.editorconfig
.gitignore ignore out directory 2016-02-29 21:14:38 +01:00
.gitmodules
.travis.yml build on rust stable 2016-03-05 11:36:12 +01:00
add_license.sh
Cargo.lock Revert "Transaction Queue integration" 2016-03-05 12:53:54 +01:00
Cargo.toml
cov.sh
doc.sh
hook.sh
install-deps.sh Fix install-deps.sh. 2016-03-02 13:40:11 +01:00
install-parity.sh Removed rocksdb from build scripts and instructions 2016-02-26 13:27:05 +01:00
LICENSE
license_header
README.md fixup install script 2016-03-01 10:09:22 +08:00
test.sh Fixing tests in bigint and util 2016-03-07 16:28:51 +01:00

ethcore

Build Status Coverage Status Join the chat at https://gitter.im/trogdoro/xiki GPLv3

Documentation

Building from source

First (if you don't already have it) get multirust:

  • Linux:
curl -sf https://raw.githubusercontent.com/brson/multirust/master/quick-install.sh | sudo sh -s -- --yes
  • OSX with Homebrew:
brew update && brew install multirust

Then, download and build Parity:

# download Parity code
git clone https://github.com/ethcore/parity
cd parity

# parity should be built with rust beta
multirust override beta

# build in release mode
cargo build --release