Go to file
Marek Kotewicz 373284ca0a spec loading cleanup (#858)
* spec loading cleanup in progress

* changed engine field in json spec

* refactored engine params

* polishing spec loading refactor

* fixed compiling json tests

* fixed compiling parity

* removed warnings

* removed commented out code

* fixed failing test

* bringing back removed TODO in spec.
2016-04-09 10:20:35 -07:00
devtools fix lib 2016-03-26 19:04:42 +03:00
docker update dockerfiles 2016-03-14 18:47:23 +01:00
ethash Caching for computing seed hashes (#541) 2016-03-27 20:42:24 +01:00
ethcore spec loading cleanup (#858) 2016-04-09 10:20:35 -07:00
evmjit Version 1.1 2016-03-14 01:00:17 +01:00
ipc using nanomsg polling 2016-04-06 00:10:24 +03:00
json spec loading cleanup (#858) 2016-04-09 10:20:35 -07:00
miner Propagate transaction queue 2016-04-06 23:03:07 +02:00
parity spec loading cleanup (#858) 2016-04-09 10:20:35 -07:00
rpc Merge pull request #898 from ethcore/fixed_895 2016-04-08 17:41:54 -07:00
sync Propagate transaction queue 2016-04-06 23:03:07 +02:00
util Reverting order of shutdown event 2016-04-07 12:27:54 +02:00
webapp Update auth.rs 2016-04-08 17:51:20 -07: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 Add generalbeck's token 2016-03-28 15:47:57 +02:00
Cargo.lock HTTP Authorization support in router 2016-04-08 15:25:20 +02:00
Cargo.toml Enabling webapps by default 2016-04-08 11:18:46 +02: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 webapps crate 2016-04-07 10:49:00 +02:00
doc.sh Adding webapps crate 2016-04-07 10:49:00 +02:00
fmt.sh Adding webapps crate 2016-04-07 10:49:00 +02:00
hook.sh Adding webapps crate 2016-04-07 10:49:00 +02:00
install-deps.sh Fix install-deps.sh. 2016-03-02 13:40:11 +01:00
install-parity.sh Update install-parity.sh 2016-03-29 18:05:41 +02:00
license_header prepare for adding licenses 2016-02-05 13:36:30 +01:00
rustfmt.toml Fixing fn arguments indentation 2016-04-04 09:13:24 +02:00
test.sh Adding webapps crate 2016-04-07 10:49:00 +02: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