# Optimistic Oracle v2

This section showcases different design patterns for building contracts that integrate with the UMA Optimistic Oracle (OO). These include:

* A [simple deposit box](https://docs.uma.xyz/developers/optimistic-oracle/solidity-examples) to showcase the basic OO request lifecycle.
* An [event based prediction market](https://docs.uma.xyz/developers/optimistic-oracle/in-depth-tutorial-event-based-prediction-market). In this example, settlement requests are submitted at the time of contract deployment, and the OO proposer network is used as a decentralized keeper service that identifies when settlement events happen and propose the outcomes.
* An ["internal Optimistic Oracle"](https://docs.uma.xyz/developers/optimistic-oracle/internal-optimistic-oracle), where an integrating contract handles proposals and state management, and only uses the OO when proposal verification is needed or a dispute is filed.


---

# 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://docs.uma.xyz/developers/optimistic-oracle.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.
