@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
12 lines • 470 B
TypeScript
import { BuilderIndex, Slot } from "@lodestar/types";
/**
* Tracks execution payload bids we've already seen per (slot, builder).
*/
export declare class SeenExecutionPayloadBids {
private readonly builderIndexesBySlot;
private lowestPermissibleSlot;
isKnown(slot: Slot, builderIndex: BuilderIndex): boolean;
add(slot: Slot, builderIndex: BuilderIndex): void;
prune(currentSlot: Slot): void;
}
//# sourceMappingURL=seenExecutionPayloadBids.d.ts.map