UNPKG

@lodestar/beacon-node

Version:

A Typescript implementation of the beacon chain

15 lines 564 B
import { ChainForkConfig } from "@lodestar/config"; import { Db, Repository } from "@lodestar/db"; import { Slot } from "@lodestar/types"; import { BlobSidecarsWrapper } from "./blobSidecars.js"; /** * blobSidecarsWrapper by slot * * Used to store finalized BlobSidecars */ export declare class BlobSidecarsArchiveRepository extends Repository<Slot, BlobSidecarsWrapper> { constructor(config: ChainForkConfig, db: Db); getId(value: BlobSidecarsWrapper): Slot; decodeKey(data: Uint8Array): number; } //# sourceMappingURL=blobSidecarsArchive.d.ts.map