@haven-fi/solauto-sdk 1.0.406 → 1.0.407

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.
@@ -190,7 +190,8 @@ async function sendJitoBundledTransactions(umi, connection, signer, txs, txType,
190
190
  let builtTxs;
191
191
  let simulationResults;
192
192
  if (txType !== "skip-simulation") {
193
- builtTxs = await umiToVersionedTransactions(umi, latestBlockhash, signer, txs, false, feeEstimates);
193
+ builtTxs = await umiToVersionedTransactions(umi, latestBlockhash, signer, txs, true, // REVERT ME
194
+ feeEstimates);
194
195
  (0, generalUtils_1.consoleLog)(builtTxs.map((x) => x.message.compiledInstructions.map((y) => x.message.staticAccountKeys[y.programIdIndex].toString())));
195
196
  simulationResults = await simulateJitoBundle(umi, builtTxs);
196
197
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haven-fi/solauto-sdk",
3
- "version": "1.0.406",
3
+ "version": "1.0.407",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "description": "Typescript SDK for the Solauto program on the Solana blockchain",
@@ -293,7 +293,7 @@ export async function sendJitoBundledTransactions(
293
293
  latestBlockhash,
294
294
  signer,
295
295
  txs,
296
- false,
296
+ true, // REVERT ME
297
297
  feeEstimates
298
298
  );
299
299
  consoleLog(