eth-chainlist 0.0.152 → 0.0.154

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.154 (2023-05-22)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.153 ([2f89b9f](https://github.com/poowf/eth-chainlist/commit/2f89b9fe67eb922a220b2d0ac6078d878cec49aa))
9
+ * update chain data ([846d886](https://github.com/poowf/eth-chainlist/commit/846d8865fa702c2e1ad494526f1b79ad0f76366f))
10
+
11
+ ### 0.0.153 (2023-05-20)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.152 ([2ce4e58](https://github.com/poowf/eth-chainlist/commit/2ce4e58912ff136fbba78bb8593b6d4a5b2a6125))
17
+ * update chain data ([3332a0d](https://github.com/poowf/eth-chainlist/commit/3332a0dfe564b47442168afe05ac376f46fcf3a5))
18
+
3
19
  ### 0.0.152 (2023-05-19)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -454,17 +454,17 @@ const chainArray = [
454
454
  {
455
455
  name: 'ShibaChain',
456
456
  chain: 'SHIB',
457
- rpc: [ 'https://rpc.shibachain.net' ],
457
+ rpc: [ 'https://rpc.shibchain.org' ],
458
458
  faucets: [],
459
459
  nativeCurrency: { name: 'SHIBA INU COIN', symbol: 'SHIB', decimals: 18 },
460
- infoURL: 'https://www.shibachain.net',
460
+ infoURL: 'https://shibchain.org',
461
461
  shortName: 'shib',
462
462
  chainId: 27,
463
463
  networkId: 27,
464
464
  explorers: [
465
465
  {
466
466
  name: 'Shiba Explorer',
467
- url: 'https://exp.shibachain.net',
467
+ url: 'https://exp.shibchain.org',
468
468
  standard: 'none'
469
469
  }
470
470
  ]
@@ -681,7 +681,14 @@ const chainArray = [
681
681
  infoURL: 'https://telos.net',
682
682
  shortName: 'TelosEVMTestnet',
683
683
  chainId: 41,
684
- networkId: 41
684
+ networkId: 41,
685
+ explorers: [
686
+ {
687
+ name: 'teloscan',
688
+ url: 'https://testnet.teloscan.io',
689
+ standard: 'EIP3091'
690
+ }
691
+ ]
685
692
  },
686
693
  {
687
694
  name: 'Kovan',
@@ -3448,6 +3455,27 @@ const chainArray = [
3448
3455
  }
3449
3456
  ]
3450
3457
  },
3458
+ {
3459
+ name: 'Neurochain Testnet',
3460
+ chain: 'NCN',
3461
+ rpc: [ 'https://nc-rpc-test1.neurochain.io' ],
3462
+ faucets: [],
3463
+ nativeCurrency: { name: 'Neurochain', symbol: 'tNCN', decimals: 18 },
3464
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
3465
+ infoURL: 'https://www.neurochain.ai',
3466
+ shortName: 'ncnt',
3467
+ chainId: 303,
3468
+ networkId: 303,
3469
+ icon: 'neurochain',
3470
+ explorers: [
3471
+ {
3472
+ name: 'neuroscan',
3473
+ url: 'https://testnet.ncnscan.com',
3474
+ icon: 'neurochain',
3475
+ standard: 'EIP3091'
3476
+ }
3477
+ ]
3478
+ },
3451
3479
  {
3452
3480
  name: 'Omax Mainnet',
3453
3481
  chain: 'OMAX Chain',
@@ -3468,6 +3496,30 @@ const chainArray = [
3468
3496
  }
3469
3497
  ]
3470
3498
  },
3499
+ {
3500
+ name: 'Neurochain Mainnet',
3501
+ chain: 'NCN',
3502
+ rpc: [
3503
+ 'https://nc-rpc-prd1.neurochain.io',
3504
+ 'https://nc-rpc-prd2.neurochain.io'
3505
+ ],
3506
+ faucets: [],
3507
+ nativeCurrency: { name: 'Neurochain', symbol: 'NCN', decimals: 18 },
3508
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
3509
+ infoURL: 'https://www.neurochain.ai',
3510
+ shortName: 'ncn',
3511
+ chainId: 313,
3512
+ networkId: 313,
3513
+ icon: 'neurochain',
3514
+ explorers: [
3515
+ {
3516
+ name: 'neuroscan',
3517
+ url: 'https://ncnscan.com',
3518
+ icon: 'neurochain',
3519
+ standard: 'EIP3091'
3520
+ }
3521
+ ]
3522
+ },
3471
3523
  {
3472
3524
  name: 'Filecoin - Mainnet',
3473
3525
  chain: 'FIL',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.152",
3
+ "version": "0.0.154",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {