Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions docs/developer-docs/docs/learn/warden-networks.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ Warden networks use two chain IDs on different layers. The Cosmos chain ID is th
<td>**Validator guides**</td>
<td>[Operate a node: Mainnet](/category/mainnet)</td>
</tr>
<tr>
<td>**Block explorer**</td>
<td>[Warden Protocol explorer](https://explorer.wardenprotocol.org)</td>
</tr>
</table>

## Barra testnet
Expand Down Expand Up @@ -78,19 +82,19 @@ Warden networks use two chain IDs on different layers. The Cosmos chain ID is th
<td>**Denomination**</td>
<td>`award` (1 award = 10^-18 [WARD](/ward/introduction))</td>
</tr>
<tr>
<td>**Faucet**</td>
<td>[Barra faucet](https://faucet.wardenprotocol.org)</td>
</tr>
<tr>
<td>**Validator guides**</td>
<td>[Operate a node: Barra testnet](/category/barra-testnet)</td>
</tr>
<tr>
<td>**Faucet**</td>
<td>[Barra faucet](https://faucet.wardenprotocol.org)</td>
</tr>
</table>

## Connect Warden to an EVM wallet
## Add Warden as a custom network

You can connect **Warden Mainnet** to any **EVM-compatible wallet**:
You can add **Warden Mainnet** as a custom network to any **EVM-compatible wallet**:

1. In your preferred wallet, start adding a custom network.
2. Enter the following details:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,9 @@ warden_8765-1
## Denomination

Mainnet's denomination is `award` (1 award = 10^-18 [WARD](/ward/introduction)).

## Block explorer

The Mainnet's block explorer is available here:

- [Warden Protocol explorer](https://explorer.wardenprotocol.org)
20 changes: 20 additions & 0 deletions docs/developer-docs/docs/ward/get-ward.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
sidebar_position: 7
---

# Get $WARD

There are two ways to get $WARD:

- **Buy**: You can buy $WARD from CEXs & DEXs. This **does not require a Warden account**: you manage purchased WARD entirely through your external wallet.
- **Swap & bridge**: External wallets can interact with third-party apps for actions such as swapping and bridging $WARD. Please note that it's **currently not possible to swap $WARD in Warden**.

$WARD is listed on the following platforms:

- [Aster](https://www.asterdex.com/en/trade/pro/futures/WARDUSDT)
- [Binance Alpha](https://www.binance.com/en/alpha/bsc/0x6dc200b21894af4660b549b678ea8df22bf7cfac)
- [Bitget](https://www.bitget.com/asia/spot/WARDUSDT)
- [Kraken](https://pro.kraken.com/app/trade/WARD-usd)
- [KuCoin](https://www.kucoin.com/trade/WARD-USDT)
- [LBank](https://www.lbank.com/trade/ward_usdt)
- [MEXC](https://www.mexc.com/exchange/WARD_USDT)
2 changes: 1 addition & 1 deletion docs/help-center/docs/warden-app/trade.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ Perps use a single combined position per token. For example, if you already have

#### Margin

**Margin** is the security deposit that keeps your [positions](#position) open. If your margin drops too low because the position is losing money, a [liquidation](#liquidation) will happen: Warden will automatically close the position. Note that Warden uses **cross-margin**: there is one shared margin pool for all positions.
**Margin** is the security deposit that keeps your [positions](#position) open. If your margin drops too low because the position is losing money, a [liquidation](#liquidation) will happen: Warden will automatically close the position. Note that Warden uses **cross-margin**: there's one shared margin pool for all positions.

#### Leverage

Expand Down
45 changes: 40 additions & 5 deletions docs/help-center/docs/warden-app/ward-airdrop.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ We tracked the mindshare you had generated during the Kaito Pre-TGE campaign.
- Register for the airdrop
- **Distribution mechanism**: [claim-based](#claim-ward).

:::note
:::not
When you claim your reward, your Pre-Early status, tier, and benefits are automatically detected based on the linked wallet.
:::

Expand All @@ -151,10 +151,45 @@ When you claim your reward, your Pre-Early status, tier, and benefits are automa
In this case, registration for the airdrop wasn't required.
:::

## Other ways to get WARD
## Withdraw WARD

If you want the **security of self-custody** without the complexity, **keep your WARD in Warden**.

:::note
In Warden, **only you can access your private keys**. They’re securely split and never stored in one place, coming together only momentarily to approve transactions. This lets you transact securely, use Web3 apps, and manage assets with natural language.
:::

If you still prefer to withdraw your WARD to an **external EVM wallet**, follow these steps:

1. [Add Warden as a custom network](https://docs.wardenprotocol.org/learn/warden-networks#add-warden-as-a-custom-network) to your external wallet.
2. Copy your external EVM wallet address.
3. Log in: 👉 [Warden](https://app.wardenprotocol.org)
4. Click the wallet icon in the top-right corner to open your [main account](manage-your-wallets#the-main-account).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

# Find and read the relevant file sections
fd -e md -g '*ward-airdrop*' | head -1

Repository: warden-protocol/wardenprotocol

Length of output: 122


🏁 Script executed:

# Check the file exists and read relevant lines
if [ -f "docs/help-center/docs/warden-app/ward-airdrop.md" ]; then
  echo "=== Lines 27, 49, 74, 171 from ward-airdrop.md ==="
  sed -n '27p;49p;74p;171p' "docs/help-center/docs/warden-app/ward-airdrop.md"
  echo ""
  echo "=== Lines 158-202 context ==="
  sed -n '158,202p' "docs/help-center/docs/warden-app/ward-airdrop.md"
fi

Repository: warden-protocol/wardenprotocol

Length of output: 3094


🏁 Script executed:

# Find manage-your-wallets.md and check headings
fd -e md -g '*manage-your-wallets*' | head -1 | xargs cat -n | grep -E "^[[:space:]]+[0-9]+[[:space:]]+(## |### )" | head -20

Repository: warden-protocol/wardenprotocol

Length of output: 356


Fix broken anchor on line 171 — should be #main-account, not #the-main-account.

Lines 27, 49, and 74 all correctly reference manage-your-wallets#main-account, which matches the heading ## Main account in the manage-your-wallets.md file. Line 171 uses #the-main-account instead, causing the link to fail.

📝 Proposed fix
-4. Click the wallet icon in the top-right corner to open your [main account](manage-your-wallets#the-main-account).
+4. Click the wallet icon in the top-right corner to open your [main account](manage-your-wallets#main-account).
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
4. Click the wallet icon in the top-right corner to open your [main account](manage-your-wallets#the-main-account).
4. Click the wallet icon in the top-right corner to open your [main account](manage-your-wallets#main-account).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/help-center/docs/warden-app/ward-airdrop.md` at line 171, The anchor in
the sentence referencing the wallet main account is incorrect: change the link
fragment `#the-main-account` to `#main-account` so it matches the heading `##
Main account` used elsewhere (e.g., other references that use
`manage-your-wallets#main-account`); update the anchor in the line that
currently says `manage-your-wallets#the-main-account` to
`manage-your-wallets#main-account`.

5. Click **Send** to start a chat with the [Warden Agent](explore-ai-agents#warden-agent).
6. Type this: *Send [amount] WARD on Warden Chain to [EVM address]*.
7. Confirm the transaction.
8. Verify the withdrawal in the [Warden Protocol explorer](https://explorer.wardenprotocol.org).

:::tip
When specifying the withdrawal amount, keep at least **0.001 WARD** to cover gas fees.
:::

![Access your wallet in Warden](../../static/img/warden-app/manage-your-wallets-1.png)
![Send an asset in Warden](../../static/img/warden-app/airdrop-withdraw.png)

## Get extra WARD

Besides the airdrop, there are two ways to get WARD:

Besides the airdrop, you can **buy WARD** using **external wallets**, outside of Warden.
- **Buy**: You can buy WARD from CEXs & DEXs. This **does not require a Warden account**: you manage purchased WARD entirely through your external wallet.
- **Swap & bridge**: External wallets can interact with third-party apps for actions such as swapping and bridging WARD. Please note that it's **currently not possible to swap WARD in Warden**.

Buying WARD from CEXs & DEXs **does not require a Warden account**. You manage purchased WARD entirely through your external wallet.
WARD is listed on the following platforms:

External wallets can interact with third-party apps for actions such as **swapping and bridging WARD**.
- [Aster](https://www.asterdex.com/en/trade/pro/futures/WARDUSDT)
- [Binance Alpha](https://www.binance.com/en/alpha/bsc/0x6dc200b21894af4660b549b678ea8df22bf7cfac)
- [Bitget](https://www.bitget.com/asia/spot/WARDUSDT)
- [Kraken](https://pro.kraken.com/app/trade/WARD-usd)
- [KuCoin](https://www.kucoin.com/trade/WARD-USDT)
- [LBank](https://www.lbank.com/trade/ward_usdt)
- [MEXC](https://www.mexc.com/exchange/WARD_USDT)
Comment on lines +193 to +199
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Aster is misclassified: it is a perpetuals DEX, not a centralized exchange, and the link goes to a futures market, not spot.

Two distinct accuracy problems here:

  1. Wrong category: Aster is "a next-generation decentralized perpetual exchange." It is "a multi-chain DEX offering perpetual and spot trading." Listing it under Centralized exchanges is factually incorrect.

  2. Wrong market type: The linked URL (/trade/pro/futures/WARDUSDT) goes to the perpetuals/futures interface, not a spot market. Users who follow this link to "buy" WARD will land on a leveraged derivatives page, which is a materially different (and riskier) action than buying spot.

Either move Aster to a separate DEXs / Derivatives subsection with a note that it offers perpetual contracts, or replace the link with the Aster spot market URL if one exists for WARD.

📝 Suggested restructuring
 **Centralized exchanges**
-
-- [Aster](https://www.asterdex.com/en/trade/pro/futures/WARDUSDT)
 - [Bitget](https://www.bitget.com/asia/spot/WARDUSDT)
 - [Kraken](https://pro.kraken.com/app/trade/WARD-usd)
 - [KuCoin](https://www.kucoin.com/trade/WARD-USDT)
 - [LBank](https://www.lbank.com/trade/ward_usdt)
 - [MEXC](https://www.mexc.com/exchange/WARD_USDT)
+
+**Decentralized exchanges (derivatives)**
+- [Aster](https://www.asterdex.com/en/trade/pro/futures/WARDUSDT) (perpetual futures)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/help-center/docs/warden-app/ward-airdrop.md` around lines 193 - 199, The
entry "Aster" is misclassified under the "**Centralized exchanges**" list and
its URL "/trade/pro/futures/WARDUSDT" points to a perpetuals/futures market;
either move "Aster" out of the "**Centralized exchanges**" section into a new
"DEXs / Derivatives" or "Decentralized exchanges" subsection and annotate that
it offers perpetual contracts, or replace the Aster link with the correct
spot-market URL for WARD (if available) and keep it only in the appropriate
spot/DEX list; update the link text and any note so readers aren’t directed to a
leveraged derivatives page when seeking to buy spot WARD.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading