Who Takes the Other Side
We just watched many price sources collapse into one agreed, signed number - the oracle mid. Now let's meet the party that quotes against it and actually sold Maya her eTSLA: the Market Maker.
A dealer, not an order book
When Maya bought, there was no crowd of sellers waiting on the other side. There was one dealer - the Market Maker, the trading backend run by the Vault Manager. (Same operator we met earlier; this is the piece of them that quotes prices and manages risk.)
Think of a currency booth at an airport. The booth doesn't wait for someone selling dollars before it'll sell you dollars. It just posts two prices - one to buy from you, one to sell to you - and stands behind them. The Market Maker works the same way for eTSLA.
That's the RFQ model from Chapter 4: instead of posting orders into a book, Maya asked for a price, and the dealer answered with a firm quote - a price good for a few seconds that she could submit onchain. Let's look at how that price gets built, and what happens the instant her trade settles.
Building the quote
The Market Maker starts from the oracle mid - the single fair price for Tesla we saw get signed in Chapter 5. Around that midpoint it sets two prices:
- a bid (a little below the mid) - what it'll pay to buy eTSLA from you
- an ask (a little above the mid) - what it'll charge to sell eTSLA to you
The gap between them is the spread. That gap is the dealer's pay - and it's Maya's cost of trading. There are no separate protocol mint or redeem fees on this version of Own; the spread is the trading cost, baked right into the price.
the spread
┌──────────────────┐
BID ──────┤ oracle mid ├────── ASK
(buy from │ (fair Tesla │ (sell to
you, below)│ price) │ you, above)
└──────────────────┘
the Market Maker quotes both
The spread isn't fixed. The dealer widens it when things get riskier - for example, as a stock's trading session nears its close (an overnight gap it can't hedge against), or when the asset is naturally more volatile. It also leans its prices slightly based on the inventory it's already holding, nudging trades that would balance its book and discouraging ones that pile on more of the same risk. And before it will quote at all, it runs the incoming mid through its own sanity checks - if the price jumped impossibly far, or disagrees with an independent reference feed, the dealer refuses to sign rather than quote off a bad number.
The result is a firm, signed quote that lives for about fifteen seconds. Maya submitted it, and her eTSLA appeared. From her side, the story's over. From the dealer's side, the interesting part is just beginning.
Why the dealer doesn't care which way Tesla moves
Here's the thing that makes this safe to run. The moment the Market Maker sold Maya eTSLA, it became short Tesla - it now loses money if Tesla goes up and gains if Tesla falls. No dealer wants to be making a directional bet on Tesla every time a customer walks in.
So it doesn't keep the bet. It hedges.
Right after Maya's trade settles onchain, the Market Maker goes out to an outside venue - currently Dinari, where tokenized real stocks trade - and buys a matching amount of actual Tesla exposure. Now it's short Tesla on Own and long the same Tesla on Dinari. Those two cancel out. The dealer is delta-neutral: it no longer cares which way Tesla moves, because every dollar it loses on one side it makes back on the other.
What it keeps is the spread. That's the whole business model - earn the small gap on every trade, stay neutral on direction.
Maya buys eTSLA on Own
│
▼
Market Maker is now SHORT Tesla ──┐ (unwanted bet)
│ │
sees the settlement onchain │ cancels out
│ │ → delta-neutral
▼ │
buys real Tesla exposure ─────────┘
on Dinari (the hedge)
How does it even know Maya traded? It isn't told directly - it watches. Every trade on Own leaves a permanent settlement record onchain (the same receipt that confirmed Maya's trade in Chapter 4). The Market Maker reads those records, sees the new exposure appear, and fires off the matching hedge immediately rather than waiting for its next scheduled check.
Always reconciling
Hedging once isn't enough - fills can lag, connections drop, a venue can be slow to confirm. So the Market Maker runs a constant reconciliation: it compares what its onchain book should be (the sum of all the eTSLA trades it has backed) against what it actually holds on Dinari. If those two drift apart, it knows it's carrying unhedged risk and works to flatten it back to neutral - and if something looks badly wrong, a circuit breaker stops it from signing new quotes until a human or the system sorts it out. Better to stop quoting than to keep trading while exposed.
That reconciliation loop is what lets one dealer safely stand behind every trade on the protocol. The next chapter looks at the other half of the safety story: not the dealer's hedge, but the collateral vault that actually backs Maya's eTSLA onchain.
What just happened
- Maya's other side was the Market Maker - a single dealer run by the Vault Manager, not a crowd of sellers.
- It quotes a bid and an ask around the oracle mid; the spread between them is the dealer's earnings and Maya's only trading cost (no separate protocol fees here).
- The spread widens with volatility and near a session close, and leans based on inventory; bad or jumpy prices are refused before any quote is signed.
- Selling eTSLA left the dealer with an unwanted short Tesla bet, so it immediately hedges by buying matching real Tesla exposure on an outside venue (Dinari) - leaving it delta-neutral.
- It learns of each trade by reading the onchain settlement record, then continuously reconciles its onchain book against its hedge, halting via a circuit breaker if something drifts badly.