@cowprotocol/sdk-ethers-v5-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
@@ -245,6 +245,8 @@ var EthersV5SignerAdapter = class extends import_sdk_common.AbstractSigner {
245
245
  wait: async (confirmations) => {
246
246
  const receipt = await tx.wait(confirmations);
247
247
  return {
248
+ from: receipt.from,
249
+ to: receipt.to,
248
250
  transactionHash: receipt.transactionHash,
249
251
  blockNumber: BigInt(receipt.blockNumber),
250
252
  blockHash: receipt.blockHash,
package/dist/index.mjs CHANGED
@@ -222,6 +222,8 @@ var EthersV5SignerAdapter = class extends AbstractSigner {
222
222
  wait: async (confirmations) => {
223
223
  const receipt = await tx.wait(confirmations);
224
224
  return {
225
+ from: receipt.from,
226
+ to: receipt.to,
225
227
  transactionHash: receipt.transactionHash,
226
228
  blockNumber: BigInt(receipt.blockNumber),
227
229
  blockHash: receipt.blockHash,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cowprotocol/sdk-ethers-v5-adapter",
3
- "version": "0.1.3",
3
+ "version": "0.2.0",
4
4
  "description": "Ethers v5 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
  "@ethersproject/abstract-signer": "^5.8.0",