@cowprotocol/sdk-ethers-v6-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
@@ -429,6 +429,8 @@ var EthersV6SignerAdapter = class extends import_sdk_common3.AbstractSigner {
429
429
  throw new Error("Transaction failed");
430
430
  }
431
431
  return {
432
+ from: receipt.from,
433
+ to: receipt.to,
432
434
  transactionHash: receipt.hash,
433
435
  blockNumber: BigInt(receipt.blockNumber),
434
436
  blockHash: receipt.blockHash || "",
package/dist/index.mjs CHANGED
@@ -436,6 +436,8 @@ var EthersV6SignerAdapter = class extends AbstractSigner {
436
436
  throw new Error("Transaction failed");
437
437
  }
438
438
  return {
439
+ from: receipt.from,
440
+ to: receipt.to,
439
441
  transactionHash: receipt.hash,
440
442
  blockNumber: BigInt(receipt.blockNumber),
441
443
  blockHash: receipt.blockHash || "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cowprotocol/sdk-ethers-v6-adapter",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "Ethers v6 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
  "ethers": "^6.13.7"