Prism
Prism is a DeFi aggregator for OPN Chain. It puts swapping, earning yield, staking, and portfolio tracking behind one interface
by jrken_ny · submitted Jun 10, 2026
Community votes
0
Voting opens when this submission reaches the Top 10 stage.
Overall score
—/ 100
Weighted average across the 5 judging criteria.
Description
01/03
What the builder said.
Written by the team, rendered as the markdown they typed in the submission wizard.
What we built
Prism is a DeFi aggregator for OPN Chain. It puts swapping, earning yield, staking, and portfolio tracking behind one interface, so you can move through the OPN ecosystem's real deployed apps in a single click without leaving the page. If you have used Jumper or 1inch, it is that idea scoped to OPN.
For a first-time user: it is one app that lets you trade tokens and put them to work earning yield, instead of hunting down a separate site for each.
For a developer: it is a router contract plus a set of thin adapters. The frontend never talks to target protocols directly, and every action is a real on-chain transaction routed through Prism.
Why it matters
Most of the OPN ecosystem today is single-function: one vault here, one swap there, each with its own site. Prism is the layer on top that ties them together. The goal is not another isolated app. It is a front door that sends users into the apps that already exist, and a clean way for new apps to plug in.
How it works
You only ever interact with one contract, OPNRouter. It pulls your token, takes a small configurable fee on routed volume, and forwards the action to a whitelisted adapter that knows how to talk to a specific protocol. It is reentrancy-guarded and takes no custody beyond the single transaction.
Each integration is one small adapter:
RoutedSwapAdapter: swaps through Uniswap-V2-style AMMs, with the target router passed in calldata, so one adapter can route through any venue.VaultDepositAdapter: deposits into yield vaults.ZapAdapter: swap then deposit in a single call.StakeAdapterwithEscrowFactory: stakes into a per-user escrow contract.
New apps join by adding an adapter. The core router never changes. The same router handles swaps, earn, stake, and zaps, so the aggregator pattern is not tied to one action type.
People holding only the native gas token are covered too. routeNative wraps native OPN into WOPN inside the router, so you can swap or zap straight from OPN with no manual wrapping step.
What is live
Deployed and source-verified on OPN testnet (chain 984):
- Swaps route through the live OPNSwap V2 router over the real WOPN/mUSDT pool.
- Earn deposits go through
VaultDepositAdapterinto the PrismVault set. - Stake routes through
StakeAdapterinto a per-user escrow. - A native-OPN zap (OPN, then WOPN, then asset, then vault) runs in one transaction.
The frontend is Next.js with wagmi and viem: Swap, Earn, Stake, Portfolio, and Missions pages, multi-wallet connect, and a testnet faucet for mock tokens. Live stats (route count and routed volume) are read straight from on-chain Routed events.
Roadmap
02/03
What ships next.
The builder's own next-quarter plan. Use it to gauge follow-through and ambition.
Now: hardening for mainnet (Q4 2026)
- Move the verified testnet stack (router, adapters, vaults) to OPN mainnet behind a small fee on routed volume.
- Get an independent review of
OPNRouterand the adapters before any mainnet value flows. The core is deliberately small and reentrancy-guarded to keep that review tight. - Add an ERC-4626 vault adapter so Prism can route into standard vaults without writing a custom adapter each time.
Next: real integrations (Q4 2026)
- Plug live OPN apps into Prism through adapters, starting with AMMs and yield vaults already deployed on chain. Each integration is one thin contract, and the router never changes.
- Ship a referral and attribution flow so apps and partners that send volume through Prism are credited on chain.
- Add a lending adapter (supply and borrow) to extend Earn beyond vaults.
2027 and beyond
- Open the adapter spec and a submission path, so other builders add their own integrations instead of waiting on us.
- Split a single swap across pools for better pricing (cross-venue routing).
- Deepen Portfolio and Missions: more price sources, richer on-chain history, and quests tied to real protocol usage.
On-chain proof
03/03
10 contracts on OPN Chain.
The chain itself confirmed every deployment is valid, signed by the builder's wallet, and inside the season's window.