eth-chainlist 0.0.49 → 0.0.51

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.51 (2023-01-05)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.50 ([43433b9](https://github.com/poowf/eth-chainlist/commit/43433b976b5dc3bb09ff432d2081029df83d9391))
9
+ * update chain data ([e816182](https://github.com/poowf/eth-chainlist/commit/e8161823296b371d397a7f1562a075f454f1ba3c))
10
+
11
+ ### 0.0.50 (2023-01-04)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.49 ([e632413](https://github.com/poowf/eth-chainlist/commit/e632413a24283b20768b7303a298181187fcea99))
17
+ * update chain data ([c2d182b](https://github.com/poowf/eth-chainlist/commit/c2d182b4edc24a30fba110167ceba5a6db0bb186))
18
+
3
19
  ### 0.0.49 (2023-01-03)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -2451,9 +2451,7 @@ const chainArray = [
2451
2451
  name: 'SiriusNet V2',
2452
2452
  chain: 'SIN2',
2453
2453
  faucets: [],
2454
- rpc: [
2455
- 'https://u0zpw2zdzz:uf4y-ZGiQP_CJJgY6Vea2mSaeXOa1vFvfQ1PZhaDQ9M@u0iclv2dgh-u0jlczjhef-rpc.us0-aws.kaleido.io/'
2456
- ],
2454
+ rpc: [ 'https://rpc2.siriusnet.io' ],
2457
2455
  icon: 'siriusnet',
2458
2456
  nativeCurrency: { name: 'MCD', symbol: 'MCD', decimals: 18 },
2459
2457
  infoURL: 'https://siriusnet.io',
@@ -2463,7 +2461,7 @@ const chainArray = [
2463
2461
  explorers: [
2464
2462
  {
2465
2463
  name: 'siriusnet explorer',
2466
- url: 'http://rpc.siriusnet.io',
2464
+ url: 'https://scan.siriusnet.io',
2467
2465
  standard: 'none'
2468
2466
  }
2469
2467
  ]
@@ -6838,6 +6836,25 @@ const chainArray = [
6838
6836
  bridges: [ { url: 'https://bridge.nahmii.io' } ]
6839
6837
  }
6840
6838
  },
6839
+ {
6840
+ name: 'Chain Verse Mainnet',
6841
+ chain: 'CVERSE',
6842
+ icon: 'chain_verse',
6843
+ rpc: [ 'https://rpc.chainverse.info' ],
6844
+ faucets: [],
6845
+ nativeCurrency: { name: 'Oasys', symbol: 'OAS', decimals: 18 },
6846
+ infoURL: 'https://chainverse.info',
6847
+ shortName: 'cverse',
6848
+ chainId: 5555,
6849
+ networkId: 5555,
6850
+ explorers: [
6851
+ {
6852
+ name: 'Chain Verse Explorer',
6853
+ url: 'https://explorer.chainverse.info',
6854
+ standard: 'EIP3091'
6855
+ }
6856
+ ]
6857
+ },
6841
6858
  {
6842
6859
  name: 'Syscoin Tanenbaum Testnet',
6843
6860
  chain: 'SYS',
@@ -8489,6 +8506,27 @@ const chainArray = [
8489
8506
  }
8490
8507
  ]
8491
8508
  },
8509
+ {
8510
+ name: 'Hertz Network Mainnet',
8511
+ chain: 'HTZ',
8512
+ rpc: [ 'https://mainnet-rpc.hertzscan.com' ],
8513
+ faucets: [],
8514
+ nativeCurrency: { name: 'Hertz', symbol: 'HTZ', decimals: 18 },
8515
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
8516
+ infoURL: 'https://www.hertz-network.com',
8517
+ shortName: 'HTZ',
8518
+ chainId: 26600,
8519
+ networkId: 26600,
8520
+ icon: 'hertz-network',
8521
+ explorers: [
8522
+ {
8523
+ name: 'Hertz Scan',
8524
+ url: 'https://hertzscan.com',
8525
+ icon: 'hertz-network',
8526
+ standard: 'EIP3091'
8527
+ }
8528
+ ]
8529
+ },
8492
8530
  {
8493
8531
  name: 'OasisChain Mainnet',
8494
8532
  chain: 'OasisChain',
@@ -11376,6 +11414,25 @@ const chainArray = [
11376
11414
  chainId: 13371337,
11377
11415
  networkId: 13371337
11378
11416
  },
11417
+ {
11418
+ name: 'Anduschain Mainnet',
11419
+ chain: 'anduschain',
11420
+ rpc: [ 'https://rpc.anduschain.io/rpc', 'wss://rpc.anduschain.io/ws' ],
11421
+ faucets: [],
11422
+ nativeCurrency: { name: 'DAON', symbol: 'DEB', decimals: 18 },
11423
+ infoURL: 'https://anduschain.io/',
11424
+ shortName: 'anduschain-mainnet',
11425
+ chainId: 14288640,
11426
+ networkId: 14288640,
11427
+ explorers: [
11428
+ {
11429
+ name: 'anduschain explorer',
11430
+ url: 'https://explorer.anduschain.io',
11431
+ icon: 'daon',
11432
+ standard: 'none'
11433
+ }
11434
+ ]
11435
+ },
11379
11436
  {
11380
11437
  name: 'Plian Testnet Main',
11381
11438
  chain: 'Plian',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.49",
3
+ "version": "0.0.51",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {