@haven-fi/solauto-sdk 1.0.309 → 1.0.310

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.
@@ -170,7 +170,7 @@ async function getComputeUnitPriceEstimate(umi, tx, prioritySetting) {
170
170
  }
171
171
  return feeEstimate;
172
172
  }
173
- async function spamSendTransactionUntilConfirmed(connection, transaction, blockhash, spamInterval = 3000) {
173
+ async function spamSendTransactionUntilConfirmed(connection, transaction, blockhash, spamInterval = 1500) {
174
174
  let transactionSignature = null;
175
175
  const sendTx = async () => {
176
176
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haven-fi/solauto-sdk",
3
- "version": "1.0.309",
3
+ "version": "1.0.310",
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",
@@ -317,7 +317,7 @@ async function spamSendTransactionUntilConfirmed(
317
317
  connection: Connection,
318
318
  transaction: Transaction | VersionedTransaction,
319
319
  blockhash: BlockhashWithExpiryBlockHeight,
320
- spamInterval: number = 3000
320
+ spamInterval: number = 1500
321
321
  ): Promise<string> {
322
322
  let transactionSignature: string | null = null;
323
323