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

# ETH Figment Staking

> Stake ETH with Figment institutional validator provider

Ethereum staking with Figment, an institutional validator provider.

***

## What this yield is

* **Asset**: ETH (native Ethereum)
* **Provider**: Figment (institutional validator operator)
* **Mechanism**: Stake ETH to Figment-operated validators
* **Rewards**: Consensus layer + execution layer rewards

***

## Required inputs

| Argument | Required | Description            |
| -------- | -------- | ---------------------- |
| `amount` | Yes      | Amount of ETH to stake |

***

## Actions & lifecycle

<Tabs>
  <Tab title="Enter">
    * Single transaction for native ETH
    * Position enters validator queue
    * Activation timing depends on Ethereum queue
  </Tab>

  <Tab title="Exit">
    * Enters Ethereum exit queue
    * Track balance lifecycle until claimable
  </Tab>
</Tabs>

***

## Example flow

<CodeGroup>
  ```bash Get yield metadata theme={null}
  curl --request GET \
    --url https://api.yield.xyz/v1/yields/ethereum-eth-figment-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": "ethereum-eth-figment-staking",
      "address": "0xYOUR_ADDRESS",
      "arguments": { "amount": "32" }
    }'
  ```
</CodeGroup>

***

## See also

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