@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
@@ -747,6 +747,9 @@ class Account {
747
747
  case BigInt(ChainId.SKALE_NEBULA):
748
748
  gasLimit = 10000000n;
749
749
  break;
750
+ case BigInt(ChainId.SOMNIA_TESTNET):
751
+ gasLimit = 10000000n;
752
+ break;
750
753
  }
751
754
 
752
755
  // 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.15",
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.15",
16
- "@0xsequence/core": "2.3.15",
17
- "@0xsequence/migration": "2.3.15",
18
- "@0xsequence/network": "2.3.15",
19
- "@0xsequence/relayer": "2.3.15",
20
- "@0xsequence/sessions": "2.3.15",
21
- "@0xsequence/utils": "2.3.15",
22
- "@0xsequence/wallet": "2.3.15"
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.15",
29
- "@0xsequence/tests": "2.3.15"
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
@@ -739,6 +739,9 @@ export class Account {
739
739
  case BigInt(ChainId.SKALE_NEBULA):
740
740
  gasLimit = 10000000n
741
741
  break
742
+ case BigInt(ChainId.SOMNIA_TESTNET):
743
+ gasLimit = 10000000n
744
+ break
742
745
  }
743
746
 
744
747
  // Wallet deployment will vary depending on the version