Go to file
2016-03-10 11:07:10 +01:00
devtools
docker
ethash eth_getwork implemented. 2016-02-29 19:30:13 +01:00
ethcore Adding transactions to block 2016-03-09 13:09:34 +01:00
evmjit
miner Merge branch 'ethminer_crate' into tx_queue_min_gas 2016-03-09 15:27:27 +01:00
parity Update main.rs 2016-03-10 11:07:10 +01:00
rpc Adding documentation and ditching EthMiner 2016-03-09 14:26:28 +01:00
sync Adding documentation and ditching EthMiner 2016-03-09 14:26:28 +01:00
util Remove println!s. 2016-03-07 10:56:39 +01:00
.editorconfig
.gitignore ignore out directory 2016-02-29 21:14:38 +01:00
.gitmodules Submodule over https 2016-02-08 00:46:59 +01:00
.travis.yml Fixing travis yml whitespace 2016-03-08 16:40:35 +01:00
add_license.sh
Cargo.lock Moving block sealing and transaction_queue to separate create 2016-03-08 15:46:44 +01:00
Cargo.toml Adding ethminer to dev/ci files 2016-03-08 15:53:12 +01:00
cov.sh Adding ethminer to dev/ci files 2016-03-08 15:53:12 +01:00
doc.sh Adding ethminer to dev/ci files 2016-03-08 15:53:12 +01:00
hook.sh Adding ethminer to dev/ci files 2016-03-08 15:53:12 +01:00
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 Adding ethminer to dev/ci files 2016-03-08 15:53:12 +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