UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

17 lines 579 B
import { ChainForkConfig } from "@lodestar/config"; import { Logger } from "@lodestar/utils"; import { IBeaconChain } from "../../chain/index.js"; import { IBeaconDb } from "../../db/index.js"; import { Metrics } from "../../metrics/index.js"; import { INetwork } from "../../network/index.js"; import { IBeaconSync } from "../../sync/index.js"; export type ApiModules = { config: ChainForkConfig; chain: IBeaconChain; db: IBeaconDb; logger: Logger; metrics: Metrics | null; network: INetwork; sync: IBeaconSync; }; //# sourceMappingURL=types.d.ts.map