@0dotxyz/p0-ts-sdk 2.3.0-alpha.8 → 2.3.0-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/vendor.cjs.map +1 -1
- package/dist/vendor.d.cts +6 -0
- package/dist/vendor.d.ts +6 -0
- package/dist/vendor.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -61416,6 +61416,10 @@ async function buildCandidates2(req, apiConfig) {
|
|
|
61416
61416
|
swapMode: "ExactIn" /* ExactIn */,
|
|
61417
61417
|
slippageBps: req.slippageBps,
|
|
61418
61418
|
onlyDirectRoutes: req.directRoutesOnly,
|
|
61419
|
+
// Exclude vote-account venues — they touch validator vote accounts that Jito won't bundle, so a
|
|
61420
|
+
// route through them would make the swap unlandable inside our flashloan / double-hop bundles
|
|
61421
|
+
// (same reason we strip `jito*` markers in vendor/titan/helpers).
|
|
61422
|
+
noVoteAccounts: true,
|
|
61419
61423
|
providers: TITAN_COMPOSABLE_PROVIDERS,
|
|
61420
61424
|
transactionTemplate: template
|
|
61421
61425
|
},
|