@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
10 lines • 454 B
TypeScript
import { ChainForkConfig } from "@lodestar/config";
import { BinaryRepository, Db } from "@lodestar/db";
/**
* Store temporary checkpoint states.
* We should only put/get binary data from this repository, consumer will load it into an existing state ViewDU object.
*/
export declare class CheckpointStateRepository extends BinaryRepository<Uint8Array> {
constructor(config: ChainForkConfig, db: Db);
}
//# sourceMappingURL=checkpointState.d.ts.map