eth-chainlist 0.0.683 → 0.0.685

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.685 (2025-09-17)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.684 ([a333d10](https://github.com/poowf/eth-chainlist/commit/a333d102e67b337ee34b7eed4711f892cfbd628e))
9
+ * update chain data ([5d3a657](https://github.com/poowf/eth-chainlist/commit/5d3a657215136f5b39ae7ba4922b370e4e505e08))
10
+
11
+ ### 0.0.684 (2025-09-08)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.683 ([41bfe2c](https://github.com/poowf/eth-chainlist/commit/41bfe2c9225cbf79b75c97c23a9b5b04a2f46776))
17
+ * update chain data ([4e19315](https://github.com/poowf/eth-chainlist/commit/4e19315d93063136c110b4df84dfe8e19757bbb2))
18
+
3
19
  ### 0.0.683 (2025-09-01)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -2967,7 +2967,14 @@ const chainArray = [
2967
2967
  infoURL: 'https://eteria.io',
2968
2968
  shortName: 'ERA',
2969
2969
  chainId: 140,
2970
- networkId: 140
2970
+ networkId: 140,
2971
+ explorers: [
2972
+ {
2973
+ name: 'eteriascan',
2974
+ url: 'https://explorer.eteria.io',
2975
+ standard: 'EIP3091'
2976
+ }
2977
+ ]
2971
2978
  },
2972
2979
  {
2973
2980
  name: 'Openpiece Testnet',
@@ -25381,15 +25388,21 @@ const chainArray = [
25381
25388
  {
25382
25389
  name: 'Plasma Mainnet',
25383
25390
  chain: 'Plasma',
25384
- rpc: [],
25391
+ rpc: [ 'https://rpc.plasma.to' ],
25385
25392
  faucets: [],
25386
25393
  nativeCurrency: { name: 'Plasma', symbol: 'XPL', decimals: 18 },
25387
25394
  infoURL: 'https://plasma.to',
25388
- shortName: 'plasma-mainnet',
25395
+ shortName: 'plasma',
25389
25396
  chainId: 9745,
25390
25397
  networkId: 9745,
25391
25398
  icon: 'plasma',
25392
- explorers: []
25399
+ explorers: [
25400
+ {
25401
+ name: 'Routescan',
25402
+ url: 'https://plasmascan.to',
25403
+ standard: 'EIP3091'
25404
+ }
25405
+ ]
25393
25406
  },
25394
25407
  {
25395
25408
  name: 'Plasma Testnet',
@@ -25410,6 +25423,19 @@ const chainArray = [
25410
25423
  }
25411
25424
  ]
25412
25425
  },
25426
+ {
25427
+ name: 'Plasma Devnet',
25428
+ chain: 'Plasma',
25429
+ rpc: [ 'https://devnet-rpc.plasma.to' ],
25430
+ faucets: [],
25431
+ nativeCurrency: { name: 'Devnet Plasma', symbol: 'XPL', decimals: 18 },
25432
+ infoURL: 'https://plasma.to',
25433
+ shortName: 'plasma-devnet',
25434
+ chainId: 9747,
25435
+ networkId: 9747,
25436
+ icon: 'plasma',
25437
+ explorers: []
25438
+ },
25413
25439
  {
25414
25440
  name: 'MainnetZ Testnet',
25415
25441
  chain: 'NetZ',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.683",
3
+ "version": "0.0.685",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {