Go to file
Gav Wood 6b8e7bdfb3 Merge pull request #838 from ethcore/tx-queue-resp
checking transaction queue for pending transaction
2016-03-27 19:51:37 +02:00
devtools fix lib 2016-03-26 19:04:42 +03:00
docker update dockerfiles 2016-03-14 18:47:23 +01:00
ethash Version 1.1 2016-03-14 01:00:17 +01:00
ethcore Merge pull request #817 from ethcore/state_tests 2016-03-27 15:35:16 +02:00
evmjit Version 1.1 2016-03-14 01:00:17 +01:00
ipc test socket to common test tools 2016-03-26 19:04:12 +03:00
json refactored state tests 2016-03-25 13:08:57 +01:00
miner checking tx queue 2016-03-27 16:12:21 +03:00
parity Merge branch 'master' into unlock-pass 2016-03-27 04:49:02 +03:00
rpc Merge pull request #838 from ethcore/tx-queue-resp 2016-03-27 19:51:37 +02:00
sync Use network id for the web3_net_version return. 2016-03-26 00:23:07 +01:00
util fix test 2016-03-27 03:49:12 +03:00
.editorconfig Editorconfig file. 2016-02-09 10:50:29 +01:00
.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 Auto detect available port 2016-03-20 16:21:49 +01:00
Cargo.lock Fix author reporting. num_cpus for JSONRPC threads. 2016-03-22 19:12:17 +01:00
Cargo.toml debug symbols for master/beta 2016-03-25 16:55:48 +03:00
LICENSE Change to library. 2015-11-24 21:05:08 +01:00
README.md complete getting started steps for OS X 2016-03-20 20:44:32 +01:00
add_license.sh added license in every *.rs file 2016-02-05 13:40:41 +01:00
build.rs Fixing clippy warnings. When building on nightly it is required to enable clippy 2016-03-07 14:34:17 +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
fmt.sh Adding new crates 2016-03-23 18:20:06 +01:00
hook.sh Merge branch 'master' into ethminer_crate 2016-03-11 14:37:07 +01:00
install-deps.sh Fix install-deps.sh. 2016-03-02 13:40:11 +01:00
install-parity.sh install-partiy runs brew reinstall parity on osx 2016-03-24 22:22:04 +01:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +01:00
rustfmt.toml If-else in single line 2016-02-16 10:57:52 +01:00
test.sh Merge branch 'master' into uint_opt 2016-03-14 23:45:16 +01:00

README.md

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
multirust default stable

Then, download and build Parity:

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

# build in release mode
cargo build --release