eth-chainlist 0.0.394 → 0.0.395

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.395 (2024-05-05)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.394 ([1eee58e](https://github.com/poowf/eth-chainlist/commit/1eee58ec358baabf34642d36523f75fcd1268dc3))
9
+ * update chain data ([803256f](https://github.com/poowf/eth-chainlist/commit/803256f1d6ec1fe3a93c71470dcf898cda2e794f))
10
+
3
11
  ### 0.0.394 (2024-05-04)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -25395,6 +25395,21 @@ const chainArray = [
25395
25395
  }
25396
25396
  ]
25397
25397
  },
25398
+ {
25399
+ name: 'Mind Network Testnet',
25400
+ chain: 'FHET',
25401
+ rpc: [
25402
+ 'https://rpc_testnet.mindnetwork.xyz',
25403
+ 'wss://rpc_testnet.mindnetwork.xyz'
25404
+ ],
25405
+ faucets: [],
25406
+ nativeCurrency: { name: 'FHE', symbol: 'FHE', decimals: 18 },
25407
+ features: [ { name: 'EIP155' } ],
25408
+ infoURL: 'https://mindnetwork.xyz',
25409
+ shortName: 'fhet',
25410
+ chainId: 192940,
25411
+ networkId: 192940
25412
+ },
25398
25413
  {
25399
25414
  name: 'Milkomeda C1 Testnet',
25400
25415
  chain: 'milkTAda',
@@ -27085,6 +27100,24 @@ const chainArray = [
27085
27100
  }
27086
27101
  ]
27087
27102
  },
27103
+ {
27104
+ name: 'Xai Mainnet',
27105
+ chainId: 660279,
27106
+ shortName: 'xai',
27107
+ chain: 'XAI',
27108
+ networkId: 660279,
27109
+ nativeCurrency: { name: 'Xai', symbol: 'XAI', decimals: 18 },
27110
+ rpc: [ 'https://xai-chain.net/rpc' ],
27111
+ faucets: [],
27112
+ explorers: [
27113
+ {
27114
+ name: 'Blockscout',
27115
+ url: 'https://explorer.xai-chain.net',
27116
+ standard: 'EIP3091'
27117
+ }
27118
+ ],
27119
+ infoURL: 'https://xai.games'
27120
+ },
27088
27121
  {
27089
27122
  name: 'Vision - Vpioneer Test Chain',
27090
27123
  chain: 'Vision-Vpioneer',
@@ -30563,6 +30596,24 @@ const chainArray = [
30563
30596
  explorers: [],
30564
30597
  status: 'incubating'
30565
30598
  },
30599
+ {
30600
+ name: 'Xai Testnet v2',
30601
+ chainId: 37714555429,
30602
+ shortName: 'xaitestnet',
30603
+ chain: 'XAI Testnet',
30604
+ networkId: 37714555429,
30605
+ nativeCurrency: { name: 'sXai', symbol: 'sXAI', decimals: 18 },
30606
+ rpc: [ 'https://testnet-v2.xai-chain.net/rpc' ],
30607
+ faucets: [],
30608
+ explorers: [
30609
+ {
30610
+ name: 'Blockscout',
30611
+ url: 'https://testnet-explorer-v2.xai-chain.net',
30612
+ standard: 'EIP3091'
30613
+ }
30614
+ ],
30615
+ infoURL: 'https://xai.games'
30616
+ },
30566
30617
  {
30567
30618
  name: 'Arbitrum Blueberry',
30568
30619
  title: 'Arbitrum Blueberry Testnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.394",
3
+ "version": "0.0.395",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {