> For the complete documentation index, see [llms.txt](https://sdk.chorus.one/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://sdk.chorus.one/build-your-staking-dapp/ethereum/overview.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://sdk.chorus.one/build-your-staking-dapp/ethereum/overview.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
