2018-10-03 08:37:28 +00:00
|
|
|
# Lighthouse: an Ethereum 2.0 client
|
2018-07-06 07:54:07 +00:00
|
|
|
|
2018-09-18 08:03:32 +00:00
|
|
|
[![Build Status](https://travis-ci.org/sigp/lighthouse.svg?branch=master)](https://travis-ci.org/sigp/lighthouse) [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/sigp/lighthouse?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
2018-07-12 05:01:28 +00:00
|
|
|
|
2018-10-03 08:37:28 +00:00
|
|
|
A work-in-progress, open-source implementation of the Ethereum 2.0 Beacon Chain, maintained
|
|
|
|
by Sigma Prime.
|
|
|
|
|
|
|
|
## Introduction
|
|
|
|
|
|
|
|
This readme is split into two major sections:
|
|
|
|
|
|
|
|
- [Lighthouse Client](#lighthouse-client): information about this
|
2018-10-03 10:29:39 +00:00
|
|
|
implementation.
|
2018-10-03 08:37:28 +00:00
|
|
|
- [What is Ethereum 2.0](#what-is-ethereum-20): an introduction to Ethereum 2.0.
|
|
|
|
|
|
|
|
If you'd like some background on Sigma Prime, please see the [Lighthouse Update
|
2018-10-09 07:16:19 +00:00
|
|
|
\#00](https://lighthouse.sigmaprime.io/update-00.html) blog post or the
|
|
|
|
[company website](https://sigmaprime.io).
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
## Lighthouse Client
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Lighthouse is an open-source Ethereum 2.0 client that is currently under development.
|
|
|
|
Designed as an Ethereum 2.0-only client, Lighthouse will not re-implement the existing
|
2018-10-04 00:54:59 +00:00
|
|
|
proof-of-work protocol. Maintaining a forward-focus on Ethereum 2.0 ensures
|
2018-10-09 07:16:19 +00:00
|
|
|
that Lighthouse avoids reproducing the high-quality work already undertaken
|
|
|
|
by existing projects. As such, Lighthouse will
|
|
|
|
connect to existing clients, such as
|
2018-10-04 00:54:59 +00:00
|
|
|
[Geth](https://github.com/ethereum/go-ethereum) or
|
2018-10-09 07:16:19 +00:00
|
|
|
[Parity-Ethereum](https://github.com/paritytech/parity-ethereum), via RPC to enable
|
|
|
|
present-Ethereum functionality.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
### Goals
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
The purpose of this project is to further research and development towards a secure,
|
|
|
|
efficient, and decentralized Ethereum protocol, facilitated by a new open-source
|
2018-10-03 08:37:28 +00:00
|
|
|
Ethereum 2.0 client.
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
In addition to implementing a new client, the project seeks to maintain and improve
|
|
|
|
the Ethereum protocol wherever possible.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
### Components
|
|
|
|
|
2018-10-04 00:11:02 +00:00
|
|
|
The following list describes some of the components actively under development
|
|
|
|
by the team:
|
2018-10-03 08:37:28 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
- **BLS cryptography**: Lighthouse presently use the [Apache
|
2018-10-03 08:37:28 +00:00
|
|
|
Milagro](https://milagro.apache.org/) cryptography library to create and
|
2018-10-04 00:11:02 +00:00
|
|
|
verify BLS aggregate signatures. BLS signatures are core to Eth 2.0 as they
|
|
|
|
allow the signatures of many validators to be compressed into a constant 96
|
2018-10-09 07:16:19 +00:00
|
|
|
bytes and efficiently verified. The Lighthouse project is presently maintaining its own [BLS
|
2018-10-04 00:11:02 +00:00
|
|
|
aggregates library](https://github.com/sigp/signature-schemes), gratefully
|
2018-10-09 07:16:19 +00:00
|
|
|
forked from [@lovesh](https://github.com/lovesh).
|
|
|
|
- **DoS-resistant block pre-processing**: Processing blocks in proof-of-stake
|
2018-10-03 08:37:28 +00:00
|
|
|
is more resource intensive than proof-of-work. As such, clients need to
|
2018-10-09 07:16:19 +00:00
|
|
|
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](https://github.com/ethereum/beacon_chain/issues/103) on
|
|
|
|
[ethereum/beacon_chain](https://github.com/ethereum/beacon_chain).
|
2018-10-03 08:37:28 +00:00
|
|
|
.
|
2018-10-04 00:11:02 +00:00
|
|
|
- **P2P networking**: Eth 2.0 will likely use the [libp2p
|
|
|
|
framework](https://libp2p.io/). Lighthouse aims to work alongside
|
2018-10-09 07:16:19 +00:00
|
|
|
[Parity](https://www.parity.io/) to ensure
|
|
|
|
[libp2p-rust](https://github.com/libp2p/rust-libp2p) 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*, a purpose-built serialization format for sending
|
|
|
|
information across a network. Check out the [SSZ
|
2018-10-03 08:37:28 +00:00
|
|
|
implementation](https://github.com/sigp/lighthouse/tree/master/beacon_chain/utils/ssz)
|
2018-10-09 07:16:19 +00:00
|
|
|
and this
|
2018-10-03 08:37:28 +00:00
|
|
|
[research](https://github.com/sigp/serialization_sandbox/blob/report/report/serialization_report.md)
|
2018-10-09 07:16:19 +00:00
|
|
|
on serialization formats for more information.
|
|
|
|
- **Casper FFG fork-choice**: The [Casper
|
2018-10-03 08:37:28 +00:00
|
|
|
FFG](https://arxiv.org/abs/1710.09437) fork-choice rules allow the chain to
|
|
|
|
select a canonical chain in the case of a fork.
|
2018-10-09 07:16:19 +00:00
|
|
|
- **Efficient state transition logic**: State transition logic governs
|
|
|
|
updates to the validator set as validators log in/out, penalizes/rewards
|
2018-10-04 00:11:02 +00:00
|
|
|
validators, rotates validators across shards, and implements other core tasks.
|
2018-10-09 07:16:19 +00:00
|
|
|
- **Fuzzing and testing environments**: Implementation of lab
|
|
|
|
environments with continuous integration (CI) workflows, providing automated security analysis.
|
2018-10-04 00:11:02 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
In addition to these components we are also working on database schemas, RPC
|
2018-10-04 00:11:02 +00:00
|
|
|
frameworks, specification development, database optimizations (e.g.,
|
2018-10-09 07:16:19 +00:00
|
|
|
bloom-filters), and tons of other interesting stuff (at least we think so).
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
### Contributing
|
|
|
|
|
|
|
|
**Lighthouse welcomes contributors with open-arms.**
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Layer-1 infrastructure is a critical component for the ecosystem and relies
|
|
|
|
heavily on contributions from the community. Building Ethereum 2.0 is a huge task and we
|
2018-10-04 00:49:28 +00:00
|
|
|
refuse to conduct an inappropriate ICO or charge licensing fees. Instead, we
|
|
|
|
fund development through grants and support from Sigma Prime.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
If you would like to learn more about Ethereum 2.0 and/or
|
2018-10-09 07:16:19 +00:00
|
|
|
[Rust](https://www.rust-lang.org/), we are more than happy to on-board you
|
|
|
|
and assign you some tasks. We aim to be as accepting and understanding as
|
2018-10-03 08:37:28 +00:00
|
|
|
possible; we are more than happy to up-skill contributors in exchange for their
|
2018-10-09 07:16:19 +00:00
|
|
|
assistance with the project.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
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.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
If you'd like to contribute, try having a look through the [open
|
|
|
|
issues](https://github.com/sigp/lighthouse/issues) (tip: look for the [good
|
|
|
|
first
|
|
|
|
issue](https://github.com/sigp/lighthouse/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)
|
2018-10-09 07:16:19 +00:00
|
|
|
tag) and ping us on the [gitter](https://gitter.im/sigp/lighthouse) channel. We need
|
2018-10-03 08:37:28 +00:00
|
|
|
your support!
|
|
|
|
|
|
|
|
### Running
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
**NOTE: The cryptography libraries used in this implementation are
|
|
|
|
experimental. As such all cryptography is assumed to be insecure.**
|
2018-07-06 07:54:07 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
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.
|
2018-07-06 07:54:07 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
To run tests, use:
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-03 08:37:28 +00:00
|
|
|
```
|
|
|
|
$ cargo test --all
|
|
|
|
```
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
To run benchmarks, use:
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-03 08:37:28 +00:00
|
|
|
```
|
|
|
|
$ cargo bench --all
|
|
|
|
```
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Lighthouse presently runs on Rust `stable`, however, benchmarks currently require the
|
2018-10-03 08:37:28 +00:00
|
|
|
`nightly` version.
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-03 08:37:28 +00:00
|
|
|
### Engineering Ethos
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Lighthouse aims to produce many small easily-tested components, each separated
|
2018-10-03 08:37:28 +00:00
|
|
|
into individual crates wherever possible.
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-03 08:37:28 +00:00
|
|
|
Generally, tests can be kept in the same file, as is typical in Rust.
|
2018-10-09 07:16:19 +00:00
|
|
|
Integration tests should be placed in the `tests` directory in the crate's root.
|
|
|
|
Particularity large (line-count) tests should be placed into a separate file.
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
A function is not considered complete until a test exists for it. We produce tests to protect
|
|
|
|
against regression (accidentally breaking things) and to provide examples that
|
|
|
|
help readers of the code base understand how functions should (or should not) be used.
|
2018-08-02 09:29:33 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Each pull request is to be reviewed by at least one "core developer" (i.e., someone with
|
|
|
|
write-access to the repository). This helps to ensure bugs are detected, consistency is maintained,
|
|
|
|
and responsibility of errors is dispersed.
|
2018-07-06 07:54:07 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Discussion must be respectful and intellectual. Have fun and make jokes, but
|
|
|
|
always respect the limits of other people.
|
2018-07-06 07:54:07 +00:00
|
|
|
|
2018-10-03 08:37:28 +00:00
|
|
|
### Directory Structure
|
|
|
|
|
|
|
|
Here we provide an overview of the directory structure:
|
|
|
|
|
|
|
|
- `\beacon_chain`: contains logic derived directly from the specification.
|
|
|
|
E.g., shuffling algorithms, state transition logic and structs, block
|
|
|
|
validation, BLS crypto, etc.
|
|
|
|
- `\lighthouse`: contains logic specific to this client implementation. E.g.,
|
|
|
|
CLI parsing, RPC end-points, databases, etc.
|
2018-10-09 07:16:19 +00:00
|
|
|
- `\network-libp2p`: contains a proof-of-concept libp2p implementation. This component will be
|
2018-10-03 08:37:28 +00:00
|
|
|
replaced once research around p2p has been finalized.
|
2018-07-06 07:54:07 +00:00
|
|
|
|
|
|
|
## Contact
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
The best place for discussion is the [sigp/lighthouse gitter](https://gitter.im/sigp/lighthouse).
|
2018-10-03 08:37:28 +00:00
|
|
|
Ping @paulhauner or @AgeManning to get the quickest response.
|
|
|
|
|
|
|
|
|
|
|
|
# What is Ethereum 2.0
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Ethereum 2.0 refers to a new blockchain system currently under development
|
2018-10-04 00:11:02 +00:00
|
|
|
by the Ethereum Foundation and the Ethereum community. The Ethereum 2.0 blockchain
|
2018-10-09 07:16:19 +00:00
|
|
|
consists of 1,025 proof-of-stake blockchains. This includes the "beacon chain" and 1,024
|
2018-10-03 08:37:28 +00:00
|
|
|
"shard chains".
|
|
|
|
|
|
|
|
## Beacon Chain
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
The concept of a beacon chain differs from existing blockchains, such as Bitcoin and
|
|
|
|
Ethereum, in that it doesn't process transactions per se. Instead, it
|
|
|
|
maintains a set of bonded (staked) validators and coordinates these to provide
|
|
|
|
services to a static set of *sub-blockchains* (i.e. shards). Each of these shard blockchains
|
|
|
|
processes normal transactions (e.g. "Transfer 5 ETH from A to B") in parallel whilst deferring
|
|
|
|
consensus mechanisms to the beacon chain.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
2018-10-04 00:11:02 +00:00
|
|
|
Major services provided by the beacon chain to its shards include the following:
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
- A source of entropy, likely using a [RANDAO + VDF
|
|
|
|
scheme](https://ethresear.ch/t/minimal-vdf-randomness-beacon/3566).
|
2018-10-03 10:29:39 +00:00
|
|
|
- Validator management, including:
|
2018-10-03 08:37:28 +00:00
|
|
|
- Inducting and ejecting validators.
|
2018-10-09 07:16:19 +00:00
|
|
|
- Assigning randomly-shuffled subsets of validators to particular shards.
|
|
|
|
- Penalizing and rewarding validators.
|
2018-10-03 08:37:28 +00:00
|
|
|
- Proof-of-stake consensus for shard chain blocks.
|
|
|
|
|
|
|
|
## Shard Chains
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Shards are analogous to CPU cores - they're a resource where transactions can
|
2018-10-03 08:37:28 +00:00
|
|
|
execute in series (one-after-another). Presently, Ethereum is single-core and
|
2018-10-09 07:16:19 +00:00
|
|
|
can only _fully_ process one transaction at a time. Sharding allows processing of multiple
|
|
|
|
transactions simultaneously, greatly increasing the per-second
|
2018-10-03 08:37:28 +00:00
|
|
|
transaction capacity of Ethereum.
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Each shard uses a proof-of-stake consensus mechanism and shares its validators (stakers) with other
|
|
|
|
shards. The beacon chain rotates validators pseudo-randomly between different shards.
|
|
|
|
Shards will likely be the basis of layer-2 transaction
|
|
|
|
processing schemes, however, that is not in scope of this discussion.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
|
|
|
## The Proof-of-Work Chain
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
The proof-of-work (PoW) chain will host a smart contract that enables accounts to deposit 32
|
|
|
|
ETH, a BLS public key, and some [other
|
|
|
|
parameters](https://github.com/ethereum/eth2.0-specs/blob/master/specs/casper_sharding_v2.1.md#pow-chain-changes),
|
|
|
|
allowing them to become beacon chain validators. Each beacon chain will
|
|
|
|
reference a PoW block hash allowing PoW clients to use the beacon chain as a
|
2018-10-04 00:11:02 +00:00
|
|
|
source of [Casper FFG finality](https://arxiv.org/abs/1710.09437), if desired.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
It is a requirement that ETH can move freely between shard chains, as well as between
|
|
|
|
Eth 2.0 and present-Ethereum blockchains. The exact mechanics of these transfers remain
|
|
|
|
an active topic of research and their details are yet to be confirmed.
|
2018-10-04 00:49:28 +00:00
|
|
|
|
2018-10-03 08:37:28 +00:00
|
|
|
## Ethereum 2.0 Progress
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Ethereum 2.0 is not fully specified and a working implementation does not yet exist. Some
|
|
|
|
teams have demos available which indicate progress, but do not constitute a complete product.
|
2018-10-04 00:11:02 +00:00
|
|
|
We look forward to providing user functionality once we are ready to provide a
|
|
|
|
minimum-viable user experience.
|
2018-10-03 08:37:28 +00:00
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
The work-in-progress Eth 2.0 specification lives
|
2018-10-03 08:37:28 +00:00
|
|
|
[here](https://github.com/ethereum/eth2.0-specs/blob/master/specs/casper_sharding_v2.1.md)
|
|
|
|
in the [ethereum/eth2.0-specs](https://github.com/ethereum/eth2.0-specs)
|
2018-10-04 00:11:02 +00:00
|
|
|
repository. The spec is still in a draft phase, however there are several teams
|
2018-10-09 07:16:19 +00:00
|
|
|
basing their Eth 2.0 implementations upon it while the Ethereum Foundation research
|
|
|
|
team continue to fill in the gaps. There is active discussion about the specification in the
|
2018-10-04 00:11:02 +00:00
|
|
|
[ethereum/sharding](https://gitter.im/ethereum/sharding) gitter channel. A
|
|
|
|
proof-of-concept implementation in Python is available at
|
2018-10-03 08:37:28 +00:00
|
|
|
[ethereum/beacon_chain](https://github.com/ethereum/beacon_chain).
|
|
|
|
|
2018-10-09 07:16:19 +00:00
|
|
|
Presently, the specification focuses almost exclusively on the beacon chain,
|
|
|
|
as it is the focus of current development efforts. Progress on shard chain
|
2018-10-03 08:37:28 +00:00
|
|
|
specification will soon follow.
|