# What is Proof of Stake?

## 1. Definition

&#x20;         **Proof of Stake (PoS)** is a consensus protocol used by blockchain networks to secure the system, validate transactions, and produce new blocks. Unlike **Proof of Work (PoW)**, which relies on computational power, PoS assigns validation rights to participants—called validators—based on the amount of cryptocurrency they lock (stake) into the network.

&#x20;         In this model, the probability of being selected to validate or propose a block increases proportionally with the amount staked. This approach dramatically reduces energy consumption and supports greater scalability compared to traditional PoW systems.

&#x20;         To maintain network integrity, validators are held accountable: if they act maliciously or fail to fulfill their duties, they risk losing a portion of their stake as a penalty.

## 2. Core components

| **Component**      | **Description**                                                               |
| ------------------ | ----------------------------------------------------------------------------- |
| **Validators**     | Participants who lock up coins to secure the network and validate blocks.     |
| **Block Proposal** | Validators are pseudo-randomly chosen to propose the next block.              |
| **Attestation**    | Other validators vote to confirm the proposed block is valid.                 |
| **Finality**       | When a block becomes irreversible, often after multiple confirmations.        |
| **Stake**          | The amount of cryptocurrency a validator locks in the protocol as collateral. |

## 3. How it works

&#x20;         **Proof of Stake (PoS)** operates through a structured series of steps that ensure secure, decentralized, and efficient block production. It replaces the energy-intensive mining process of Proof of Work with a more scalable, capital-based model. Here’s how it works in most modern PoS systems:

### **3.1. Staking**

&#x20;         Users lock a certain amount of cryptocurrency (e.g., ICBX) into a smart contract to become eligible for participation as validators. This process is called **staking**. Key aspects include:

&#x20;      **Minimum stake requirement**: Networks may set a minimum token amount required to participate.

&#x20;      **Lock-up period**: Tokens are locked for a defined period, during which they cannot be withdrawn.

&#x20;      **Delegation (in some systems)**: Users can delegate their tokens to trusted validators without directly validating blocks themselves.

&#x20;         The more a validator (or their delegators) stake, the higher the chance of being selected to produce or validate blocks.

### **3.2. Validator Selection**

&#x20;        Validators are selected to propose or attest to new blocks based on a **weighted random selection**. The most common factors include:

&#x20;        **Randomness**: Many networks use a Verifiable Random Function (VRF) or RANDAO to introduce cryptographic randomness.

&#x20;       **Amount staked**: Higher stakes increase the chances of being selected.

&#x20;       **Staking duration or history**: Some networks factor in how long tokens have been staked or validator reliability.

&#x20;        **Performance score**: Past behavior (uptime, correctness) may impact selection weight.

### **3.3. Block Proposal and Voting**

&#x20;         Once selected:

&#x20;         The **proposer** creates a block containing transactions and metadata.

&#x20;         A **committee of validators (attesters)** vote on whether the proposed block is valid.

&#x20;         If a **quorum** is reached (i.e., enough validators attest), the block is added to the chain.

&#x20;         This process ensures Byzantine Fault Tolerance (BFT), where the system remains secure even if a minority of validators behave maliciously.

### **3.4. Rewards**

&#x20;         Validators are compensated for their work through:

&#x20;         **Transaction fees**: Collected from users who include them in their transactions.

&#x20;         **Block rewards**: Newly minted tokens, if the protocol supports inflationary rewards.

&#x20;         **MEV (Miner/Validator Extractable Value)**: In some cases, validators can prioritize high-value transactions for additional income.

&#x20;         Rewards are often distributed proportionally based on stake and **validator uptime** or **performance metrics**.

### **3.5. Slashing (Penalties)**

&#x20;         To maintain network trust and accountability, PoS includes a **slashing mechanism**:

&#x20;         Validators who act maliciously (e.g., **double-signing**, **surround voting**, or proposing invalid blocks) are penalized.

&#x20;        Penalties range from **minor loss of rewards** to **partial or total loss of staked tokens**.

&#x20;        Validators who are **offline or non-responsive** for long periods may be **ejected** from the active set or **fined**.

## 4. Advantages of Proof of Stake

### **4.1. High Throughput for Scalable Applications**

&#x20;         PoS accelerates transaction processing and supports higher data capacity across the network. This makes it particularly effective for platforms that require rapid execution and can handle large transaction volumes, such as DeFi, gaming, and real-time applications.

### **4.2. Instant Transaction Finality**

&#x20;         Through validator consensus, blocks achieve finality almost instantly without requiring multiple confirmations. This provides fast, seamless transaction approvals with strong consistency and security guarantees.

### **4.3. Minimal Resource Usage**

&#x20;         By removing the need for energy-intensive mining, PoS dramatically reduces energy consumption. Its lightweight and efficient design is environmentally sustainable while maintaining high security.

### **4.4. Fair and Adaptive Incentive Structure**

&#x20;         Validator rewards are distributed through a collective and transparent model that aligns incentives with active participation. This fair structure encourages decentralization and fosters long-term network engagement.

### **4.5. Decentralized Governance and Decision-Making**

&#x20;         Token holders can participate in selecting validators and influencing protocol upgrades. This delegation-based governance model supports informed decision-making, increases operational resilience, and strengthens overall protocol integrity.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.icb.network/getting-started/technical-overview/what-is-proof-of-stake.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
