Skip to main content

07-14 From trade[XYZ] to Lyquor: Validating Market Updates

· 7 min read

Keeping a traditional-asset perpetual open 24/7 is not primarily a matching problem. When the underlying venues close, an operator must decide which data remains usable, how to validate a new price, and when a price update may affect funding calculations, risk controls, or market lifecycle state. trade[XYZ] makes this hidden market-operations layer visible.

Our analysis suggests a specific Lyquor design opportunity: do not rebuild HyperCore or replicate the Relayer as a monolith. Separate node-local, potentially divergent observations of external markets from certified, sequenced updates to shared market state.

external observations -> application validation -> certified call
-> sequencing -> accepted market state

07-13 trade[XYZ] on Hyperliquid: The Market Control Plane Behind 24/7 Traditional-Asset Perpetuals

· 9 min read

Summary

From the Lyquor perspective, trade[XYZ] is worth studying because it makes a hidden part of financial infrastructure visible: operating a market requires much more than building a frontend or connecting to a matching engine.

The central conclusion is simple:

HyperCore provides the shared trading engine.
trade[XYZ] provides the market-specific operating layer.

That operating layer defines traditional-asset contracts, turns fragmented external data into usable prices, runs the Relayer, manages risk parameters, and handles the market lifecycle.

trade[XYZ]'s core capability is therefore not the interface or HyperCore matching. It is the ability to keep this entire market control plane reliable across assets, sessions, and exceptional events.

Here, “24/7 market” describes the perpetual market's continuous trading objective. It does not mean the underlying stock, index, commodity, or FX venue trades continuously.

07-10 HyperCall-Like Markets on Lyquor: Network Settlement, Instance Matching

· 5 min read

Summary

HyperCall is useful as a reference case because it shows how a specialized market application attaches itself to a larger trading system.

On Hyperliquid, HyperCall does not try to make every options order, quote, fill, risk check, and lifecycle event a direct on-chain contract action. Its practical shape is hybrid: the HyperCall Backend handles the fast venue logic, HyperEVM provides the account and execution boundary, and HyperCore supplies the financial base of liquidity, clearing state, oracle data, and hedge markets.

The Lyquor lesson is not to copy that architecture one-to-one. A HyperCall-like market on Lyquor would likely use a different split:

Lyquor network -> settlement, deposits, withdrawals, account boundaries, checkpoints
Lyquid instance -> matching, RFQ/RPI-style workflows, quotes, order books, fast market state

That difference matters. HyperCall depends on an operator-run Backend for much of the fast options venue. Lyquor can make the high-frequency side a more open application surface: anyone building a Lyquid can use instance capabilities to implement matching and other fast market workflows, while the network layer anchors the parts that need shared state, ordering, and settlement.

07-09 Understanding HyperCall: Backend, HyperEVM, and HyperCore

· 11 min read

Summary

From the Lyquor perspective, HyperCall is useful not only because it is an options product, but because it shows what kind of financial application starts to appear once a chain has specialized trading infrastructure, shared account state, oracle data, and a programmable application layer.

This post uses HyperCall as a reference case: first to understand the business shape emerging around Hyperliquid, then to ask what the same class of trading application could look like if matching, clearing, risk, margin, liquidation, and settlement were built as sequenced Lyquid network applications on Lyquor.

HyperCall is easiest to misunderstand if it is treated as a pure on-chain options protocol. Its current design is more practical and more hybrid: a professional off-chain options trading system, a HyperEVM contract layer for accounts and verifiable execution boundaries, and HyperCore as the underlying source of spot/perp liquidity, clearing state, oracle data, and future margin integration.

In one sentence:

HyperCall backend handles speed and options market structure.
HyperEVM contracts handle ownership, custody boundaries, settlement, and on-chain actions.
HyperCore provides the financial base: perps, spot, clearing, oracle data, and hedge liquidity.

That split is the main point. HyperCall does not try to push every options order, risk check, quote, and fill directly into HyperEVM contracts. Instead, it keeps the high-frequency and market-structure-heavy parts off-chain, while using HyperEVM and HyperCore to anchor the parts that need ownership, settlement, asset movement, and integration with Hyperliquid's financial state.

07-03 Lyquor and Open Financial Infrastructure

· 6 min read

Summary

The clearest difference between HyperCore and Lyquor is not simply performance, EVM compatibility, or whether an application can be deployed around a trading system. The deeper difference is who gets to define the financial infrastructure.

HyperCore provides specialized financial infrastructure as part of the Hyperliquid system. Order books, matching, clearing, margin, liquidation, and core account state are built into the chain-level trading environment. Lyquor takes a different direction: it exposes the capability for developers and users to build specialized financial infrastructure themselves, as sequenced Lyquid network applications with shared state and runtime capabilities.

In short:

HyperCore provides specialized financial infrastructure.
Lyquor provides the capability to build specialized financial infrastructure.

07-02 Hyperliquid Application Patterns and Lyquor

· 8 min read

Summary

HyperCall is useful not only as an options venue case study, but also as a window into a broader Hyperliquid pattern. Hyperliquid is no longer just a high-performance perp exchange. With HyperCore, HyperEVM, and application-layer products such as HyperCall, it is moving toward a financial application platform: HyperCore is the specialized trading infrastructure, HyperEVM opens a programmable application surface around it, and specialized products can be built close to that financial state.

The important question for Lyquor is: if this class of business were built on Lyquor, what would become easier, more native, or more differentiated? The key distinction is that HyperCore is a purpose-built trading infrastructure, while Lyquor exposes the capability for developers to build specialized trading infrastructure as Lyquid network applications.

07-01 HyperEVM vs Lyquor

· 6 min read

Summary

HyperEVM is not just “EVM support for Hyperliquid.” A better way to understand it is as Hyperliquid's general-purpose application layer. HyperCore remains the high-performance financial core for order books, clearing, assets, vaults, staking, and other critical state. HyperEVM gives developers a familiar Ethereum-compatible surface for deploying contracts, composing applications, and connecting back to HyperCore.

That framing matters when comparing HyperEVM with Lyquor. The right comparison is not “which Lyquor VM equals HyperEVM?” The closer match is Lyquor's Lyquid network layer: the application-facing layer made up of Lyquid/WASM execution, on-chain sequencing, node-hosted runtime, network state, and Ethereum-compatible interfaces.

In one sentence:

HyperEVM runs the application layer as EVM contracts.
Lyquor runs the application layer as Lyquid network applications, exposed through Ethereum-compatible entry points.

03-30 Project Progress

· One min read

Initially, we refactored clear-lyquid and match-lyquid so that they are now invoked through a Lyquor instance as the entry point. All state has been converted to instance-level state. The general idea is that multiple instances first initiate a form of local consensus for a transaction, and then the result is committed on-chain.