@atomiqlabs/chain-evm 1.0.0-dev.34 → 1.0.0-dev.35

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.
@@ -223,12 +223,13 @@ class EVMSwapData extends base_1.SwapData {
223
223
  other.payIn === this.payIn &&
224
224
  other.payOut === this.payOut &&
225
225
  other.reputation === this.reputation &&
226
- this.sequence === other.sequence &&
226
+ other.sequence === this.sequence &&
227
227
  other.claimData.toLowerCase() === this.claimData.toLowerCase() &&
228
228
  other.refundData.toLowerCase() === this.refundData.toLowerCase() &&
229
229
  other.amount === this.amount &&
230
230
  other.securityDeposit === this.securityDeposit &&
231
- other.claimerBounty === this.claimerBounty;
231
+ other.claimerBounty === this.claimerBounty &&
232
+ other.successActionCommitment.toLowerCase() === this.successActionCommitment.toLowerCase();
232
233
  }
233
234
  toEscrowStruct() {
234
235
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atomiqlabs/chain-evm",
3
- "version": "1.0.0-dev.34",
3
+ "version": "1.0.0-dev.35",
4
4
  "description": "EVM specific base implementation",
5
5
  "main": "./dist/index.js",
6
6
  "types:": "./dist/index.d.ts",
@@ -317,12 +317,13 @@ export class EVMSwapData extends SwapData {
317
317
  other.payIn===this.payIn &&
318
318
  other.payOut===this.payOut &&
319
319
  other.reputation===this.reputation &&
320
- this.sequence === other.sequence &&
320
+ other.sequence === this.sequence &&
321
321
  other.claimData.toLowerCase()===this.claimData.toLowerCase() &&
322
322
  other.refundData.toLowerCase()===this.refundData.toLowerCase() &&
323
323
  other.amount === this.amount &&
324
324
  other.securityDeposit === this.securityDeposit &&
325
- other.claimerBounty === this.claimerBounty
325
+ other.claimerBounty === this.claimerBounty &&
326
+ other.successActionCommitment.toLowerCase() === this.successActionCommitment.toLowerCase()
326
327
  }
327
328
 
328
329
  toEscrowStruct(): EscrowDataStruct {