Type alias GetBlockProductionConfig

GetBlockProductionConfig: {
    commitment?: Commitment;
    identity?: string;
    range?: {
        firstSlot: number;
        lastSlot?: number;
    };
}

Type declaration

  • Optional commitment?: Commitment

    Optional commitment level

  • Optional identity?: string

    Only return results for this validator identity (base-58 encoded)

  • Optional range?: {
        firstSlot: number;
        lastSlot?: number;
    }

    Slot range to return block production for. If parameter not provided, defaults to current epoch.

    • firstSlot: number

      first slot to return block production information for (inclusive)

    • Optional lastSlot?: number

      last slot to return block production information for (inclusive). If parameter not provided, defaults to the highest slot

Generated using TypeDoc