near-safe 0.9.4 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -368,12 +368,14 @@ class NearSafe {
368
368
  return {
369
369
  method: "eth_sendTransaction",
370
370
  chainId,
371
- params: [{
371
+ params: [
372
+ {
372
373
  from: this.address,
373
374
  to: this.address,
374
375
  value: "0x0",
375
- data: new safe_1.SafeContractSuite().addOwnerData(recoveryAddress)
376
- }],
376
+ data: new safe_1.SafeContractSuite().addOwnerData(recoveryAddress),
377
+ },
378
+ ],
377
379
  };
378
380
  }
379
381
  }
@@ -371,12 +371,14 @@ export class NearSafe {
371
371
  return {
372
372
  method: "eth_sendTransaction",
373
373
  chainId,
374
- params: [{
374
+ params: [
375
+ {
375
376
  from: this.address,
376
377
  to: this.address,
377
378
  value: "0x0",
378
- data: new SafeContractSuite().addOwnerData(recoveryAddress)
379
- }],
379
+ data: new SafeContractSuite().addOwnerData(recoveryAddress),
380
+ },
381
+ ],
380
382
  };
381
383
  }
382
384
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "near-safe",
3
- "version": "0.9.4",
3
+ "version": "0.9.5",
4
4
  "license": "MIT",
5
5
  "description": "An SDK for controlling Ethereum Smart Accounts via ERC4337 from a Near Account.",
6
6
  "author": "bh2smith",