Hyperliquid HIP-4 vs Polymarket: Outcome Markets 2026 | Chainstack Blog

Hyperliquid HIP-4 vs Polymarket: outcome markets compared (2026)

Hyperliquid is the fastest-growing on-chain exchange in crypto history — $6B+ in daily perp volume as of May 2026, a fully on-chain CLOB running at 200,000 orders per second, and now, as of May 2, 2026, a prediction market primitive built directly into the same matching engine. Polymarket is the opposite story: born in 2020 as a standalone prediction market, it has processed over $21.5B in volume in 2025 alone and raised at an $8B valuation with NYSE as a strategic backer. These two platforms have just become direct competitors.

HIP-4 — Hyperliquid Improvement Proposal 4— went live on mainnet the same week Bloomberg reported Polymarket was pursuing CFTC approval to re-enter the US market. The prediction market category is exploding: industry-wide monthly volume hit $21B by mid-2026, and both platforms are racing to own the infrastructure layer underneath it. What makes this comparison genuinely interesting is that HIP-4 is not a separate product — it is a new primitive on the same engine where traders already run perpetual futures and spot. That composability changes the economics in ways that Polymarket’s isolated CTF token model simply cannot replicate.

This guide breaks down what HIP-4 actually is, how Polymarket works under the hood, where the two differ on fees, resolution, liquidity, and composability, and which platform fits which workload.

Hyperliquid HIP-4 explained: what it is and how it works

HIP-4 was announced February 2, 2026 — HYPE rallied 10% on the day — co-authored by Bedlam Research and John Wang (Head of Crypto at Kalshi). It launched on testnet the same week and went live on mainnet May 2, 2026.

HyperCore will support outcome trading (HIP-4). Outcomes are fully collateralized contracts that settle within a fixed range. They are a general-purpose primitive useful for applications such as prediction markets and bounded options-like instruments.

The formal definition from the Hyperliquid docs: outcomes are fully collateralized contracts that settle within a fixed range. They are a general-purpose primitive useful for prediction markets and bounded options-like instruments.

In plain terms: a HIP-4 outcome contract is a binary YES/NO instrument tied to a discrete event, trading between 0.001 and 0.999, with the price representing the implied probability. If you buy YES at 0.62, you profit 0.38 if the event occurs and lose 0.62 if it does not. No leverage, no liquidations. Settlement is in USDH, Hyperliquid’s native stablecoin backed by BlackRock-managed reserves and custodied by JPMorgan.

The lifecycle of a HIP-4 market

Every outcome market passes through four phases:

  1. Deployment — a canonical market (Phase 1) or builder-deployed market (Phase 2) is registered with the validator set, including the oracle specification, settlement time, and event description encoded in the description field.
  2. Opening auction — roughly 15 minutes of single-price clearing before continuous trading begins. This is where initial price discovery happens without a market maker.
  3. Continuous CLOB trading — the outcome book goes live on the same matching engine as perps and spot. The same maker/taker order types (GTC, ALO, IOC) apply. Outcome volume counts toward protocol-wide fee tier calculations.
  4. Oracle settlement and slot recycling — the authorized oracle posts a 0/1 result. For the first canonical market (recurring daily BTC binary), the oracle is Hyperliquid’s own BTC mark price. An optional challenge window exists. After settlement, the slot is recycled for the next market in the series.

Fee structure

The fee design is deliberately asymmetric compared to Polymarket:

The first canonical market opened May 2 with a daily BTC binary: “BTC above $78,213 on May 3 at 06:00 UTC?” — opening probability 62%, first-hours volume $54,026, OI $79,938.

The builder economy (Phase 2)

Phase 1 is curated canonical markets approved by the validator set. Phase 2 opens permissionless deployment: builders stake 1,000,000 HYPE per slot (slashable, with burned tokens for oracle manipulation or invalid state transitions). One slot recycles across many sequential markets in a series, so the economics work for teams running 20+ recurring markets per quarter.

How to query HIP-4 markets

# Fetch all live outcome markets and their metadata
curl -X POST https://api.hyperliquid.xyz/info \
  -H "Content-Type: application/json" \
  -d '{"type": "outcomeMeta"}'

Placing an order on a HIP-4 market (Python SDK)

from hyperliquid.exchange import Exchange
from hyperliquid.info import Info
from hyperliquid.utils import constants
import eth_account

# Load wallet
wallet = eth_account.Account.from_key(PRIVATE_KEY)
info     = Info(constants.MAINNET_API_URL, skip_ws=True)
exchange = Exchange(wallet, constants.MAINNET_API_URL)

# Query outcome metadata to get the asset index
meta = info.post("/info", {"type": "outcomeMeta"})
outcome_asset_id = meta["outcomes"][0]["outcome"]  # map to asset index per docs

# Place a limit buy of YES shares at 0.62 implied probability
result = exchange.order(
    "BTC-OUTCOME-YES",   # use the mapped asset name from outcomeMeta
    True,                 # is_buy = True
    100,                  # size (shares)
    0.62,                 # limit price (= 62% implied probability)
    {"limit": {"tif": "Gtc"}}
)
print(result)

Polymarket explained: how it works

Polymarket runs a hybrid CLOB on Polygon. Outcome shares are Gnosis Conditional Token Framework (CTF) ERC-1155 tokens — every YES/NO pair is fully backed by exactly $1 of pUSD (post-V2) locked in the CTF contract. The CLOB itself matches off-chain (Polymarket-operated), with settlement and token transfers happening on-chain.

Resolution via UMA Optimistic Oracle

Every Polymarket event resolves through the UMA Optimistic Oracle v2 via the open-source UmaCtfAdapter contract:

  1. A proposer posts an answer with a $750 USDC bond
  2. If undisputed during the 2-hour challenge window, the answer finalizes
  3. If disputed once, a fresh request is created (to neutralize griefing attempts)
  4. If disputed twice, the question escalates to UMA’s Data Verification Mechanism — a commit-reveal vote by UMA token-holders, resolving in 48–72 hours

Polymarket also uses Chainlink Data Streams for fast crypto-resolved markets (BTC price at expiry, ETH price at date) and an internal Markets Team for ruleset clarifications. The UMA DVM has processed hundreds of contested markets; the optimistic layer resolves ~98.5% of requests without escalation.

Querying Polymarket markets and placing orders (CLOB V2)

from py_clob_client.client import ClobClient
from py_clob_client.clob_types import OrderArgs, OrderType
from py_clob_client.order_builder.constants import BUY

HOST     = "https://clob.polymarket.com"
CHAIN_ID = 137  # Polygon mainnet

client = ClobClient(
    HOST,
    key=PRIVATE_KEY,
    chain_id=CHAIN_ID,
    signature_type=1,      # 1 = proxy wallet (Magic/email login)
    funder=PROXY_FUNDER    # address holding the pUSD collateral
)
client.set_api_creds(client.create_or_derive_api_creds())

# Read market data
token_id = "<yes-token-id-from-gamma-api>"
mid   = client.get_midpoint(token_id)
price = client.get_price(token_id, side="BUY")
book  = client.get_order_book(token_id)
print(f"Mid: {mid}, Ask: {price}")

# Place a GTC limit buy of 5 shares at $0.63
order  = OrderArgs(token_id=token_id, price=0.63, size=5.0, side=BUY)
signed = client.create_order(order)
resp   = client.post_order(signed, OrderType.GTC)
print(resp)

HIP-4 vs Polymarket: side-by-side comparison

