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

# Oracle Resolution

> Multisig resolution with evidence validation

Some markets like politics, sports, and culture markets may use a hybrid resolution process that sources verified truth from oracles. In some cases, oracles wait for confirmation from multiple trusted sources - similar to waiting for multiple confirmations on a blockchain - to prevent fraud and ensure accuracy.

## Resolution Process

<div align="center">
  ```mermaid theme={null}
  graph TD
      A["Market Expires"] --> B["Multisig Submits Outcome<br/>(2-of-3 signatures + evidence)"]
      B --> C["AI Validates Evidence<br/>(Checks against whitelisted sources)"]
      C -->|Match| D["On-Chain Submission"]
      C -->|Mismatch| E["Transaction Blocked<br/>Admins Alerted"]
      D --> F["Challenge Period<br/>(24-48 hours)"]
      F -->|No Flags| G["Market Resolved"]
      F -->|Flagged| H["Admin Review & Override"]
      H --> G
  ```
</div>

<Steps>
  <Step title="Operator Multisig" titleSize="h3">
    2-of-3 operator multisig submits resolution including:

    * Market ID
    * Outcome (YES/NO or specific outcome)
    * Evidence URL
    * Content hash
    * Timestamp
    * 2 of 3 signatures
  </Step>

  <Step title="AI Validation" titleSize="h3">
    AI validates outcome against evidence before on-chain submission:

    * Parse evidence source
    * Compare to market resolution criteria
    * Flag if mismatch

    If AI disagrees, transaction is blocked and admins alerted.
  </Step>

  <Step title="Post-Submission Check" titleSize="h3">
    After on-chain submission, AI validates again:

    * Confirm submitted outcome matches evidence
    * Alert admins if discrepancy detected
    * Enable challenge period
  </Step>

  <Step title="Challenge Period" titleSize="h3">
    24-48 hours (configurable per market) for community review:

    * Users can flag incorrect resolutions
    * Flagged markets go to admin review
    * Override possible if clearly wrong
  </Step>
</Steps>

## Evidence Requirements

**Whitelisted Sources:**

* News: Major wire services and established news organizations
* Sports: Official league sources and reputable sports media
* Government: Official .gov domains or international equivalent

**Requirements:**

* Publicly accessible URL
* Content hash stored on-chain
* Timestamped before resolution
* Archived for verification Example Resolution

```json theme={null}
{
  "market_id": "us_election_2028",
  "outcome": "YES",
  "evidence": {
    "source": "https://fec.gov/updates/2028-election-results...",
    "content_hash": "0x7a3f9b2c...",
    "timestamp": "2028-11-06T04:32:00Z"
  },
  "signatures": [
    "operator_1_sig",
    "operator_2_sig"
  ]
}
```
