b17581d7de
* Groundwork for basic VM tracing. * RPC endpoint for VM tracing and ser/de types ready. * Create VMTracer trait. * Rearchitected VM tracing to reflect existing tracing. Should more or less work now. * Integrated VM tracing into JSONRPC. * Fix ethcore module tests. * Add tests for VM tracing. * Fix consensus test code. * Fix mock tests. * Added VM trace information for post-execution stuff. * Fix max-value calls and add "creates" field to getTransaction. * Tests for VM tracing. * Don't implement the trait with unimplemented. * Remove invlaid comment. * Fix tests. |
||
---|---|---|
dapps | ||
db | ||
devtools | ||
docker | ||
ethash | ||
ethcore | ||
evmjit | ||
ipc | ||
json | ||
parity | ||
rpc | ||
signer | ||
sync | ||
util | ||
.editorconfig | ||
.gitignore | ||
.gitmodules | ||
.travis.yml | ||
add_license.sh | ||
build.rs | ||
Cargo.lock | ||
Cargo.toml | ||
cov.sh | ||
doc.sh | ||
fmt.sh | ||
hook.sh | ||
install-deps.sh | ||
install-parity.sh | ||
LICENSE | ||
license_header | ||
README.md | ||
rustfmt.toml | ||
test.sh |
Parity
Fast, light, and robust Ethereum implementation
About Parity
Parity's goal is to be the fastest, lightest, and most secure Ethereum client. We are developing Parity using the sophisticated and cutting-edge Rust programming language. Parity is licensed under the GPLv3, and can be used for all your Ethereum needs.
By default, Parity will run a JSONRPC server on 127.0.0.1:8545
. This is fully configurable and supports a number
of RPC APIs.
Parity also runs a server for running decentralized apps, or "Dapps", on http://127.0.0.1:8080
.
This includes a few useful Dapps, including Ethereum Wallet, Maker OTC, and a node status page.
In a near-future release, it will be easy to install Dapps and use them through this web interface.
If you run into an issue while using parity, feel free to file one in this repository or hop on our gitter chat room to ask a question. We are glad to help!
Parity's current release is 1.1. You can download it at https://ethcore.io/parity.html or follow the instructions below to build from source.
Building from source
Parity is fully compatible with Stable Rust.
We recommend installing Rust through multirust. If you don't already have multirust, you can install it like this:
- Linux:
$ curl -sf https://raw.githubusercontent.com/brson/multirust/master/quick-install.sh | sh
- 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
This will produce an executable in the target/release
subdirectory.
Either run cd target/release
, or copy target/release/parity
to another location.
To get started, just run
$ parity
and parity will begin syncing the Ethereum blockchain.