# Overview

Staking on the Ethereum network involves locking up tokens to support the network's security and operations. In return, stakers earn rewards.

{% hint style="info" %}
The Ethereum blockchain, renowned for its smart contract functionality and vibrant ecosystem, employs the Proof of Stake (PoS) consensus mechanism in its Ethereum 2.0 upgrade. This transition enhances scalability, security, and energy efficiency. By staking ETH, Ethereum's native token, validators maintain the network, secure the blockchain, and incentivize active participation, ensuring the network remains robust and efficient.
{% endhint %}

The **Chorus One SDK** simplifies the staking process on the Ethereum network, providing developers with the tools needed to build, sign, and broadcast staking transactions.

## Pick the Pool Technology

Before you start developing your staking application, you need to decide which pool technology you want to use. We recommend the Pooled Staking for most use cases, as it is easy to start using with no minimum ETH to stake. For large delegators, we support Native Staking as well through our SDK.

|                    | [Pooled Staking](/build-your-staking-dapp/ethereum/pooled_staking_overview.md) | [Native Staking](/build-your-staking-dapp/ethereum/native_staking_overview.md) |
| ------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
| Best for           | Most use cases                                                                 | Large delegators                                                               |
| Delegators         | Unlimited                                                                      | 200 / batch                                                                    |
| Minimal Stake      | None                                                                           | 32 ETH per validator                                                           |
| Partial Withdrawal | ✅                                                                              | ❌ Must withdraw all funds                                                      |

Once you have chosen the pool technology, continue with the respective guide.

* [Pooled Staking Guide](/build-your-staking-dapp/ethereum/pooled_staking_overview.md)
* [Natie Staking](/build-your-staking-dapp/ethereum/native_staking_overview.md)


---

# 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://sdk.chorus.one/build-your-staking-dapp/ethereum/overview.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.
