> For the complete documentation index, see [llms.txt](https://vote.xparty.win/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://vote.xparty.win/ecosystem.md).

# Ecosystem

## Lifecycle

Stake [XPX](https://alcor.exchange/analytics/tokens/xpx-xparty?tab=pools) to get tokens

Burn PrezX tokens to vote.

Vote as many times as you like.

One memo per account, updates with vote

Get XP + Veep tokens for each vote &#x20;

<details>

<summary>Get Tetrahedral rewards in XP + VeepX tokens</summary>

```cpp
   // You'll earn the position you reach in the Tetrahedral series
   // There is a cap to the amount a person can earn in XP per vote
   // We may change mechanics at any time, and 
   TETRAHEDRAL = {1, 4, 10, 20, 35, 56, 84, 120, 165, 220, 286, 364, 455, 560, 680, 816, 969, 1140, 1330, 1540, 1771, 2024, 2300, 2600, 4294967295};
   amount = quantity.amount;
   xp_amount = 0;
    tetra_size = TETRAHEDRAL.size();

   for (size_t i = 0; i < tetra_size; ++i) {
      if (amount < TETRAHEDRAL[i]) {
         xp_amount = i; // Pays according to position reached. This means you'll get 10 XP for voting 
         break;
      }
   }
```

</details>

\
Earn voting tokens by staking with [XPX](https://alcor.exchange/analytics/tokens/xpx-xparty?tab=pools).

## 👨‍🌾 Farms

👉 <http://alcor.exchange/farm> search "XPX" for all farms

* 🚜 300M for WAX + XPX Farm
* 🔴/🔵 100M for TRUMPX / HARRISX + WAX Farm (single reward)
* 🐶 100M for WUF + XPX Farm

🌞 Rewards for 360 days 🌞

## 🏀 Community Farms 🙌

🦝 50M WOMBAT + XPX [@adoptwombat](https://twitter.com/adoptwombat)

👾 50M PXJ + XPX [@PxJourney](https://twitter.com/PxJourney)

🪐 50M MARTIA + XPX [@ColonizeMarsNFT](https://twitter.com/ColonizeMarsNFT)

👽 50M TLM + XPX [@AlienWorlds](https://twitter.com/AlienWorlds)

💪 50M BRWL + XPX [@bc\_brawlers](https://twitter.com/bc_brawlers)

🖼️ 50M NEFTY + XPX [@neftyblocks](https://twitter.com/neftyblocks)

💜 50M PURPLE + XPX [@CurrentXChange](https://twitter.com/CurrentXChange)

⚖️ 50M LSW + XPX [@WAX\_io](https://twitter.com/WAX_io)

🌞 Rewards for 360 days 🌞


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://vote.xparty.win/ecosystem.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
