eth-chainlist 0.0.215 → 0.0.217

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.217 (2023-08-24)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.216 ([f06a2e9](https://github.com/poowf/eth-chainlist/commit/f06a2e944a68d3b2210d1fef945ccf980e3be3ee))
9
+ * update chain data ([9122a7a](https://github.com/poowf/eth-chainlist/commit/9122a7a177e1db2c858c6ca5b03f69f129584385))
10
+
11
+ ### 0.0.216 (2023-08-23)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.215 ([48d0663](https://github.com/poowf/eth-chainlist/commit/48d066344039d4f1776ee921ebe45f19c7934d88))
17
+ * update chain data ([450a707](https://github.com/poowf/eth-chainlist/commit/450a707a6cb220f7d895eadbc4141f5399c0d81a))
18
+
3
19
  ### 0.0.215 (2023-08-20)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -2676,9 +2676,9 @@ const chainArray = [
2676
2676
  networkId: 163
2677
2677
  },
2678
2678
  {
2679
- name: 'Omni Testnet 1',
2679
+ name: 'Omni Testnet',
2680
2680
  chain: 'Omni',
2681
- rpc: [ 'https://testnet-1.omni.network' ],
2681
+ rpc: [ 'https://testnet.omni.network' ],
2682
2682
  features: [ { name: 'EIP155' } ],
2683
2683
  faucets: [],
2684
2684
  nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
@@ -2689,7 +2689,7 @@ const chainArray = [
2689
2689
  explorers: [
2690
2690
  {
2691
2691
  name: 'Omni Explorer',
2692
- url: 'https://testnet-1.explorer.omni.network',
2692
+ url: 'https://testnet.explorer.omni.network',
2693
2693
  standard: 'EIP3091'
2694
2694
  }
2695
2695
  ]
@@ -7343,8 +7343,8 @@ const chainArray = [
7343
7343
  chain: 'Gobi',
7344
7344
  icon: 'eon',
7345
7345
  rpc: [
7346
- 'https://gobi-testnet.horizenlabs.io/ethv1',
7347
- 'https://rpc.ankr.com/horizen_testnet_evm'
7346
+ 'https://gobi-rpc.horizenlabs.io/ethv1',
7347
+ 'https://rpc.ankr.com/horizen_gobi_testnet'
7348
7348
  ],
7349
7349
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
7350
7350
  faucets: [ 'https://faucet.horizen.io' ],
@@ -12362,7 +12362,10 @@ const chainArray = [
12362
12362
  name: 'Mind Smart Chain Testnet',
12363
12363
  chain: 'tMIND',
12364
12364
  icon: 'mindchain',
12365
- rpc: [ 'https://testnet-msc.mindchain.info/' ],
12365
+ rpc: [
12366
+ 'https://testnet-msc.mindchain.info/',
12367
+ 'wss://testnet-msc.mindchain.info/ws'
12368
+ ],
12366
12369
  faucets: [ 'https://faucet.mindchain.info/' ],
12367
12370
  nativeCurrency: { name: 'MIND Coin', symbol: 'tMIND', decimals: 18 },
12368
12371
  infoURL: 'https://mindscan.info',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.215",
3
+ "version": "0.0.217",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {