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.
- package/dist/cjs/near-safe.js +5 -3
- package/dist/esm/near-safe.js +5 -3
- package/package.json +1 -1
package/dist/cjs/near-safe.js
CHANGED
@@ -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
|
}
|
package/dist/esm/near-safe.js
CHANGED
@@ -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
|
}
|