Ethereum consensus client in Rust
Go to file
2018-09-18 12:01:48 +10:00
boolean-bitfield Tidy up boolean_bitfield 2018-09-10 08:51:51 +02:00
lighthouse Change ssz to use extend_from_slice() 2018-09-10 08:52:21 +02:00
network-libp2p Begin sync framework 2018-09-09 16:36:00 +02:00
ssz Add ToC; Add Interface; Add Usage 2018-09-18 12:01:48 +10:00
.gitignore Restructure heavily 2018-08-07 10:08:39 +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 Move boolean_bitfield into own crate 2018-08-23 15:20:10 +10:00
LICENSE Create LICENSE 2018-08-18 09:19:07 +10:00
README.md Update readme 2018-08-15 13:27:07 +10:00

Lighthouse: a (future) Ethereum 2.0 client

Build Status

A work-in-progress implementation of the Ethereum 2.0 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.

NOTE: the cryptography libraries used in this implementation are very experimental and as such all cryptography should be assumed to be insecure.

Motivation

The objective of this project is to build a purely Ethereum 2.0 client from the ground up.

As such, the early days of Lighthouse will be very much a research effort -- it will be evolving on the bleeding-edge of specification without requiring to maintain prod-grade stability or backwards-compatibility for the existing PoW chain.

Whilst the Beacon Chain relies upon the PoW chain for block hashes, Lighthouse will need to run alongside an existing client (e.g., Geth, Parity Ethereum), only being able to stand by itself once the PoW chain has been deprecated.

Lighthouse aims to assist in advancing the progress of the following Ethereum technologies:

  • Proof-of-Stake
  • Sharding
  • EVM alternatives (e.g., WASM)
  • Scalable, topic-based P2P networks (e.g., libp2p-gossipsub)
  • Scalable signature schemes (e.g, BLS aggregates)

Progress

As of 02/08/2018, there is a basic libp2p implementation alongside a series of state objects and state transition functions. There are no syncing capabilities.

Usage

You can run the tests like this:

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

Contact

This repo is presently authored by Paul Hauner as a Sigma Prime project.

The best place for discussion is probably the ethereum/sharding gitter.