@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
13 lines (11 loc) • 356 B
text/typescript
import {BeaconConfig} from "@lodestar/config";
import {CustodyConfig} from "../util/dataColumns.js";
import {NodeId} from "./subnets/interface.js";
/**
* Store shared data for different modules in the network stack.
*/
export type NetworkConfig = {
readonly nodeId: NodeId;
readonly config: BeaconConfig;
readonly custodyConfig: CustodyConfig;
};