@0xsequence/account 2.1.4 → 2.1.5
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.
|
@@ -660,7 +660,8 @@ class Account {
|
|
|
660
660
|
await this.tracker.savePresignedConfiguration({
|
|
661
661
|
wallet: this.address,
|
|
662
662
|
nextConfig: config,
|
|
663
|
-
signature
|
|
663
|
+
signature,
|
|
664
|
+
referenceChainId: 1
|
|
664
665
|
});
|
|
665
666
|
|
|
666
667
|
// safety check, tracker should have a reverse lookup for the imageHash
|
|
@@ -660,7 +660,8 @@ class Account {
|
|
|
660
660
|
await this.tracker.savePresignedConfiguration({
|
|
661
661
|
wallet: this.address,
|
|
662
662
|
nextConfig: config,
|
|
663
|
-
signature
|
|
663
|
+
signature,
|
|
664
|
+
referenceChainId: 1
|
|
664
665
|
});
|
|
665
666
|
|
|
666
667
|
// safety check, tracker should have a reverse lookup for the imageHash
|
|
@@ -656,7 +656,8 @@ class Account {
|
|
|
656
656
|
await this.tracker.savePresignedConfiguration({
|
|
657
657
|
wallet: this.address,
|
|
658
658
|
nextConfig: config,
|
|
659
|
-
signature
|
|
659
|
+
signature,
|
|
660
|
+
referenceChainId: 1
|
|
660
661
|
});
|
|
661
662
|
|
|
662
663
|
// safety check, tracker should have a reverse lookup for the imageHash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0xsequence/account",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.5",
|
|
4
4
|
"description": "tools for migrating sequence wallets to new versions",
|
|
5
5
|
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/account",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -12,21 +12,21 @@
|
|
|
12
12
|
"ethers": ">=6"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@0xsequence/abi": "2.1.
|
|
16
|
-
"@0xsequence/core": "2.1.
|
|
17
|
-
"@0xsequence/migration": "2.1.
|
|
18
|
-
"@0xsequence/network": "2.1.
|
|
19
|
-
"@0xsequence/relayer": "2.1.
|
|
20
|
-
"@0xsequence/sessions": "2.1.
|
|
21
|
-
"@0xsequence/utils": "2.1.
|
|
22
|
-
"@0xsequence/wallet": "2.1.
|
|
15
|
+
"@0xsequence/abi": "2.1.5",
|
|
16
|
+
"@0xsequence/core": "2.1.5",
|
|
17
|
+
"@0xsequence/migration": "2.1.5",
|
|
18
|
+
"@0xsequence/network": "2.1.5",
|
|
19
|
+
"@0xsequence/relayer": "2.1.5",
|
|
20
|
+
"@0xsequence/sessions": "2.1.5",
|
|
21
|
+
"@0xsequence/utils": "2.1.5",
|
|
22
|
+
"@0xsequence/wallet": "2.1.5"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@istanbuljs/nyc-config-typescript": "^1.0.2",
|
|
26
26
|
"ethers": "6.13.4",
|
|
27
27
|
"nyc": "^15.1.0",
|
|
28
|
-
"@0xsequence/signhub": "2.1.
|
|
29
|
-
"@0xsequence/tests": "2.1.
|
|
28
|
+
"@0xsequence/signhub": "2.1.5",
|
|
29
|
+
"@0xsequence/tests": "2.1.5"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"src",
|
package/src/account.ts
CHANGED
|
@@ -665,7 +665,8 @@ export class Account {
|
|
|
665
665
|
await this.tracker.savePresignedConfiguration({
|
|
666
666
|
wallet: this.address,
|
|
667
667
|
nextConfig: config,
|
|
668
|
-
signature
|
|
668
|
+
signature,
|
|
669
|
+
referenceChainId: 1
|
|
669
670
|
})
|
|
670
671
|
|
|
671
672
|
// safety check, tracker should have a reverse lookup for the imageHash
|