Introduction
Lantern.Beacon is a .NET library that allows tracking Ethereum's consensus in a lightweight manner.
Last updated
Lantern.Beacon is a .NET library that allows tracking Ethereum's consensus in a lightweight manner.
Last updated
This library can be used for building applications that need to use Ethereum's consensus in a trustless manner.
One example application would be a light client that uses the sync committee for tracking Ethereum's consensus on devices with limited compute resources such as a smartphone.
The light client sync protocol can be used for verifying Ethereum's consensus without having to run a full consensus node. In the Ethereum's Proof of Stake chain, also known as the Beacon chain, there is a special type of committee of validators known as the sync committee.
A sync committee is made up of 512 validators who are responsible for generating a signature for each new block. By generating a signature, the validators collectively agree on the validity of the block's contents. This signature is included in the block as an aggregated value so it can be cheaply verified. Tracking the participation of this committee is very lightweight compared to tracking the participation of the entire validator set.
To learn more about this protocol, here are some links to useful resources:
This library follows the technical documentation outlined in the for correctly communicating with consensus layer nodes and running the sync protocol.