feat(solana-solvers): PR 2.2 buy orders via v1 ExactOut#4637
Draft
squadgazzz wants to merge 1 commit into
Draft
Conversation
squadgazzz
force-pushed
the
solana-solvers/PR2.2-buy-orders
branch
from
July 17, 2026 16:11
c39f6f0 to
636bc46
Compare
squadgazzz
force-pushed
the
solana-solvers/PR2.2-buy-orders
branch
from
July 17, 2026 17:22
636bc46 to
742b0ac
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Buy-order support for the Jupiter solver, split out from PR2 and gated off by default. Both sides share the v1 path: PR2 quotes sells with ExactIn, this adds ExactOut for buys. Stacked on PR2.
Changes
enable_buy_ordersconfig flag, off by default. While off, buy orders returnOrderNotSupported.swap()picksswapModeper side:ExactInfor sells,ExactOutfor buys. Same/swap/v1/quote+/swap-instructionspath and DTO as sells, no new response type.How to test
New unit test (buy gated off). Live
#[ignore]buy test (ExactOut):cargo test -p solana-solvers -- --ignored jupiter_live(keyless works,JUPITER_API_KEYoptional).Notes
solana-solvers/PR2-jupiter-adapter), review that first.