Skip to content

Lodestar package structure

Lodestar monorepo dependency graph

This is a diagram of the various lodestar-* packages in the Lodestar monorepo and how they fit together:

Info

note: this dependency graph only applies to dependencies as they are used in the src/ folders of each package, not in test/

graph TD lodestar["lodestar"]:::nodemodule cli["lodestar-cli"]:::nodemodule config["lodestar-config"]:::nodemodule db["lodestar-db"]:::nodemodule fork-choice["lodestar-fork-choice"]:::nodemodule params["lodestar-params"]:::nodemodule types["lodestar-types"]:::nodemodule utils["lodestar-utils"]:::nodemodule validator["lodestar-validator"]:::nodemodule state-trans["lodestar-beacon-state-transition"]:::nodemodule params-->config params-->types types-->lodestar types-->cli types-->config types-->validator types-->fork-choice config-->lodestar config-->cli config-->validator config-->fork-choice config-->state-trans config-->db utils-->lodestar utils-->db utils-->cli utils-->validator utils-->fork-choice utils-->state-trans state-trans-->lodestar state-trans-->validator state-trans-->fork-choice db-->lodestar db-->validator fork-choice-->lodestar lodestar-->cli validator-->cli click cli "https://github.com/ChainSafe/lodestar/tree/master/packages/cli" click lodestar "https://github.com/ChainSafe/lodestar/tree/master/packages/lodestar" click validator "https://github.com/ChainSafe/lodestar/tree/master/packages/validator" click db "https://github.com/ChainSafe/lodestar/tree/master/packages/db" click params "https://github.com/ChainSafe/lodestar/tree/master/packages/params" click state-trans "https://github.com/ChainSafe/lodestar/tree/master/packages/beacon-state-transition" click fork-choice "https://github.com/ChainSafe/lodestar/tree/master/packages/fork-choice" click types "https://github.com/ChainSafe/lodestar/tree/master/packages/types" click utils "https://github.com/ChainSafe/lodestar/tree/master/packages/utils" click config "https://github.com/ChainSafe/lodestar/tree/master/packages/config" classDef nodemodule fill:grey,stroke-width:2px,stroke:black,color:white; linkStyle default stroke:grey, fill:none,stroke-width:1.5px;

For a list of all the packages in the monorepo and a description for each, click here.

Let's talk about how each package fits together in finer detail, from top to bottom, following the chart.

@chainsafe/lodestar-params

@chainsafe/lodestar-params contains the parameters for configuring an Ethereum Consensus network. For example, the mainnet params

@chainsafe/lodestar-types

@chainsafe/lodestar-types contains Eth Consensus ssz types and data structures.

@chainsafe/lodestar-config

@chainsafe/lodestar-config combines lodestar-params and lodestar-types together to be used as a single config object across the other Lodestar packages.

@chainsafe/lodestar-utils

@chainsafe/lodestar-utils contains various utilities that are common among the various Lodestar monorepo packages.

@chainsafe/lodestar-beacon-state-transition

@chainsafe/lodestar-beacon-state-transition contains the Lodestar implementation of the beacon state transition function, which is used by @chainsafe/lodestar to perform the actual beacon state transition. This package also contains various functions used to calculate info about the beacon chain (such as computeEpochAtSlot) which are used by @chainsafe/lodestar-fork-choice and @chainsafe/lodestar-validator

@chainsafe/lodestar-db

@chainsafe/lodestar-db is where all persistent data about the beacon node is stored. Any package that needs to read or write persistent beacon node data depends on lodestar-db.

@chainsafe/lodestar-fork-choice

@chainsafe/lodestar-fork-choice holds the methods for reading/writing the fork choice DAG. The @chainsafe/lodestar package is the sole consumer of this package because the beacon node itself is what controls when the fork choice DAG is updated. For a good explainer on how the fork choice itself works, see the annotated fork choice spec. This is an annotated version of the Eth Consensus fork choice spec which lodestar-fork-choice is based on.

@chainsafe/lodestar-validator

@chainsafe/lodestar-validator contains the validator client. The sole consumer of this package is @chainsafe/lodestar-cli, which provides CLI access to run and configure the validator client. However, the validator client communicates to a REST API that is contained in @chainsafe/lodestar (specifically in the api module) to perform the validator duties.

@chainsafe/lodestar

@chainsafe/lodestar contains the actual beacon node process itself, which is the aggregate of all the above packages and the "brain" of the Lodestar beacon chain implementation. All of the node modules live in this package as well.

@chainsafe/lodestar-cli

@chainsafe/lodestar-cli combines everything together for CLI usage and configuration of the beacon node and validator.