@haven-fi/solauto-sdk 1.0.768 → 1.0.769

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.
@@ -225,7 +225,7 @@ async function spamSendTransactionUntilConfirmed(connection, transaction, blockh
225
225
  let transactionSignature;
226
226
  const sendTx = async () => {
227
227
  try {
228
- const txSignature = await connection.sendRawTransaction(Buffer.from(transaction.serialize()), { skipPreflight: true, maxRetries: 0 });
228
+ const txSignature = await connection.sendRawTransaction(Buffer.from(transaction.serialize()), { skipPreflight: true, maxRetries: 3 });
229
229
  if (!transactionSignature) {
230
230
  transactionSignature = txSignature;
231
231
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haven-fi/solauto-sdk",
3
- "version": "1.0.768",
3
+ "version": "1.0.769",
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",
@@ -393,7 +393,7 @@ async function spamSendTransactionUntilConfirmed(
393
393
  try {
394
394
  const txSignature = await connection.sendRawTransaction(
395
395
  Buffer.from(transaction.serialize()),
396
- { skipPreflight: true, maxRetries: 0 }
396
+ { skipPreflight: true, maxRetries: 3 }
397
397
  );
398
398
  if (!transactionSignature) {
399
399
  transactionSignature = txSignature;