Ethereum consensus client in Rust
Go to file
2018-07-14 21:48:32 +10:00
src Implement get_crosslink_notaries 2018-07-14 21:48:32 +10:00
tests Initial commit 2018-07-06 17:54:07 +10:00
.gitignore Initial commit 2018-07-06 17:54:07 +10:00
.gitmodules Removed parity submod, use parity-common for RLP 2018-07-12 15:10:02 +10:00
.travis.yml Add travis.yml 2018-07-12 15:04:02 +10:00
Cargo.toml Downgrade rand to suit bls repo 2018-07-12 15:37:36 +10:00
README.md Updat readme 2018-07-12 16:44:21 +10:00

Rust Beacon Chain

Build Status

A work-in-progress implementation of the Ethereum beacon_chain in Rust.

It is an implementation of the Full PoS Casper chain v2 spec and is also largely based upon the ethereum/beacon_chain repo.

Usage

Presently this is just a bunch of data structures and some tests.

$ git clone <url>
$ cd rust_beacon_chain
$ cargo test

Contact

This repo is presently authored by Paul Hauner (@paulhauner) as a Sigma Prime project.

Best place for discussion is probably the ethereum/sharding gitter.

TODO:

  • Finish state transition implementation.
  • Ensure bls library is secure.
  • Implement RLP serialization for BLS signatures.