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

# Axelar AXL Staking

> How AXL staking works on Axelar via Yield.xyz

Axelar AXL staking with validator delegation.

***

## What this yield is

* **Asset**: AXL (native Axelar token)
* **Mechanism**: Delegate AXL to validators
* **Rewards**: Block rewards + cross-chain fees
* **Unbonding**: 7-day unbonding period

***

## Available yields

| Yield ID                    | Description           |
| --------------------------- | --------------------- |
| `axelar-axl-native-staking` | Native AXL delegation |

<Note>
  Axelar has a shorter 7-day unbonding period compared to most Cosmos chains.
</Note>

***

## Required inputs

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

***

## Actions & lifecycle

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

  <Tab title="Exit">
    * 7-day unbonding period (shorter than most)
  </Tab>

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

***

## Example flow

<CodeGroup>
  ```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": "axelar-axl-native-staking",
      "address": "axelar1YOUR_ADDRESS",
      "arguments": {
        "amount": "100",
        "validatorAddress": "axelarvaloperVALIDATOR"
      }
    }'
  ```
</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>
