@0xsequence/account 2.3.15 → 2.3.16
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.
|
@@ -751,6 +751,9 @@ class Account {
|
|
|
751
751
|
case BigInt(network.ChainId.SKALE_NEBULA):
|
|
752
752
|
gasLimit = 10000000n;
|
|
753
753
|
break;
|
|
754
|
+
case BigInt(network.ChainId.SOMNIA_TESTNET):
|
|
755
|
+
gasLimit = 10000000n;
|
|
756
|
+
break;
|
|
754
757
|
}
|
|
755
758
|
|
|
756
759
|
// Wallet deployment will vary depending on the version
|
|
@@ -751,6 +751,9 @@ class Account {
|
|
|
751
751
|
case BigInt(network.ChainId.SKALE_NEBULA):
|
|
752
752
|
gasLimit = 10000000n;
|
|
753
753
|
break;
|
|
754
|
+
case BigInt(network.ChainId.SOMNIA_TESTNET):
|
|
755
|
+
gasLimit = 10000000n;
|
|
756
|
+
break;
|
|
754
757
|
}
|
|
755
758
|
|
|
756
759
|
// Wallet deployment will vary depending on the version
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@0xsequence/account",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.16",
|
|
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.3.
|
|
16
|
-
"@0xsequence/
|
|
17
|
-
"@0xsequence/
|
|
18
|
-
"@0xsequence/network": "2.3.
|
|
19
|
-
"@0xsequence/
|
|
20
|
-
"@0xsequence/sessions": "2.3.
|
|
21
|
-
"@0xsequence/utils": "2.3.
|
|
22
|
-
"@0xsequence/wallet": "2.3.
|
|
15
|
+
"@0xsequence/abi": "2.3.16",
|
|
16
|
+
"@0xsequence/migration": "2.3.16",
|
|
17
|
+
"@0xsequence/relayer": "2.3.16",
|
|
18
|
+
"@0xsequence/network": "2.3.16",
|
|
19
|
+
"@0xsequence/core": "2.3.16",
|
|
20
|
+
"@0xsequence/sessions": "2.3.16",
|
|
21
|
+
"@0xsequence/utils": "2.3.16",
|
|
22
|
+
"@0xsequence/wallet": "2.3.16"
|
|
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.3.
|
|
29
|
-
"@0xsequence/tests": "2.3.
|
|
28
|
+
"@0xsequence/signhub": "2.3.16",
|
|
29
|
+
"@0xsequence/tests": "2.3.16"
|
|
30
30
|
},
|
|
31
31
|
"files": [
|
|
32
32
|
"src",
|
package/src/account.ts
CHANGED