> ## Documentation Index
> Fetch the complete documentation index at: https://yieldxyz.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Sei SEI Staking

> How SEI staking works on Sei via Yield.xyz

Sei SEI staking with validator delegation.

***

## What this yield is

* **Asset**: SEI (native Sei token)
* **Mechanism**: Delegate SEI to validators
* **Rewards**: Block rewards
* **Unbonding**: 21-day unbonding period

***

## Available yields

| Yield ID                 | Description           |
| ------------------------ | --------------------- |
| `sei-sei-native-staking` | Native SEI delegation |

***

## Required inputs

| Argument           | Required | Description                                |
| ------------------ | -------- | ------------------------------------------ |
| `amount`           | Yes      | Amount of SEI to stake                     |
| `validatorAddress` | Yes      | Validator operator address (seivaloper...) |

***

## Actions & lifecycle

<Tabs>
  <Tab title="Enter">
    * Single delegation transaction
    * Rewards begin immediately
  </Tab>

  <Tab title="Exit">
    * 21-day unbonding period
  </Tab>

  <Tab title="Manage">
    * Claim rewards
    * Redelegate
  </Tab>
</Tabs>

***

## Example flow

<CodeGroup>
  ```bash Get yield metadata theme={null}
  curl --request GET \
    --url https://api.yield.xyz/v1/yields/sei-sei-native-staking \
    --header 'accept: application/json' \
    --header 'x-api-key: <API_KEY>'
  ```

  ```bash Enter staking theme={null}
  curl --request POST \
    --url https://api.yield.xyz/v1/actions/enter \
    --header 'accept: application/json' \
    --header 'content-type: application/json' \
    --header 'x-api-key: <API_KEY>' \
    --data '{
      "yieldId": "sei-sei-native-staking",
      "address": "sei1YOUR_ADDRESS",
      "arguments": {
        "amount": "100",
        "validatorAddress": "seivaloperVALIDATOR"
      }
    }'
  ```
</CodeGroup>

***

## See also

<CardGroup cols={2}>
  <Card title="Non-EVM Overview" icon="globe" href="/documentation/coverage/supported-yields/staking/non-evm">
    All non-EVM staking
  </Card>
</CardGroup>
