eth-chainlist 0.0.683 → 0.0.684

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.684 (2025-09-08)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.683 ([41bfe2c](https://github.com/poowf/eth-chainlist/commit/41bfe2c9225cbf79b75c97c23a9b5b04a2f46776))
9
+ * update chain data ([4e19315](https://github.com/poowf/eth-chainlist/commit/4e19315d93063136c110b4df84dfe8e19757bbb2))
10
+
3
11
  ### 0.0.683 (2025-09-01)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -25381,15 +25381,21 @@ const chainArray = [
25381
25381
  {
25382
25382
  name: 'Plasma Mainnet',
25383
25383
  chain: 'Plasma',
25384
- rpc: [],
25384
+ rpc: [ 'https://rpc.plasma.to' ],
25385
25385
  faucets: [],
25386
25386
  nativeCurrency: { name: 'Plasma', symbol: 'XPL', decimals: 18 },
25387
25387
  infoURL: 'https://plasma.to',
25388
- shortName: 'plasma-mainnet',
25388
+ shortName: 'plasma',
25389
25389
  chainId: 9745,
25390
25390
  networkId: 9745,
25391
25391
  icon: 'plasma',
25392
- explorers: []
25392
+ explorers: [
25393
+ {
25394
+ name: 'Routescan',
25395
+ url: 'https://plasmascan.to',
25396
+ standard: 'EIP3091'
25397
+ }
25398
+ ]
25393
25399
  },
25394
25400
  {
25395
25401
  name: 'Plasma Testnet',
@@ -25410,6 +25416,19 @@ const chainArray = [
25410
25416
  }
25411
25417
  ]
25412
25418
  },
25419
+ {
25420
+ name: 'Plasma Devnet',
25421
+ chain: 'Plasma',
25422
+ rpc: [ 'https://devnet-rpc.plasma.to' ],
25423
+ faucets: [],
25424
+ nativeCurrency: { name: 'Devnet Plasma', symbol: 'XPL', decimals: 18 },
25425
+ infoURL: 'https://plasma.to',
25426
+ shortName: 'plasma-devnet',
25427
+ chainId: 9747,
25428
+ networkId: 9747,
25429
+ icon: 'plasma',
25430
+ explorers: []
25431
+ },
25413
25432
  {
25414
25433
  name: 'MainnetZ Testnet',
25415
25434
  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.684",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {