UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

12 lines 472 B
import { IBeaconChain } from "../../../chain/index.js"; import { IBeaconDb } from "../../../db/index.js"; import { GetReqRespHandlerFn } from "../types.js"; /** * The ReqRespHandler module handles app-level requests / responses from other peers, * fetching state from the chain and database as needed. */ export declare function getReqRespHandlers({ db, chain }: { db: IBeaconDb; chain: IBeaconChain; }): GetReqRespHandlerFn; //# sourceMappingURL=index.d.ts.map