@0dotxyz/p0-ts-sdk 2.3.0-alpha.8 → 2.3.1
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.js
CHANGED
|
@@ -61389,6 +61389,10 @@ async function buildCandidates2(req, apiConfig) {
|
|
|
61389
61389
|
swapMode: "ExactIn" /* ExactIn */,
|
|
61390
61390
|
slippageBps: req.slippageBps,
|
|
61391
61391
|
onlyDirectRoutes: req.directRoutesOnly,
|
|
61392
|
+
// Exclude vote-account venues — they touch validator vote accounts that Jito won't bundle, so a
|
|
61393
|
+
// route through them would make the swap unlandable inside our flashloan / double-hop bundles
|
|
61394
|
+
// (same reason we strip `jito*` markers in vendor/titan/helpers).
|
|
61395
|
+
noVoteAccounts: true,
|
|
61392
61396
|
providers: TITAN_COMPOSABLE_PROVIDERS,
|
|
61393
61397
|
transactionTemplate: template
|
|
61394
61398
|
},
|