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

# Prediction markets

> Prediction markets on Arc use trustless oracle resolution, position token trading, and USDC settlement to let participants stake on future outcomes.

A prediction market lets participants stake collateral on the outcome of a
future event. Each market issues position tokens—long (YES) and short (NO)—that
represent a claim on the outcome. Participants trade these tokens through an
automated market maker (AMM), and winning positions are redeemed for collateral
after an oracle resolves the event.

On Arc, prediction markets benefit from
[sub-second finality](/arc/concepts/deterministic-finality), stable
USDC-denominated gas fees, and standard EVM tooling, making it practical to run
active markets with frequent trades at low cost.

For stablecoin exchange and swap infrastructure, see
[Stablecoin FX](/build/stablecoin-fx). For agent-initiated market participation,
see [Agentic Economy](/build/agentic-economy).

## Sample apps

Open-source examples on GitHub you can fork and customize.

<Columns cols={1}>
  <Card title="Arc prediction markets" icon="chart-line" href="https://github.com/circlefin/arc-prediction-markets">
    Decentralized prediction markets with UMA Optimistic Oracle V2 resolution,
    constant-product AMM trading, and collateral-backed position tokens on Arc
    Testnet.
  </Card>
</Columns>

## Quickstarts

Get up and running with prediction market contracts in minutes.

<Columns cols={2}>
  <Card title="Deploy on Arc" icon="rocket" href="/arc/tutorials/deploy-on-arc">
    **Beginner**. Deploy, test, and interact with a Solidity smart contract on
    Arc using Foundry.
  </Card>

  <Card title="Monitor contract events" icon="bell" href="/arc/tutorials/monitor-contract-events">
    **Intermediate**. Set up webhooks and event monitors to track onchain
    activity from your deployed contracts.
  </Card>
</Columns>

## Why Arc for prediction markets

Arc is purpose-built for stablecoin finance. These capabilities directly support
prediction market applications.

<AccordionGroup>
  <Accordion title="Instant trade confirmation">
    [Deterministic finality](/arc/concepts/deterministic-finality) confirms
    position token trades and collateral deposits in under a second, removing
    settlement uncertainty from active markets.
  </Accordion>

  <Accordion title="Low-cost position trading">
    USDC-denominated gas at stable, predictable prices makes frequent AMM trades
    economical. See [gas and fees](/arc/references/gas-and-fees) for current
    rates.
  </Accordion>

  <Accordion title="Trustless oracle resolution">
    Integrate UMA Optimistic Oracle, Chainlink, or other providers from the
    [oracles ecosystem](/arc/tools/oracles) to resolve markets without a
    centralized arbitrator.
  </Accordion>

  <Accordion title="Composable token standards">
    Position tokens are standard ERC-20 tokens, tradable on any AMM and
    transferable between wallets using standard EVM tooling. See [contract
    addresses](/arc/references/contract-addresses) for available tokens.
  </Accordion>

  <Accordion title="Compliance-ready">
    Built-in integration points for wallet screening from [Elliptic and TRM
    Labs](/arc/tools/compliance-vendors), essential for regulated prediction
    market products.
  </Accordion>

  <Accordion title="Standard EVM tooling">
    Deploy and iterate on Solidity market contracts using Hardhat, Foundry, or
    any EVM-compatible tools. See [EVM
    compatibility](/arc/references/evm-differences) for differences to check
    before deploying.
  </Accordion>
</AccordionGroup>
