SysvarEpochSchedule

type SysvarEpochSchedule = Readonly<{
  firstNormalEpoch: Epoch;
  firstNormalSlot: Slot;
  leaderScheduleSlotOffset: bigint;
  slotsPerEpoch: bigint;
  warmup: boolean;
}>;

Includes the number of slots per epoch, timing of leader schedule selection, and information about epoch warm-up time.