Ethereum consensus client in Rust
Go to file
2019-06-17 15:21:03 +10:00
.github Add PR and issue templates 2018-10-14 14:51:59 +11:00
account_manager Run cargo fmt --all 2019-06-13 12:21:09 -04:00
beacon_node Run cargo fmt --all 2019-06-13 12:21:09 -04:00
docs Added a quick 'documentation.md' file, to describe where the Lighthouse technical documentation is, and how it can be updated. 2019-05-01 15:13:30 +10:00
eth2 update minimal spec, fix all tests 2019-06-17 15:21:03 +10:00
protos Add committe_len to gRPC parameters 2019-03-31 00:34:35 +11:00
tests/ef_tests update minimal spec, fix all tests 2019-06-17 15:21:03 +10:00
validator_client Change name of VC CLI param 2019-06-10 21:37:59 -04:00
.editorconfig Add editorconfig template 2019-03-11 15:09:57 +11:00
.gitignore Add benches, examples for cached hashing. 2019-04-28 11:38:32 +10:00
.gitlab-ci.yml Removed 'target' from caches, as recommended by https://levans.fr/rust_travis_cache.html. Hopefully this shows significant build speed improvements. 2019-05-08 12:24:26 +10:00
.gitmodules Add basic code for new testing format 2019-05-13 17:56:46 +10:00
.travis.yml Remove state_processing tests, update travis 2019-05-10 10:28:18 +10:00
Cargo.toml Merge branch 'docker-env' into v0.6.1 2019-06-13 10:37:35 -04:00
CONTRIBUTING.md Revert "Merge pull request #200 from sigp/new-structure" 2019-02-14 12:09:18 +11:00
Dockerfile Updated the gitlab config to generate docs and update them on S3. Will remove the 'gitlab-docs' line in a later commit. 2019-05-08 00:03:36 +10:00
LICENSE Update License to Apache 2.0 2019-04-15 16:47:35 +10:00
README.md Update readme with donation ens 2019-05-27 10:24:44 +10:00

Lighthouse: an Ethereum Serenity client

Build Status Doc Status Gitter Badge

A work-in-progress, open-source implementation of the Serenity Beacon Chain, maintained by Sigma Prime.

The "Serenity" project is also known as "Ethereum 2.0" or "Shasper".

Lighthouse Client

Lighthouse is an open-source Ethereum Serenity client that is currently under development. Designed as a Serenity-only client, Lighthouse will not re-implement the existing proof-of-work protocol. Maintaining a forward-focus on Ethereum Serenity ensures that Lighthouse avoids reproducing the high-quality work already undertaken by existing projects. As such, Lighthouse will connect to existing clients, such as Geth or Parity-Ethereum, via RPC to enable present-Ethereum functionality.

Further Reading

If you'd like some background on Sigma Prime, please see the Lighthouse Update #00 blog post or the company website.

Directory Structure

  • beacon_node/: the "Beacon Node" binary and crates exclusively associated with it.
  • docs/: documentation related to the repository. This includes contributor guides, etc. (It does not include code documentation, which can be produced with cargo doc).
  • eth2/: Crates containing common logic across the Lighthouse project. For example: Ethereum 2.0 types (BeaconBlock, BeaconState, etc) and SimpleSerialize (SSZ).
  • protos/: protobuf/gRPC definitions that are common across the Lighthouse project.
  • validator_client/: the "Validator Client" binary and crates exclusively associated with it.

Components

