> ## 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.

# Sonic S Staking

> How S staking works on Sonic via Yield.xyz

Sonic native staking with validator delegation and auto-compounding rewards.

***

## What this yield is

* **Asset**: S (native Sonic token)
* **Mechanism**: Delegate S to validators
* **Rewards**: Auto-added to existing stake; can also claim separately
* **Unbonding**: 14-day unbonding period
* **Minimum**: None

***

## Available yields

| Yield ID                 | Description         |
| ------------------------ | ------------------- |
| `sonic-s-native-staking` | Native S delegation |

***

## Required inputs

| Argument           | Required | Description          |
| ------------------ | -------- | -------------------- |
| `amount`           | Yes      | Amount of S to stake |
| `validatorAddress` | Yes      | Validator address    |

***

## Actions & lifecycle

<Tabs>
  <Tab title="Enter">
    * Single delegation transaction
    * Active after confirmation
  </Tab>

  <Tab title="Exit">
    * Unbonding period applies
    * Claim after unbonding
  </Tab>
</Tabs>

***

## Example flow

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

  ```bash Get validators theme={null}
  curl --request GET \
    --url https://api.yield.xyz/v1/yields/sonic-s-native-staking/validators \
    --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": "sonic-s-native-staking",
      "address": "0xYOUR_ADDRESS",
      "arguments": {
        "amount": "100",
        "validatorAddress": "0xVALIDATOR"
      }
    }'
  ```
</CodeGroup>

***

## Pending actions

| Action            | Description                                       |
| ----------------- | ------------------------------------------------- |
| `WITHDRAW`        | After 14-day unbonding, withdraw unstaked balance |
| `CLAIM_REWARDS`   | Claim accrued rewards to available balance        |
| `RESTAKE_REWARDS` | Claim and restake rewards to compound             |

***

## Operational notes

<AccordionGroup>
  <Accordion title="14-day unbonding">
    Sonic has a 14-day unbonding period. Plan exits accordingly.
  </Accordion>

  <Accordion title="Reward options">
    Rewards can be claimed separately or restaked for compounding. Check `pendingActions` for available operations.
  </Accordion>
</AccordionGroup>

***

## See also

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