Feature HIP-4 (Hyperliquid) Polymarket
Live status Mainnet May 2, 2026; Phase 1 canonical only Mature; CLOB V2 since April 2026
Architecture Native on-chain CLOB on HyperCore Off-chain matching, on-chain CTF settlement on Polygon
Market creation Validator-curated (Phase 1); permissionless with 1M HYPE stake (Phase 2) Permissioned — Polymarket Markets Team
Resolution Authorized oracle posts 0/1; BTC mark price for first market UMA Optimistic Oracle + Chainlink Data Streams + Markets Team
Collateral USDH pUSD (post-V2)
Fee on open Zero Zero on most markets; 1.56–1.80% peak taker on 15-min crypto markets
Fee on settle Yes — fees apply on close/burn/settle Zero — winning shares redeem $1.00
Maker rebates None on outcome books Daily USDC rebates funded by taker fees
Cross-margin Unified margin with perps and spot None — isolated to Polymarket
Multi-outcome Binary only in Phase 1 NegRisk adapter for multi-candidate events
Throughput Shared 200k orders/sec matching engine Limited by Polygon + off-chain matching
On-chain matching Fully on-chain CLOB Off-chain matching, on-chain settlement only
DeFi composability HyperEVM can read outcome state; vault integration possible CTF ERC-1155s technically composable but ecosystem support thin
US access Geo-blocked International platform blocked; US-licensed arm pending
Market breadth Crypto price binaries only today Politics, sports, geopolitics, macro, pop culture

Choose by use case

For delta-neutral crypto strategies and perp hedging

A trader long ETH-PERP facing binary event risk (Fed decision, CPI release, on-chain governance vote) has historically had two options: reduce the position or accept the binary exposure. HIP-4 introduces a third option: buy a YES or NO contract on the same event, in the same margin account, with no additional collateral requirement.

The mechanics work because HIP-4 positions are 1× isolated with no liquidation — the maximum loss is the entry premium — and because Hyperliquid’s margin engine aggregates across all positions. For traders already running on Hyperliquid, the cost of entry to prediction markets is near-zero. For Polymarket users, this use case is simply unavailable — Polymarket has no perp layer and no cross-margin mechanism.

For prediction market arbitrage between HIP-4 and Polymarket

Both platforms now run overlapping crypto binary markets. Polymarket’s 15-minute BTC markets charge up to 1.56–1.80% peak taker fees (at 50% probability). HIP-4 charges zero on open. A bot that simultaneously quotes on Polymarket and takes on HIP-4 (or vice versa) has a structural edge every time the two platforms misprice the same underlying event.

For political, sports, and qualitative event markets

This is Polymarket’s home territory and it is not close. For any user whose primary interest is non-crypto prediction markets, Polymarket is the only serious option today. The question is whether Phase 2’s permissionless builder economy changes this.

Platform breakdown

Hyperliquid HIP-4

Hyperliquid’s HIP-4 launched with deliberate constraints. The first canonical market is a recurring daily BTC binary. This is a sound engineering choice: launch the narrowest possible market, prove oracle reliability, then expand.

The infrastructure story is the actual differentiator. Because outcome books live on HyperCore alongside perp and spot books, every piece of trading infrastructure already built for Hyperliquid extends to HIP-4 with minimal modification.

Polymarket

Polymarket is the market leader by every measurable metric. The UMA resolution system has processed tens of thousands of markets across every conceivable event category. The ~98.5% optimistic-layer resolution rate means most markets settle without dispute.

Getting started with Hyperliquid on Chainstack

If you are building on HIP-4 — whether a market-making bot, an arbitrage strategy, a HyperEVM vault contract, or an analytics dashboard — the production infrastructure path is:

  1. Log in to Chainstack console (or create a free account — no card required, 3M RU/month on the Developer plan)
  2. Create a new project and select Hyperliquid Mainnet
  3. Deploy a Global Node for shared-endpoint access
  4. Or deploy a Dedicated Node for unlimited throughput, WebSocket streaming, and no rate limits (recommended for production bots)
  5. Copy your HTTP or WebSocket endpoint — it’s a drop-in replacement for the public api.hyperliquid.xyz endpoint

Conclusion

The single most important decision criterion for prediction market infrastructure in 2026 is whether you are trading within crypto or about the world. HIP-4 is the better platform for the former; Polymarket dominates the latter.