eth-chainlist 0.0.248 → 0.0.250

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.250 (2023-10-05)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.249 ([6e3c4ff](https://github.com/poowf/eth-chainlist/commit/6e3c4ffdc3fa7e76355073d6e5df11385173160b))
9
+ * update chain data ([abea57e](https://github.com/poowf/eth-chainlist/commit/abea57ee0a0118398b7186fecbcd303385f13033))
10
+
11
+ ### 0.0.249 (2023-10-03)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.248 ([4afead5](https://github.com/poowf/eth-chainlist/commit/4afead57e4408d90d812a4c8c7379e5175da3392))
17
+ * update chain data ([b56128b](https://github.com/poowf/eth-chainlist/commit/b56128b9bc4467d281b12536e3ca61f4f7229097))
18
+
3
19
  ### 0.0.248 (2023-10-02)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -9032,6 +9032,7 @@ const chainArray = [
9032
9032
  {
9033
9033
  name: 'Movo Smart Chain Mainnet',
9034
9034
  chain: 'MOVO',
9035
+ icon: 'movo',
9035
9036
  rpc: [
9036
9037
  'https://msc-rpc.movoscan.com',
9037
9038
  'https://msc-rpc.movochain.org',
@@ -9044,7 +9045,6 @@ const chainArray = [
9044
9045
  chainId: 2049,
9045
9046
  networkId: 2049,
9046
9047
  slip44: 2050,
9047
- icon: 'movo',
9048
9048
  explorers: [
9049
9049
  {
9050
9050
  name: 'movoscan',
@@ -15218,6 +15218,25 @@ const chainArray = [
15218
15218
  }
15219
15219
  ]
15220
15220
  },
15221
+ {
15222
+ name: 'Zilliqa EVM Isolated Server',
15223
+ chain: 'ZIL',
15224
+ rpc: [ 'https://zilliqa-isolated-server.zilliqa.com/' ],
15225
+ faucets: [ 'https://dev-wallet.zilliqa.com/faucet?network=isolated_server' ],
15226
+ nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
15227
+ infoURL: 'https://www.zilliqa.com/',
15228
+ shortName: 'zil-isolated-server',
15229
+ chainId: 32990,
15230
+ networkId: 32990,
15231
+ icon: 'zilliqa',
15232
+ explorers: [
15233
+ {
15234
+ name: 'Zilliqa EVM Isolated Server Explorer',
15235
+ url: 'https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com',
15236
+ standard: 'none'
15237
+ }
15238
+ ]
15239
+ },
15221
15240
  {
15222
15241
  name: 'Zilliqa EVM Testnet',
15223
15242
  chain: 'ZIL',
@@ -15257,6 +15276,44 @@ const chainArray = [
15257
15276
  }
15258
15277
  ]
15259
15278
  },
15279
+ {
15280
+ name: 'Zilliqa EVM Devnet',
15281
+ chain: 'ZIL',
15282
+ rpc: [ 'https://api.devnet.zilliqa.com/' ],
15283
+ faucets: [ 'https://faucet.devnet.zilliqa.com/' ],
15284
+ nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
15285
+ infoURL: 'https://www.zilliqa.com/',
15286
+ shortName: 'zil-devnet',
15287
+ chainId: 33385,
15288
+ networkId: 33385,
15289
+ icon: 'zilliqa',
15290
+ explorers: [
15291
+ {
15292
+ name: 'Zilliqa EVM Devnet Explorer',
15293
+ url: 'https://otterscan.devnet.zilliqa.com',
15294
+ standard: 'EIP3091'
15295
+ }
15296
+ ]
15297
+ },
15298
+ {
15299
+ name: 'Zilliqa 2 EVM Devnet',
15300
+ chain: 'ZIL',
15301
+ rpc: [ 'https://api.zq2-devnet.zilstg.dev' ],
15302
+ faucets: [ 'https://faucet.zq2-devnet.zilstg.dev' ],
15303
+ nativeCurrency: { name: 'Zilliqa', symbol: 'ZIL', decimals: 18 },
15304
+ infoURL: 'https://www.zilliqa.com/',
15305
+ shortName: 'zq2-devnet',
15306
+ chainId: 33469,
15307
+ networkId: 33469,
15308
+ icon: 'zilliqa',
15309
+ explorers: [
15310
+ {
15311
+ name: 'Zilliqa 2 EVM Devnet Explorer',
15312
+ url: 'https://explorer.zq2-devnet.zilstg.dev',
15313
+ standard: 'EIP3091'
15314
+ }
15315
+ ]
15316
+ },
15260
15317
  {
15261
15318
  name: 'J2O Taro',
15262
15319
  chain: 'TARO',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.248",
3
+ "version": "0.0.250",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {