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…e2a1ClearingHouse
Settlement, margin, and PnL accounting.
0x44b1…7a9cVaultManager
User collateral vaults and withdrawals.
0xe810…b7d9OracleHub
Aggregated price feeds with TWAP.
0xab93…7f9aSolidity example
interface IHyperRouter {
function placeOrder(
bytes32 market,
int256 size,
uint256 price
) external returns (uint256 orderId);
}