eth-chainlist 0.0.248 → 0.0.249

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,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.249 (2023-10-03)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.248 ([4afead5](https://github.com/poowf/eth-chainlist/commit/4afead57e4408d90d812a4c8c7379e5175da3392))
9
+ * update chain data ([b56128b](https://github.com/poowf/eth-chainlist/commit/b56128b9bc4467d281b12536e3ca61f4f7229097))
10
+
3
11
  ### 0.0.248 (2023-10-02)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -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.249",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {