# Smart Contracts

Monika interacts directly with the following verified contracts on the Monad Mainnet.

#### DEX Routers

Monika uses these routers for trade execution. She does **not** deploy a custom proxy contract holding user funds.

| Protocol                  | Contract Address                             |
| ------------------------- | -------------------------------------------- |
| **PancakeSwap V3 Router** | `0x1b81D678ffb9C0263b24A97847620C99d213eB14` |
| **Uniswap V3 Router**     | `0xfe31f71c1b106eac32f1a19239c9a9a72ddfb900` |

#### Supported Assets

| Token                       | Address                                      |
| --------------------------- | -------------------------------------------- |
| **WMON (Wrapped Monad)**    | `0x3bd359C1119dA7Da1D913D1C4D2B7c461115433A` |
| **USDC**                    | `0x754704Bc059F8C67012fEd69BC8A327a5aafb603` |
| **WBTC (Wrapped Bitcoin)**  | `0x0555E30da8f98308EdB960aa94C0Db47230d2B9c` |
| **WETH (Wrapped Ethereum)** | `0xEE8c0E9f1BFFb4Eb878d8f15f368A02a35481242` |
| **XAUt0 (Tether Gold)**     | `0x01bFF41798a0BcF287b996046Ca68b395DbC1071` |
| **CAKE (Pancakeswap)**      | `0xF59D81cd43f620E722E07f9Cb3f6E41B031017a3` |

#### Integration

Developers can listen to Monika's trade signals by monitoring the `LogTrade` event emitted by our client-side engine.

```json
{
  "event": "LogTrade",
  "params": {
    "tokenIn": "address",
    "tokenOut": "address",
    "amountIn": "uint256",
    "confidenceScore": "uint8"
  }
}
```


---

# Agent Instructions: 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://printr-deployr.gitbook.io/monika-docs/smart-contracts.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.
