flipmeme-sdk 1.3.49 → 1.3.51

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.js CHANGED
@@ -32502,7 +32502,7 @@ var SolanaConnector = class {
32502
32502
  );
32503
32503
  return result;
32504
32504
  } catch (e) {
32505
- console.error("Buy failed:", JSON.stringify(e));
32505
+ console.error("Buy failed:", e);
32506
32506
  }
32507
32507
  return { successCount: 0, failedCount: 0 };
32508
32508
  });
@@ -33016,14 +33016,17 @@ var SolanaConnector = class {
33016
33016
  return __async(this, null, function* () {
33017
33017
  let successCount = 0;
33018
33018
  let failedCount = 0;
33019
+ console.log("===confirm signature===", signatures);
33019
33020
  for (const index in signatures) {
33020
33021
  if (signatures[index]) {
33021
33022
  if (signatures[index].signature) {
33023
+ console.log("===confirm signature===", signatures[index].signature);
33022
33024
  const confirmResult = yield this.config.provider.connection.confirmTransaction({
33023
33025
  blockhash: latestBlockhash.blockhash,
33024
33026
  lastValidBlockHeight: latestBlockhash.lastValidBlockHeight,
33025
33027
  signature: signatures[index].signature
33026
33028
  });
33029
+ console.log("===confirm result===", confirmResult);
33027
33030
  if (confirmResult.value.err == null) {
33028
33031
  successCount += transactions[index].instructionCount;
33029
33032
  } else {