The following list describes some of the components actively under development by the team:

  • BLS cryptography: Lighthouse presently use the Apache Milagro cryptography library to create and verify BLS aggregate signatures. BLS signatures are core to Serenity as they allow the signatures of many validators to be compressed into a constant 96 bytes and efficiently verified. The Lighthouse project is presently maintaining its own BLS aggregates library, gratefully forked from @lovesh.
  • DoS-resistant block pre-processing: Processing blocks in proof-of-stake is more resource intensive than proof-of-work. As such, clients need to ensure that bad blocks can be rejected as efficiently as possible. At present, blocks having 10 million ETH staked can be processed in 0.006 seconds, and invalid blocks are rejected even more quickly. See issue #103 on ethereum/beacon_chain.
  • P2P networking: Serenity will likely use the libp2p framework. Lighthouse is working alongside Parity to ensure libp2p-rust is fit-for-purpose.
  • Validator duties : The project involves development of "validator services" for users who wish to stake ETH. To fulfill their duties, validators require a consistent view of the chain and the ability to vote upon blocks from both shard and beacon chains.
  • New serialization formats: Lighthouse is working alongside researchers from the Ethereum Foundation to develop simpleserialize (SSZ), a purpose-built serialization format for sending information across a network. Check out the SSZ implementation and this research on serialization formats for more information.
  • Fork-choice: The current fork choice rule is LMD Ghost, which effectively takes the latest messages and forms the canonical chain using the GHOST mechanism.
  • Efficient state transition logic: State transition logic governs updates to the validator set as validators log in/out, penalizes/rewards validators, rotates validators across shards, and implements other core tasks.
  • Fuzzing and testing environments: Implementation of lab environments with continuous integration (CI) workflows, providing automated security analysis.

In addition to these components we are also working on database schemas, RPC frameworks, specification development, database optimizations (e.g., bloom-filters), and tons of other interesting stuff (at least we think so).

Running

NOTE: The cryptography libraries used in this implementation are experimental. As such all cryptography is assumed to be insecure.

This code-base is still very much under-development and does not provide any user-facing functionality. For developers and researchers, there are several tests and benchmarks which may be of interest.

A few basic steps are needed to get set up:

  1. Install rustup. It's a toolchain manager for Rust (Linux | macOS | Windows). For installation, download the script with $ curl -f https://sh.rustup.rs > rustup.sh, review its content (e.g. $ less ./rustup.sh) and run the script $ ./rustup.sh (you may need to change the permissions to allow execution, i.e. $ chmod +x rustup.sh)
  2. (Linux & MacOS) To configure your current shell run: $ source $HOME/.cargo/env
  3. Use the command rustup show to get information about the Rust installation. You should see that the active toolchain is the stable version.
  4. Run rustc --version to check the installation and version of rust.
    • Updates can be performed using rustup update .
  5. Install build dependencies (Arch packages are listed here, your distribution will likely be similar):
    • clang: required by RocksDB.
    • protobuf: required for protobuf serialization (gRPC).
    • cmake: required for building protobuf
  6. Navigate to the working directory.
  7. Run the test by using command cargo test --all. By running, it will pass all the required test cases. If you are doing it for the first time, then you can grab a coffee in the meantime. Usually, it takes time to build, compile and pass all test cases. If there is no error then it means everything is working properly and it's time to get your hands dirty. In case, if there is an error, then please raise the issue. We will help you.
  8. As an alternative to, or instead of the above step, you may also run benchmarks by using the command cargo bench --all
Note:

Lighthouse presently runs on Rust stable, however, benchmarks currently require the nightly version.

Note for Windows users:

Perl may also be required to build lighthouse. You can install Strawberry Perl, or alternatively use a choco install command choco install strawberryperl.

Additionally, the dependency protoc-grpcio v0.3.1 is reported to have issues compiling in Windows. You can specify a known working version by editing version in protos/Cargo.toml's "build-dependencies" section to protoc-grpcio = "<=0.3.0".

Contributing

Lighthouse welcomes contributors with open-arms.

If you would like to learn more about Ethereum Serenity and/or Rust, we are more than happy to on-board you and assign you some tasks. We aim to be as accepting and understanding as possible; we are more than happy to up-skill contributors in exchange for their assistance with the project.

Alternatively, if you are an ETH/Rust veteran, we'd love your input. We're always looking for the best way to implement things and welcome all respectful criticisms.

If you are looking to contribute, please head to our onboarding documentation.

If you'd like to contribute, try having a look through the open issues (tip: look for the good first issue tag) and ping us on the gitter channel. We need your support!

Contact

The best place for discussion is the sigp/lighthouse gitter. Ping @paulhauner or @AgeManning to get the quickest response.

Donations

If you support the cause, we could certainly use donations to help fund development:

0x25c4a76E7d118705e7Ea2e9b7d8C59930d8aCD3b (donation.sigmaprime.eth)