Core Protocol

Epoch

A period of 432,000 slots (approximately 2-3 days) that defines a staking cycle. At each epoch boundary, the leader schedule is recalculated based on stake weights, stake activations/deactivations take effect, and inflation rewards are distributed to validators and delegators.

IDepoch

Plain meaning

Start with the shortest useful explanation before going deeper.

A period of 432,000 slots (approximately 2-3 days) that defines a staking cycle. At each epoch boundary, the leader schedule is recalculated based on stake weights, stake activations/deactivations take effect, and inflation rewards are distributed to validators and delegators.

Mental model

Use the quick analogy first so the term is easier to reason about when you meet it in code, docs, or prompts.

Think of it as part of the chain machinery that keeps ordering, execution, or consensus moving.

Technical context

Place the term inside its Solana layer so the definition is easier to reason about.

Consensus, leader rotation, slots, epochs, and the runtime.

Why builders care

Turn the term from vocabulary into something operational for product and engineering work.

Most useful when you are moving through Runtime Builder Path and need grounded vocabulary inside a real build flow.

AI handoff

AI handoff

Use this compact block when you want to give an agent or assistant grounded context without dumping the entire page.

Epoch (epoch)
Category: Core Protocol
Definition: A period of 432,000 slots (approximately 2-3 days) that defines a staking cycle. At each epoch boundary, the leader schedule is recalculated based on stake weights, stake activations/deactivations take effect, and inflation rewards are distributed to validators and delegators.
Related: Slot, Leader Schedule, Stake-Weighted QoS (SWQoS)
Glossary Copilot

Ask grounded Solana questions without leaving the glossary.

Use glossary context, relationships, mental models, and builder paths to get structured answers instead of generic chat output.

Explain this code

Optional: paste Anchor, Solana, or Rust code so the Copilot can map primitives back to glossary terms.

Ask a glossary-grounded question

Ask a glossary-grounded question

The Copilot will answer using the current term, related concepts, mental models, and the surrounding glossary graph.

Concept graph

See the term as part of a network, not a dead-end definition.

These branches show which concepts this term touches directly and what sits one layer beyond them.

Branch

Slot

A time window during which a designated leader validator can produce a block. Each slot lasts approximately 400 milliseconds. Slots are numbered sequentially from genesis and grouped into epochs of 432,000 slots (~2-3 days). Not every slot produces a block—a skipped slot means the leader was offline or too slow.

Branch

Leader Schedule

A deterministic mapping of slots to validators for an entire epoch, computed from stake weights. Validators with more stake are assigned proportionally more leader slots. The schedule is derived using a seed from the previous epoch's randomness, so all validators independently compute the same schedule without coordination.

Branch

Stake-Weighted QoS (SWQoS)

A Quality of Service system introduced in Solana that allocates TPU packet bandwidth to staked validators proportionally to their stake weight, preventing unstaked or lightly staked nodes from flooding leaders with transactions at the expense of stake-backed traffic. Validators that have delegated stake can forward transactions and receive preferential access to leader bandwidth, making it economically meaningful to route transactions through staked RPC or validator nodes. SWQoS is a key defense against spam and denial-of-service attacks that plagued Solana during high-traffic periods.

Next concepts to explore

Keep the learning chain moving instead of stopping at one definition.

These are the next concepts worth opening if you want this term to make more sense inside a real Solana workflow.

Core Protocol

Slot

A time window during which a designated leader validator can produce a block. Each slot lasts approximately 400 milliseconds. Slots are numbered sequentially from genesis and grouped into epochs of 432,000 slots (~2-3 days). Not every slot produces a block—a skipped slot means the leader was offline or too slow.

Core Protocol

Leader Schedule

A deterministic mapping of slots to validators for an entire epoch, computed from stake weights. Validators with more stake are assigned proportionally more leader slots. The schedule is derived using a seed from the previous epoch's randomness, so all validators independently compute the same schedule without coordination.

Network

Stake-Weighted QoS (SWQoS)

A Quality of Service system introduced in Solana that allocates TPU packet bandwidth to staked validators proportionally to their stake weight, preventing unstaked or lightly staked nodes from flooding leaders with transactions at the expense of stake-backed traffic. Validators that have delegated stake can forward transactions and receive preferential access to leader bandwidth, making it economically meaningful to route transactions through staked RPC or validator nodes. SWQoS is a key defense against spam and denial-of-service attacks that plagued Solana during high-traffic periods.

Core Protocol

Erasure Coding

A Reed-Solomon error-correction scheme applied to shreds during block propagation. The leader encodes each batch of 32 data shreds into 32 additional recovery (parity) shreds. Any 32 of the 64 total shreds are sufficient to reconstruct the original data, providing 50% loss tolerance during Turbine propagation.

Commonly confused with

Terms nearby in vocabulary, acronym, or conceptual neighborhood.

These entries are easy to mix up when you are reading quickly, prompting an LLM, or onboarding into a new layer of Solana.

Core Protocoleclipse

Eclipse

A modular Layer-2 rollup launched on Ethereum mainnet in November 2024 that uses the Solana Virtual Machine (SVM) for execution, Celestia for data availability, and RISC Zero for zero-knowledge proofs. Eclipse brings SVM's parallel execution performance to Ethereum users with faster speeds and lower fees, hosting 60+ dApps across DeFi, gaming, and digital services.

AliasEclipse L2
Core Protocolentry

Entry

An ordered unit within a block containing a mix of PoH ticks and transaction batches. Each entry includes a PoH hash, a count of hashes since the previous entry, and zero or more transactions. Entries without transactions are tick entries that advance the PoH clock; entries with transactions prove those transactions occurred between two points in time.

Related terms

Follow the concepts that give this term its actual context.

Glossary entries become useful when they are connected. These links are the shortest path to adjacent ideas.

Core Protocolslot

Slot

A time window during which a designated leader validator can produce a block. Each slot lasts approximately 400 milliseconds. Slots are numbered sequentially from genesis and grouped into epochs of 432,000 slots (~2-3 days). Not every slot produces a block—a skipped slot means the leader was offline or too slow.

Core Protocolleader-schedule

Leader Schedule

A deterministic mapping of slots to validators for an entire epoch, computed from stake weights. Validators with more stake are assigned proportionally more leader slots. The schedule is derived using a seed from the previous epoch's randomness, so all validators independently compute the same schedule without coordination.

Networkstake-weighted-qos

Stake-Weighted QoS (SWQoS)

A Quality of Service system introduced in Solana that allocates TPU packet bandwidth to staked validators proportionally to their stake weight, preventing unstaked or lightly staked nodes from flooding leaders with transactions at the expense of stake-backed traffic. Validators that have delegated stake can forward transactions and receive preferential access to leader bandwidth, making it economically meaningful to route transactions through staked RPC or validator nodes. SWQoS is a key defense against spam and denial-of-service attacks that plagued Solana during high-traffic periods.

Builder paths

This term is part of a curated learning route.

Use these paths when you want to move from isolated lookup into guided exploration.

Builder Path

Runtime Builder Path

Understand how Solana executes work before you optimize or debug it.

6 terms
More in category

Stay in the same layer and keep building context.

These entries live beside the current term and help the page feel like part of a larger knowledge graph instead of a dead end.

Core Protocol

Proof of History (PoH)

A clock mechanism that cryptographically proves the passage of time between events. PoH uses a sequential SHA-256 hash chain where each output becomes the next input, creating a verifiable ordering of events without requiring consensus. The leader produces ~400,000 hashes per slot (~400ms), and any validator can verify the sequence in parallel, enabling Solana's high throughput by removing the need for validators to agree on time.

Core Protocol

Tower BFT

Solana's custom BFT consensus algorithm built on top of Proof of History. Tower BFT uses PoH as a clock to reduce communication overhead in traditional PBFT from O(n²) to O(n). Validators vote on forks with exponentially increasing lockout periods—each consecutive vote doubles the lockout, making rollbacks progressively more expensive. A fork is finalized when it reaches supermajority (66.7%+ of stake).

Core Protocol

Slot

A time window during which a designated leader validator can produce a block. Each slot lasts approximately 400 milliseconds. Slots are numbered sequentially from genesis and grouped into epochs of 432,000 slots (~2-3 days). Not every slot produces a block—a skipped slot means the leader was offline or too slow.

Core Protocol

Block

A set of entries produced by a leader during a single slot. A block contains transactions bundled into entries, each with a PoH hash proving ordering. Blocks are broken into shreds for network propagation via Turbine. Maximum block size is limited by compute units (48M CU cap per block) rather than byte size.