@haven-fi/solauto-sdk 1.0.823 → 1.0.825

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.
@@ -188,7 +188,7 @@ async function sendJitoBundledTransactions(umi, connection, userSigner, otherSig
188
188
  (0, generalUtils_1.consoleLog)("Transactions: ", txs.length);
189
189
  (0, generalUtils_1.consoleLog)(txs.map((tx) => tx.getInstructions().map((x) => x.programId.toString())));
190
190
  (0, generalUtils_1.consoleLog)("Transaction sizes: ", txs.map((x) => x.getTransactionSize(umi)));
191
- txs[0] = (0, solanaUtils_1.prependTx)(txs[0], [getTipInstruction(userSigner, 250000)]);
191
+ txs[0] = (0, solanaUtils_1.prependTx)(txs[0], [getTipInstruction(userSigner, 500000)]);
192
192
  const latestBlockhash = (await (0, generalUtils_1.retryWithExponentialBackoff)(async () => await umi.rpc.getLatestBlockhash({ commitment: "confirmed" }))).blockhash;
193
193
  if (abortController?.signal.aborted) {
194
194
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haven-fi/solauto-sdk",
3
- "version": "1.0.823",
3
+ "version": "1.0.825",
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",
@@ -302,7 +302,7 @@ export async function sendJitoBundledTransactions(
302
302
  txs.map((x) => x.getTransactionSize(umi))
303
303
  );
304
304
 
305
- txs[0] = prependTx(txs[0], [getTipInstruction(userSigner, 250_000)]);
305
+ txs[0] = prependTx(txs[0], [getTipInstruction(userSigner, 500_000)]);
306
306
 
307
307
  const latestBlockhash = (
308
308
  await retryWithExponentialBackoff(