How did you integrate our partners, if any?

We built a keeper-free depeg circuit-breaker with Reactive Network. A Reactive Smart Contract on Reactive Lasna (OrbitalDepegReactive) subscribes to a Chainlink price feed's AnswerUpdated event for one of the pool's stablecoins; when the reported price leaves the peg band, it emits a cross-chain Callback to Unichain Sepolia. There the Reactive callback proxy invokes our OrbitalDepegCallback contract, which is registered as the hook's guardian and calls OrbitalHook.guardianPause() pausing the pool the instant an external oracle reports a depeg, faster than any human or keeper. The breaker can only pause (a fail-safe action); resuming the pool stays owner-only so a human reviews first. Unichain Sepolia (1301) is a supported Reactive destination, so the hook is the callback target directly and reactive-lib stays out of the audited core

What are the key links to share? (Ex. demo video, GitHub, deck)

Github: https://github.com/Oxkai/Orbital.Hook Slides: https://docs.google.com/presentation/d/1LNTvnNO2X7vZTLA7QAB-9TJrX7mUNy1U/edit?usp=sharing&ouid=105214943995009815133&rtpof=true&sd=true Project Link: https://orbital-hook.vercel.app Demo Video: https://vimeo.com/1200669208?share=copy&fl=sv&fe=ci

Problem / Background: What inspired the idea? What problems are you solving?

Stablecoin LPs look safe until a peg breaks. In a flat stableswap like Curve, a depeg drains the pool into the broken coin and every LP is left holding the bag the classic stable-LP impermanent loss. These pools are also capital-inefficient (liquidity is spread across prices that never trade) and practically capped at two or three assets, so a multi-stable pool fragments into many shallow pairs.

We were inspired by Paradigm's Orbital paper, which generalizes the stableswap onto an N-dimensional sphere. That geometry lets one pool hold many stablecoins at once, lets each LP concentrate liquidity tightly around the peg for far higher capital efficiency, and crucially isolates a single depegged coin instead of letting it poison the whole pool. We built that as a production Uniswap v4 hook so it plugs into real routing and flash accounting, turning the paper into something an LP can actually use.

Impact: What makes this project unique? What impact will this make?

Orbital is, to our knowledge, the first N-asset concentrated stableswap shipped as a live Uniswap v4 hook it takes Paradigm's Orbital paper from theory to a working on-chain pool. Its core features:

The impact is a stablecoin venue where deep multi-coin liquidity, high capital efficiency, and depeg protection coexist - making LPing in stables meaningfully safer and more profitable, and giving the v4 ecosystem a reusable higher-dimensional AMM primitive.

Challenges: What was challenging about building this project?

The hardest part was turning the Orbital paper's continuous geometry into exact, gas-bounded Solidity: