The Three Components
Exchange-Engine
The Exchange-Engine housing the matching engine, account manager, order book, position tracking, and liquidation logic. It runs entirely offchain. When a user deposits or withdraws, the exchange-engine queries the chain-core for onchain state, it does not interact with the chain directly.Chain-Engine
The chain-core is the onchain interface. It processes deposits and withdrawals: it watches for incoming onchain transfers, confirms them, and signals the exchange-engine to credit the account. For withdrawals, it executes the onchain transaction and pays gas on behalf of the user.The chain-core holds no knowledge of internal accounts. It sees only onchain addresses and transfer amounts sweeping deposits into the main hot wallet.
Attestor Network
The attestor network is the trust layer between the exchange-engine and the chain-core. It distributes the cryptographic secrets each component needs to operate, and serves as the consensus mechanism for blockchain state. Neither component can function fully without it.Execution Integrity
The matching engine runs inside an SGX (Software Guard Extensions) hardware enclave. SGX creates an isolated memory region that the operating system and the hardware owner cannot read or modify, including Ondo’s own infrastructure team. The enclave produces a cryptographic attestation proving it is running a specific, published binary. Reproducible builds ensure the binary is deterministic: the same source code produces the same binary every time, so the deployed code is independently verifiable against the published source. The attestation model removes operator trust as a variable. No party, including Ondo, can modify matching logic or access order state while the enclave is running.Deposit and Withdrawal Flow
Deposit:- User sends USDC or a supported tokenized equity to their assigned deposit address onchain
- No bridge required, standard ERC-20 transfer
- Chain-core detects the transfer and notifies the exchange-engine
- Exchange-engine credits the user’s margin wallet
- The chain-core sweeps the deposit into its main hot wallet
- User requests withdrawal via API
- Exchange-engine validates against available margin (cannot withdraw collateral backing open positions)
- Chain-core executes the onchain transfer; Ondo pays gas
- Withdrawal is marked as finalized when enough confirmations has been reached
Ethereum is live. Additional chains are coming soon. Deposit addresses are chain-specific.