Smart Contracts

Canonical deployments

All HyperOvsm protocol contracts are verified on HyperEVM. Click View ABI to inspect readable function signatures or copy the raw JSON.

HyperRouter

Routes orders into the matching engine.

0x9f2c…e2a1
ClearingHouse

Settlement, margin, and PnL accounting.

0x44b1…7a9c
VaultManager

User collateral vaults and withdrawals.

0xe810…b7d9
OracleHub

Aggregated price feeds with TWAP.

0xab93…7f9a

Solidity example

interface IHyperRouter {
  function placeOrder(
    bytes32 market,
    int256 size,
    uint256 price
  ) external returns (uint256 orderId);
}