@cowprotocol/sdk-viem-adapter 0.1.3 → 0.2.0

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
@@ -605,6 +605,8 @@ var ViemSignerAdapter = class extends import_sdk_common3.AbstractSigner {
605
605
  confirmations
606
606
  });
607
607
  return {
608
+ from: receipt.from,
609
+ to: receipt.to,
608
610
  transactionHash: receipt.transactionHash,
609
611
  blockNumber: BigInt(receipt.blockNumber),
610
612
  blockHash: receipt.blockHash,
package/dist/index.mjs CHANGED
@@ -629,6 +629,8 @@ var ViemSignerAdapter = class extends AbstractSigner {
629
629
  confirmations
630
630
  });
631
631
  return {
632
+ from: receipt.from,
633
+ to: receipt.to,
632
634
  transactionHash: receipt.transactionHash,
633
635
  blockNumber: BigInt(receipt.blockNumber),
634
636
  blockHash: receipt.blockHash,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cowprotocol/sdk-viem-adapter",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "Viem adapter for CoW Protocol SDK",
5
5
  "main": "dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -13,7 +13,7 @@
13
13
  "access": "public"
14
14
  },
15
15
  "dependencies": {
16
- "@cowprotocol/sdk-common": "0.2.2"
16
+ "@cowprotocol/sdk-common": "0.3.0"
17
17
  },
18
18
  "peerDependencies": {
19
19
  "viem": "^2.28.4"