@0xsequence/relayer 0.36.13 → 0.38.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsequence/relayer",
3
- "version": "0.36.13",
3
+ "version": "0.38.0",
4
4
  "description": "relayer sub-package for Sequence",
5
5
  "repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/relayer",
6
6
  "source": "src/index.ts",
@@ -17,10 +17,10 @@
17
17
  "typecheck": "tsc --noEmit"
18
18
  },
19
19
  "dependencies": {
20
- "@0xsequence/abi": "^0.36.13",
21
- "@0xsequence/config": "^0.36.13",
22
- "@0xsequence/transactions": "^0.36.13",
23
- "@0xsequence/utils": "^0.36.13",
20
+ "@0xsequence/abi": "^0.38.0",
21
+ "@0xsequence/config": "^0.38.0",
22
+ "@0xsequence/transactions": "^0.38.0",
23
+ "@0xsequence/utils": "^0.38.0",
24
24
  "@ethersproject/providers": "^5.5.1",
25
25
  "ethers": "^5.5.2",
26
26
  "fetch-ponyfill": "^7.1.0"
@@ -233,7 +233,7 @@ export class RpcRelayer extends BaseRelayer implements Relayer {
233
233
  hash: txReceipt.transactionHash,
234
234
  raw: receipt.txnReceipt,
235
235
  receipt: txReceipt, // extended type which is Sequence-specific. Contains the decoded metaTxReceipt
236
- wait: async (confirmations?: number) => this.provider!.waitForTransaction(txReceipt.transactionHash, confirmations),
236
+ wait: async (confirmations?: number) => this.provider!.waitForTransaction(txReceipt.transactionHash, confirmations)
237
237
  } as TransactionResponse
238
238
  }
239
239
  }