How did you integrate our partners, if any?
Unichain
Full Uniswap V4 hook deployment on Unichain Sepolia (chain 1301). The
deployment script DeployUnichain.s.sol deploys the entire Dobprotocol stack:
- DobPegHook Uniswap V4 Custom Accounting hook (NoOp beforeSwap +
beforeSwapReturnDelta) for 1:1 peg swaps
- Pool initialized against Unichain's PoolManager at
0x00B036B58a818B1BC34d502D3fE730Db729e62AC
- All core contracts (Registry, Vault, LPRegistry, USDC, RWA tokens) deployed
alongside
This makes Unichain a first-class chain for the DEX, using native Uniswap V4
infrastructure.
Reactive Network
Cross-chain oracle monitoring system using two contracts:
- ReactiveOracleSync.sol Deployed on Reactive Network Lasna Testnet (chain
5318007). It:
- Subscribes to PriceUpdated and LiquidationEnabled events from
DobValidatorRegistry on Unichain Sepolia
- When ReactVM detects a price drop below a configurable threshold, it emits
a Callback event
- Reactive Network delivers that callback cross-chain to Unichain
- OracleAlertReceiver.sol — Deployed on Unichain Sepolia. It:
-
Receives the cross-chain callbacks via Reactive Network's Callback Proxy
(0x9299472A6399Fd1027ebF067571Eb3e3D7837FC4)
-
Stores PriceAlert and LiquidationAlert records with full history and
per-token latest state
-
Only the Callback Proxy can call the onPriceAlert / onLiquidationEnabled
functions
Deployment flow: DeployUnichain.s.sol deploys everything on Unichain
(including the AlertReceiver), then DeployReactive.s.sol deploys
ReactiveOracleSync on Reactive Network pointing back to the Unichain
contracts.
The two partners work together Unichain hosts the DEX and oracle, Reactive
Network provides automated cross-chain monitoring of oracle price drops to
trigger liquidation alerts.
What are the key links to share? (Ex. demo video, GitHub, deck)
Github:https://github.com/Dobprotocol/Dobhooks
Slides: https://dex.dobprotocol.com/deck.html
Project Link:https://dex.dobprotocol.com
Demo Video:https://dex.dobprotocol.com/demo.mp4
Problem / Background: What inspired the idea? What problems are you solving?
Problem: Real-world assets (real estate, commodities, energy, etc.) are
illiquid, hard to fractionalize, and disconnected from DeFi. Existing DEXs use
AMM pricing that doesn't work for RWAs price discovery via liquidity pools
introduces slippage and divergence from the actual asset value.
Inspiration: Bridging the $hundreds-of-trillions in real-world assets into
DeFi requires purpose-built infrastructure not retrofitting AMMs designed
for fungible crypto tokens. DobDex is that infrastructure.
Impact: What makes this project unique? What impact will this make?
- First zero-slippage DEX for RWAs DobPegHook is a Uniswap V4 Custom
Accounting hook that intercepts swaps via beforeSwap + beforeSwapReturnDelta
and settles at exact oracle price. No AMM curve, no slippage, no impermanent
loss. The pool exists on Uniswap V4 but the hook completely overrides pricing
a NoOp pattern that hasn't been applied to RWAs before.
- Full-stack RWA protocol, not just a DEX Most projects solve one piece.
Dobprotocol owns the entire pipeline: validation → tokenization → oracle
pricing → trading → liquidation. Each layer feeds the next, and all are
designed for composability with external agents and protocols.
- AI-native architecture — Not "AI-assisted" as a feature — AI agents are the
primary operators. Validator agents autonomously assess asset quality and
update oracle feeds. LP strategy agents optimize liquidity allocation. This is
infrastructure for an autonomous agent economy around real-world assets.
- Permissionless liquidation market LPs don't just provide liquidity
passively. They set granular conditions per asset (minOraclePrice,
minPenaltyBps, maxExposure, usdcAllocation) and get filled FIFO when
distressed assets are liquidated. This creates a competitive, transparent
market for RWA distressed debt something that today happens behind closed
doors.