> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kleros.io/llms.txt
> Use this file to discover all available pages before exploring further.

# DAO Governance

> Integrate Kleros with DAO governance using the Zodiac Reality Module to translate Snapshot votes into on-chain transactions with dispute resolution.

## Overview

This guide covers **setup and configuration only**. For what SafeSnap is, its components, and how the end-to-end flow works, see the **[SafeSnap product page](/products/safesnap)**.

***

## Setup Steps

<Steps>
  <Step title="Deploy Zodiac Reality Module">
    Deploy the Reality Module through the [Zodiac app](https://zodiac.wiki/) and connect it to your Gnosis Safe. Configure it with:

    * The Reality.eth contract address for your chain
    * A Kleros arbitrator proxy as the arbitrator
    * Minimum bond and timeout parameters
  </Step>

  <Step title="Install SafeSnap Plugin">
    Add the SafeSnap plugin to your Snapshot space. This adds a transaction builder to proposals, allowing proposers to attach on-chain transactions.
  </Step>

  <Step title="Set DAO Requirements">
    Upload a DAO requirements document to IPFS and register it as an ENS text record under the key `daorequirements` on your Snapshot space's ENS name.

    This document defines the criteria for valid proposals. Kleros jurors evaluate proposals against this document when arbitrating disputes.

    ```
    // ENS record example:
    // gnosis.eth → daorequirements → /ipfs/QmYourPolicyDoc...
    ```
  </Step>

  <Step title="Monitor Proposals">
    Any address can post a question to the Reality Module, so monitoring is part of the security model, not optional. Run [`kleros/zodiac-bots`](https://github.com/kleros/zodiac-bots), the open-source service Kleros maintains for watching Zodiac Reality modules. It tracks one or more Snapshot spaces — identified by ENS name and a starting block — and pushes alerts to **Slack, Telegram, or email** when proposals and answers appear:

    ```bash theme={null}
    SPACES=kleros.eth:3000000,1inch.eth:6000000
    ```

    Email recipients can be scoped per space, so different DAOs' alerts route to different inboxes. If you would rather not self-host, a general-purpose monitoring service such as OpenZeppelin Defender or a custom bot can watch the same Reality.eth events.
  </Step>
</Steps>

***

## Reality.eth Question Format

The Reality Module creates questions in this format:

```
"Did the Snapshot proposal with the linked transactions pass
and does it meet the requirements of the document referenced
in the dao requirements record at <dao>.eth?"
```

Jurors evaluate:

* Whether the Snapshot vote actually passed per the space's voting rules
* Whether the proposed transactions match what was described in the proposal
* Whether the proposal complies with the DAO requirements document

***

## Arbitration

When a Reality.eth answer is disputed, anyone can request arbitration by paying the Kleros arbitration fee. The Kleros Arbitrator Proxy:

1. Creates a dispute in Kleros Court (typically the Blockchain or Technical subcourt)
2. Displays the proposal details, transaction data, and DAO requirements document to jurors
3. Returns the ruling to Reality.eth, which finalizes the answer

### Evidence

Evidence is submitted through the Kleros Arbitrator Proxy. Typical evidence includes:

* Screenshots of the Snapshot vote results
* Links to the proposal discussion
* Transaction simulation results
* References to the DAO requirements document

***

## Configuration Reference

| Parameter        | Description                                             | Recommended           |
| ---------------- | ------------------------------------------------------- | --------------------- |
| **Minimum Bond** | Initial bond required to answer a question              | 0.1 ETH or equivalent |
| **Timeout**      | Time before an unchallenged answer finalizes            | 24–72 hours           |
| **Cooldown**     | Delay between answer finalization and execution         | 24 hours              |
| **Expiration**   | Time after which the question can no longer be answered | 7 days                |
| **Arbitrator**   | Kleros arbitrator proxy address                         | Chain-specific        |

***

## Security Considerations

**Malicious proposals**: Anyone can submit proposals to the Reality Module. The bond requirement and Kleros arbitration backstop mitigate this, but active monitoring is essential.

**Missing DAO requirements**: If the `daorequirements` ENS record is not set, questions may be resolved ambiguously. Set this record before activating the module.

**Bond exhaustion**: A well-funded attacker can force multiple bond escalation rounds. The Kleros arbitration option provides a fixed-cost resolution path when bonds become prohibitively expensive.

***

## Resources

<CardGroup cols={2}>
  <Card title="Zodiac Documentation" icon="book" href="https://zodiac.wiki/">
    Full Zodiac module documentation
  </Card>

  <Card title="SafeSnap Guide" icon="camera" href="https://docs.snapshot.org/user-guides/plugins/safesnap">
    Snapshot SafeSnap plugin setup
  </Card>

  <Card title="Reality.eth Integration" icon="link" href="/developers/products/reality/overview">
    Kleros + Reality.eth documentation
  </Card>

  <Card title="Kleros Reality Module Guide" icon="shield" href="https://docs.kleros.io/integrations/types-of-integrations/1.-dispute-resolution-integration-plan/channel-partners/kleros-reality-module">
    Detailed module setup instructions
  </Card>
</CardGroup>
