@defuse-protocol/intents-sdk 0.56.0 → 0.56.1

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/src/sdk.cjs CHANGED
@@ -407,10 +407,12 @@ var IntentsSDK = class {
407
407
  intent: args.intent,
408
408
  logger: args.logger
409
409
  });
410
+ args.logger?.info("Intent published", { intentHash });
410
411
  const intentTx = await this.waitForIntentSettlement({
411
412
  intentHash,
412
413
  logger: args.logger
413
414
  });
415
+ args.logger?.info("Intent settled", { txHash: intentTx.hash });
414
416
  const destinationTx = await this.waitForWithdrawalCompletion({
415
417
  withdrawalParams,
416
418
  intentTx,
package/dist/src/sdk.js CHANGED
@@ -405,10 +405,12 @@ var IntentsSDK = class {
405
405
  intent: args.intent,
406
406
  logger: args.logger
407
407
  });
408
+ args.logger?.info("Intent published", { intentHash });
408
409
  const intentTx = await this.waitForIntentSettlement({
409
410
  intentHash,
410
411
  logger: args.logger
411
412
  });
413
+ args.logger?.info("Intent settled", { txHash: intentTx.hash });
412
414
  const destinationTx = await this.waitForWithdrawalCompletion({
413
415
  withdrawalParams,
414
416
  intentTx,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defuse-protocol/intents-sdk",
3
- "version": "0.56.0",
3
+ "version": "0.56.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "repository": {
@@ -45,8 +45,8 @@
45
45
  "ripple-address-codec": "^5.0.0",
46
46
  "valibot": "^1.0.0",
47
47
  "viem": "^2.0.0",
48
- "@defuse-protocol/contract-types": "0.6.2",
49
- "@defuse-protocol/internal-utils": "0.29.0"
48
+ "@defuse-protocol/internal-utils": "0.29.0",
49
+ "@defuse-protocol/contract-types": "0.6.2"
50
50
  },
51
51
  "devDependencies": {
52
52
  "tsdown": "0.19.0"