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

# Contract Addresses

> Deployed contract addresses on all networks.

## Ethereum Mainnet

| Contract                 | Address                                      | Etherscan                                                                       |
| ------------------------ | -------------------------------------------- | ------------------------------------------------------------------------------- |
| **EscrowFactory**        | `0xba2c6322fd59e2703a28d82db572950297600129` | [View](https://etherscan.io/address/0xba2c6322fd59e2703a28d82db572950297600129) |
| **AgentRegistry**        | `0x3406c744958b182d6edd2615ff9e53f0fbc60802` | [View](https://etherscan.io/address/0x3406c744958b182d6edd2615ff9e53f0fbc60802) |
| **FeeManager**           | `0x14f582bd5ddbc3e8416b9d3a9e5f0d3b6ce4206f` | [View](https://etherscan.io/address/0x14f582bd5ddbc3e8416b9d3a9e5f0d3b6ce4206f) |
| **EscrowImplementation** | `0xcd982ee65c573aa45a4a41c57b3f60b68be3d9aa` | [View](https://etherscan.io/address/0xcd982ee65c573aa45a4a41c57b3f60b68be3d9aa) |

### Supported Tokens (Mainnet)

| Token | Address                                      |
| ----- | -------------------------------------------- |
| USDC  | `0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48` |
| USDT  | `0xdAC17F958D2ee523a2206206994597C13D831ec7` |

***

## Sepolia Testnet

| Contract                 | Address                                      | Etherscan                                                                               |
| ------------------------ | -------------------------------------------- | --------------------------------------------------------------------------------------- |
| **EscrowFactory**        | `0x9f5b706288ce48ae26a161664cd6b15b9c9ebc5e` | [View](https://sepolia.etherscan.io/address/0x9f5b706288ce48ae26a161664cd6b15b9c9ebc5e) |
| **AgentRegistry**        | `0x50cdb07a74a1898308eb2331940dd6b9263cce56` | [View](https://sepolia.etherscan.io/address/0x50cdb07a74a1898308eb2331940dd6b9263cce56) |
| **FeeManager**           | `0x412c2dcdcd4d1de95c37246d0fb54f1a0b9a1f2f` | [View](https://sepolia.etherscan.io/address/0x412c2dcdcd4d1de95c37246d0fb54f1a0b9a1f2f) |
| **EscrowImplementation** | `0xa28bb288425a8b82523a064a8fad7337a550a9d1` | [View](https://sepolia.etherscan.io/address/0xa28bb288425a8b82523a064a8fad7337a550a9d1) |

### Test Tokens (Sepolia)

| Token     | Address                                      |
| --------- | -------------------------------------------- |
| Test USDC | `0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238` |
| Test USDT | `0x7169D38820dfd117C3FA1f22a697dBA58d90BA06` |

<Tip>
  Need test tokens? Visit [faucet.daoforum.org](https://faucet.daoforum.org) to get test USDC and USDT for Sepolia.
</Tip>

***

## DAO Contracts

| Contract                    | Network | Address                                      |
| --------------------------- | ------- | -------------------------------------------- |
| **DAO Token**               | Mainnet | `0xa6be5ae3bc634cf44439845365a01c2cd705f32d` |
| **DAO Token**               | Sepolia | `0xe4b758C752DD784FFA1f3D402e4401F4dD52F1ee` |
| **DAO Timelock (Treasury)** | Mainnet | `0xA9790aC657BD38C8Ef2568c1642b02d2B96F20dD` |
| **DAO Timelock (Treasury)** | Sepolia | `0xFEa9A7879118BD78247b40C6301B29043E4E8051` |

***

## Verifying Contracts

All contracts are verified on Etherscan:

1. Click the Etherscan link above
2. Go to "Contract" tab
3. Click "Read Contract" or "Write Contract"
4. View source code and ABI

***

## NPM Package

For developers, contract ABIs are available via npm:

```bash theme={null}
npm install @zenland/contracts
```

```javascript theme={null}
import { EscrowFactory__factory } from '@zenland/contracts';
```

<Card title="Integration Guide" icon="code" href="/developers/integration-guide">
  Learn how to integrate →
</Card>
