๐๏ธ What to Build on SUAVE
A good way to generate value is to design an app that is uniquely enabled by SUAVE โจ.
SUAVE exhibits three key differences from existing blockchains:
- Programmable privacy ๐
- Credible offchain computation ๐ป
- Faster block time (than Eth L1) โฑ๏ธ
You can see what is currently being built on SUAVE in our community directory.
Categoriesโ
In present-day Ethereum, there are many centralized services used to coordinate and mitigate the effects of MEV. Most of the categories below are based on these existing services:
- ๐ OFAs
- ๐ Searchers
- ๐งฎ Solvers
- ๐ข RFQ
- ๐ฏ Intents
- ๐ AMMs
- ๐ฃ Auctions
- ๐ธ PFOF
- ๐ ๏ธ Block Builders
- ๐ Rollup Scheduler
- ๐งฉ Blob Merger
SUAVE also enables new and unique decentralized application paradigms:
๐ OFA (Order Flow Auctions)โ
Order Flow Auctions (OFAs) are responsible for taking in a transaction or intent and routing it somewhere, either based on predefined logic, an auction, or by introspecting the transaction or intent.
You can learn more about it by reading "Illuminating Ethereum's Order Flow Landscape".
- MEV-Share ๐
- MEV-Blocker ๐๏ธ
- MEV-Share+
- Dynamic refund: currently, users set their own refund percent, but depending on the state of the mempool and blockspace auction, they may want a lower or higher refund percent. A SUAPP could simulate a user's trade, query L1 state to get pool and token information, and use this to reason about what refund % to use on that userโs bundle.
- Dynamic hint: one of the open research questions around programmable privacy is where the privacy efficiency lies. An example of this, relevant to MEV-Share, is as follows: given a Uniswap L1 trade, how much information should be revealed? A $10 trade most likely can leak the entire trade details because it would be better to batch, but a very large trade has a risk of being probabilistically front-run; therefore, it should leak less information, or at least that is one possibility.
- Batching user trades and back-runs together. In all these cases, a SUAPP could simulate a user's trade, query L1 state to get pool and token information, and use this to reason about what refund % to use on that userโs bundle.
๐ Searchersโ
Take an existing searcher bot design, write it in Solidity, and put it on-chain! Simple strategies will be more effective with the current state of the network and can take advantage of the sendBundle
precompile to send bundles to centralized block builders.
๐งฎ Solversโ
Solvers are responsible for finding mathematically optimal solutions in combinatorially large solution spaces, usually framed as finding optimal routes through multiple liquidity pools or in matching coincidences-of-wants. Solvers can be implemented in Solidity and operate on order flow and intents submitted by users to SUAVE.
๐ข RFQ (Request for Quote)โ
RFQs, or Requests for Quote, are off-chain services that take a user's ask, broadcast it to a network of market makers, and respond with the best price. A SUAPP could do this in two ways:
- Use an HTTP post precompile to send to a list of market makers, or
- Accept a curve of prices a market maker is willing to fill at and automatically respond on their behalf.
The second option changes the nature of RFQs, as market makers would not need to continuously update new pricing curves.
๐ฏ Intentsโ
Intents refer to โwhatโ the desired outcome of an action on a blockchain should be as opposed to transactions which specify โhowโ an action should be performed. Intents and Solvers work together very closely as some solvers aggregate intents in order to maximize user welfare under various definitions. In order to support these functionalities on SUAVE, you can help deploy various intent formats!
- ERC-7521 ๐
- ERC-4337: UserOps ๐
๐ AMMs (Automated Market Makers)โ
The ability for SUAVE to emit transactions and perform off-chain and confidential compute opens numerous doors for AMM designs.
- More expressive liquidity management ๐
- Private liquidity ๐
- UniV4 hook integrations ๐
๐ฃ Auctionsโ
Auctions, and mechanism design more broadly, can encompass most of the ideas on this page. But some specific interesting auction ideas include:
- Private NFT auction ๐ผ๏ธ
- Combinatorial Auction ๐ค
- Dutch Auctions - Fee escalators could be one example that are especially interesting combined with a programmable information leakage model like MEV-Share.
- Ad Auctions - Learn about header bidding first. Then, create a snippet/plugin that websites can integrate into their frontend so whenever a user visits the website, the data is sent to multiple auction houses/ad publishers, who then participate in an auction. In our case, the website owner would send the CCR to the auction contract, specifying some Kettle(s), and then the off-chain components do the actual auction and return the winning bid.
๐ธ PFOF (Payment for Order Flow)โ
Design a SUAPP where wallets can forward order flow to and bulk auction off the transactions to searchers and market-makers.
๐ ๏ธ Block Buildersโ
There is a vast amount of builder algorithms live in the current Ethereum blockspace market; any of these can be implemented on SUAVE. Additional precompile support may be needed for more advanced functionality but can be merged relatively fast.