> For the complete documentation index, see [llms.txt](https://docs.arenadao.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.arenadao.org/the-arena-architecture/competition-modules.md).

# Competition Modules

Arena DAO offers a diverse range of competition modules, each designed to cater to different types of contests and user preferences. Our modular approach allows for flexible, scalable, and customizable competition experiences within the decentralized ecosystem.

{% @mermaid/diagram content="flowchart TB
Start(\[Start]) --> HasDues{Competition<br>Has Dues?}
HasDues -->|Yes| PendingDues\[Pending:<br>Awaiting Dues]
HasDues -->|No| ActiveCompetition\[Active Competition]

```
PendingDues -->|All Dues Paid| ActiveCompetition

ActiveCompetition -->|Expiration Reached| ConsensusCheck{Consensus<br>Reached?}
ConsensusCheck -->|Yes| InactiveCompetition[Inactive Competition]
ConsensusCheck -->|No| JailedCompetition[Jailed Competition]

JailedCompetition -->|Arena DAO<br>Resolves| InactiveCompetition

InactiveCompetition --> End([End])

UnlockedEscrow[Escrow:<br>Unlocked] -->|Competition<br>Activated| LockedEscrow[Escrow:<br>Locked]
LockedEscrow -->|Competition<br>Resolved| UnlockedEscrow

PendingDues -.-> UnlockedEscrow
ActiveCompetition -.-> LockedEscrow
InactiveCompetition -.-> UnlockedEscrow

classDef default fill:#4EA5D9,stroke:#2E4057,stroke-width:2px,color:#2E4057;
classDef decision fill:#F99B45,stroke:#2E4057,stroke-width:2px,color:#2E4057;
classDef escrow fill:#73D2DE,stroke:#2E4057,stroke-width:2px,color:#2E4057;
classDef startend fill:#2ECC71,stroke:#2E4057,stroke-width:2px,color:#2E4057;

class HasDues,ConsensusCheck decision;
class UnlockedEscrow,LockedEscrow escrow;
class Start,End startend;
```

" %}

### Available Modules

{% content-ref url="/pages/NKTSFHDHCridgkxomlxM" %}
[Wagers](/the-arena-architecture/competition-modules/wagers.md)
{% endcontent-ref %}

{% content-ref url="/pages/UZH5kOEypeVt1MCKT3UI" %}
[Leagues](/the-arena-architecture/competition-modules/leagues.md)
{% endcontent-ref %}

{% content-ref url="/pages/mIgrcNWgFlNBFgZjzyxT" %}
[Tournaments](/the-arena-architecture/competition-modules/tournaments.md)
{% endcontent-ref %}


---

# 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, and the optional `goal` query parameter:

```
GET https://docs.arenadao.org/the-arena-architecture/competition-modules.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
