Options for getBlockProduction.

1.0.0

interface GetBlockProductionOpts {
    commitment?: Commitment;
    identity?: undefined;
    maxRetries?: number;
    range?: {
        firstSlot: Slot;
        lastSlot?: Slot;
    };
    routeHint?: "rotate" | "sticky";
    routeIndex?: number;
    timeout?: number;
}

Hierarchy (view full)

Properties

commitment?: Commitment

Commitment level hint.

identity?: undefined
maxRetries?: number

Override max retries for this call.

range?: {
    firstSlot: Slot;
    lastSlot?: Slot;
}
routeHint?: "rotate" | "sticky"

Upstream selection strategy.

routeIndex?: number

Explicit upstream index.

timeout?: number

Override timeout for this call.