eth-chainlist 0.0.20 → 0.0.21

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.21 (2022-11-28)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.20 ([4661ad4](https://github.com/poowf/eth-chainlist/commit/4661ad4c6adcc16f7f05a6315824e22aa3d45d07))
9
+ * update chain data ([5b151d8](https://github.com/poowf/eth-chainlist/commit/5b151d87d486609b4d687aee7996148b0e0c9eb8))
10
+
3
11
  ### 0.0.20 (2022-11-27)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -3411,10 +3411,7 @@ const chainArray = [
3411
3411
  {
3412
3412
  name: 'OpenChain Testnet',
3413
3413
  chain: 'OpenChain Testnet',
3414
- rpc: [
3415
- 'http://mainnet.openchain.info:8545',
3416
- 'https://mainnet1.openchain.info'
3417
- ],
3414
+ rpc: [],
3418
3415
  faucets: [ 'https://faucet.openchain.info/' ],
3419
3416
  nativeCurrency: { name: 'Openchain Testnet', symbol: 'TOPC', decimals: 18 },
3420
3417
  infoURL: 'https://testnet.openchain.info/',
@@ -3760,7 +3757,7 @@ const chainArray = [
3760
3757
  name: 'TOP Mainnet EVM',
3761
3758
  chain: 'TOP',
3762
3759
  icon: 'top',
3763
- rpc: [ 'ethapi.topnetwork.org' ],
3760
+ rpc: [ 'https://ethapi.topnetwork.org' ],
3764
3761
  faucets: [],
3765
3762
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
3766
3763
  infoURL: 'https://www.topnetwork.org/',
@@ -3802,7 +3799,7 @@ const chainArray = [
3802
3799
  name: 'TOP Mainnet',
3803
3800
  chain: 'TOP',
3804
3801
  icon: 'top',
3805
- rpc: [ 'topapi.topnetwork.org' ],
3802
+ rpc: [],
3806
3803
  faucets: [],
3807
3804
  nativeCurrency: { name: 'TOP', symbol: 'TOP', decimals: 6 },
3808
3805
  infoURL: 'https://www.topnetwork.org/',
@@ -6542,7 +6539,7 @@ const chainArray = [
6542
6539
  {
6543
6540
  name: 'Shardeum Liberty 2.0',
6544
6541
  chain: 'Shardeum',
6545
- rpc: [ 'https://liberty20.shardeum.org/' ],
6542
+ rpc: [],
6546
6543
  faucets: [ 'https://faucet.liberty20.shardeum.org' ],
6547
6544
  nativeCurrency: { name: 'Shardeum SHM', symbol: 'SHM', decimals: 18 },
6548
6545
  infoURL: 'https://docs.shardeum.org/',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {