On Tuesday, a single pre-market quote from NXT, a low-liquidity Korean alternative exchange, triggered a cascade of liquidations on a SK Hynix perpetual contract deployed under Hyperliquid's HIP-3 framework. The result: 960 accounts wiped out, $17.3 million in user losses, and a 9% drop in HYPE’s price. This was not a hack—it was a systemic failure of oracle design. Over the past 7 days, SK Hynix had been in a selloff, but the NXT pre-market price printed a 28.7% drop that the contract’s discovery bounds only partially mitigated, capping the fall to 17.9%. That was still enough to trigger a cross-margin slaughter across the platform.
Context: How HIP-3 Bakes in Oracle Dependency
Hyperlipid’s HIP-3 framework is an architectural innovation: it allows third-party teams to deploy their own perpetual markets on Hyperliquid’s high-performance L1, handling everything from price feeds to liquidation logic. The deployer—in this case, Trade.xyz—must stake at least 500,000 HYPE (roughly $27.4 million) as collateral. In return, they control the market’s oracle, mark price, and external price inputs. Hyperliquid simply provides the execution engine: order matching, cross-margin accounting, and automated deleveraging (ADL).
The SK Hynix contract relied on NXT as its primary price source. NXT is a Korean exchange that lists pre-market trading for local stocks. It has moderate liquidity during regular hours; pre-market sessions are far thinner. A handful of large sell orders can print a distorted price. Exactly that happened on Tuesday: an anomalous pre-market quote showed SK Hynix down 28.7% from its previous close. Trade.xyz’s discovery bounds limited the mark price movement to a maximum 17.9% drop per update cycle, but after one reset, the price was allowed to slide again. The result was a slow bleed that triggered liquidation after liquidation.

Cross-margin amplified the damage. In Hyperliquid’s system, all positions in a sub-account share the same collateral pool. When SK Hynix shorts began to force longs into liquidation, the engine drew margin from profitable positions in other markets—BTC, ETH, etc.—to cover the deficits. This caused a domino effect: 960 accounts were emptied, and around 100 profitable shorts were hit by ADL, forcibly having their gains clawed back to stabilize the system.
Core: Code-Level Anatomy of a Flawed Oracle Feed
During my 2018 audit of Zcash’s Sapling protocol, I spent weeks tracing library dependencies and found a critical overflow in proof aggregation. That experience taught me that theoretical security fails under specific compiler optimizations. Here, the failure is simpler but equally devastating: trusting a single, low-liquidity data source.
Trade.xyz chose NXT because it offered pre-market price discovery for SK Hynix—a feature that seemed attractive for a 24/7 perpetual market. But pre-market quotes are volatile; a single trader can paint the tape. Smart contracts execute. They don’t judge intentions. The oracle feed sees a price, the HIP-3 framework computes the mark, and the liquidation engine fires. There is no circuit breaker that asks, “Is this price realistic?” The discovery bounds are a stopgap, but they reset after each update period.
From my 2021 analysis of Aave V2’s liquidationCall function, I identified how flash loans could manipulate slippage tolerances. Here, no flash loan was needed—just a genuine, if distorted, market quote. The NXT price was real within its own low-liquidity context. The problem is that HIP-3 converts any external price into a binding financial event without verifying its ecological reasonableness. Math doesn’t care about governance narratives. The math says: price drops → liquidations happen.
Cross-margin turned a concentrated loss into a systemic one. A user long on SK Hynix with a small ETH long would see their ETH margin consumed. The ADL mechanism then corrects the imbalance by taking profits from winning shorts. This is elegant in a perfectly liquid world, but in practice it penalizes traders who had no exposure to SK Hynix. The ADL hit roughly 100 accounts, reducing their gained PnL. Liquidity is an illusion until it’s tested in panic.
Contrarian: The System Worked as Designed—That’s the Problem
Hyperlipid’s official response has been to frame the event as Trade.xyz’s fault. The HIP-3 framework places full responsibility on the deployer. The validator set can vote to slash Trade.xyz’s 500,000 HYPE stake. But here’s the contrarian angle: the system was working exactly as intended. The oracle pushed a price, the discovery bounds limited movement, the cross-margin engine shared collateral, the ADL stabilized the market. Every component executed its logic flawlessly. The outcome was still catastrophic.
This reveals a deeper flaw: trusting any single price feed in a permissionless framework is akin to building a bridge with one pillar. The HIP-3 design assumes that deployers will choose robust oracles. That assumption failed. The slashing mechanism (losing 500k HYPE) is a drop in the bucket compared to the $17.3 million user loss—and it compensates no one. Community governance is only as good as the weakest oracle.
Moreover, the slashing punishes all deployers equally, regardless of intent. If Trade.xyz was negligent but not malicious, destroying their entire stake may drive them away, leaving the market orphaned. If they were malicious, they could run with the liquidity before the slashing vote passes. The seven-day unstaking window becomes a liability: a rogue deployer could drain their market’s liquidity and walk away while the community debates.
From my FTX forensic analysis in 2022, where I traced 12,000 transactions across EOSIO-Ethereum bridges, I learned that off-chain complexity kills on-chain systems. Here, the complexity is in the oracle selection process. No standardized cross-chain messaging, no multi-source aggregation—just one exchange’s pre-market quote. The result is a single point of failure dressed in the language of decentralization.

Takeaway: The Next Pre-Market Anomaly Is Coming
The SK Hynix event is not a freak accident—it’s a pattern. In March, Hyperlipid faced the JELLY incident, which required a controversial chain reorganization. This time, the damage was smaller in scale but more insidious because it exploited a structural vulnerability: unverified external price sources.
Moving forward, Hyperlipid must either mandate multiple independent oracles for all HIP-3 markets or introduce dynamic price ceilings based on on-chain liquidity depth. Trade.xyz should migrate to a robust feed like Pyth or Chainlink immediately. But the deeper lesson is for the entire DeFi perpetual sector: permissionless markets are only as safe as their weakest data link. Until HIP-3 or equivalent frameworks enforce multi-source verification, we will see repeats. The next pre-market anomaly could involve a larger position, a thinner exchange, and a broader market collapse. The question is not if, but when.
From my work on AI-agent smart contract security in 2025, I built a simulation where autonomous agents exploited ERC-20 approvals via dynamic logic. The lesson there: anticipate the edge case, because the edge case will exploit itself. Hyperlipid’s edge case was NXT. The next one is waiting for a price feed to hit zero.
