eth-chainlist 0.0.193 → 0.0.195

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.195 (2023-07-26)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.194 ([28fe53e](https://github.com/poowf/eth-chainlist/commit/28fe53eef454d23f20c71e659f3391c2784f9daf))
9
+ * update chain data ([7c686fc](https://github.com/poowf/eth-chainlist/commit/7c686fc9e6a939ce96e8840d7c9846bd1066a375))
10
+
11
+ ### 0.0.194 (2023-07-25)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.193 ([e595166](https://github.com/poowf/eth-chainlist/commit/e595166c684cb7c6e146d3834ca71f2dd6ef9c73))
17
+ * update chain data ([07deb8f](https://github.com/poowf/eth-chainlist/commit/07deb8fdcdf6987a44d2a24fbb992ce74a3e1f8d))
18
+
3
19
  ### 0.0.193 (2023-07-23)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -1361,7 +1361,7 @@ const chainArray = [
1361
1361
  {
1362
1362
  name: 'Decimal Smart Chain Mainnet',
1363
1363
  chain: 'DSC',
1364
- rpc: [ 'https://node.decimalchain.com/web3' ],
1364
+ rpc: [ 'https://node.decimalchain.com/web3/' ],
1365
1365
  faucets: [],
1366
1366
  nativeCurrency: { name: 'Decimal', symbol: 'DEL', decimals: 18 },
1367
1367
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
@@ -2941,6 +2941,24 @@ const chainArray = [
2941
2941
  chainId: 208,
2942
2942
  networkId: 208
2943
2943
  },
2944
+ {
2945
+ name: 'Bitnet',
2946
+ chain: 'BTN',
2947
+ rpc: [ 'https://rpc.bitnet.money' ],
2948
+ faucets: [ 'https://bitnet.money/forum/showthread.php?tid=2' ],
2949
+ nativeCurrency: { name: 'Bitnet', symbol: 'BTN', decimals: 18 },
2950
+ infoURL: 'https://bitnet.money',
2951
+ shortName: 'BTN',
2952
+ chainId: 210,
2953
+ networkId: 210,
2954
+ explorers: [
2955
+ {
2956
+ name: 'Bitnet Explorer',
2957
+ url: 'https://btnscan.com',
2958
+ standard: 'EIP3091'
2959
+ }
2960
+ ]
2961
+ },
2944
2962
  {
2945
2963
  name: 'Freight Trust Network',
2946
2964
  chain: 'EDI',
@@ -13650,6 +13668,26 @@ const chainArray = [
13650
13668
  }
13651
13669
  ]
13652
13670
  },
13671
+ {
13672
+ name: 'Kinto Testnet',
13673
+ title: 'Kinto Testnet',
13674
+ chain: 'ETH',
13675
+ rpc: [ 'http://35.215.120.180:8545' ],
13676
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
13677
+ faucets: [],
13678
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
13679
+ infoURL: 'https://ethereum.org',
13680
+ shortName: 'keth',
13681
+ chainId: 42888,
13682
+ networkId: 42888,
13683
+ explorers: [
13684
+ {
13685
+ name: 'kintoscan',
13686
+ url: 'http://35.215.120.180:4000',
13687
+ standard: 'EIP3091'
13688
+ }
13689
+ ]
13690
+ },
13653
13691
  {
13654
13692
  name: 'Athereum',
13655
13693
  chain: 'ATH',
@@ -16021,7 +16059,7 @@ const chainArray = [
16021
16059
  {
16022
16060
  name: 'Decimal Smart Chain Testnet',
16023
16061
  chain: 'tDSC',
16024
- rpc: [ 'https://testnet-val.decimalchain.com/web3' ],
16062
+ rpc: [ 'https://testnet-val.decimalchain.com/web3/' ],
16025
16063
  faucets: [],
16026
16064
  nativeCurrency: { name: 'Decimal', symbol: 'tDEL', decimals: 18 },
16027
16065
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
@@ -17614,7 +17652,10 @@ const chainArray = [
17614
17652
  rpc: [
17615
17653
  'https://rpc.sepolia.org',
17616
17654
  'https://rpc2.sepolia.org',
17617
- 'https://rpc-sepolia.rockx.com'
17655
+ 'https://rpc-sepolia.rockx.com',
17656
+ 'https://rpc.sepolia.ethpandaops.io',
17657
+ 'https://sepolia.infura.io/v3/${INFURA_API_KEY}',
17658
+ 'wss://sepolia.infura.io/v3/${INFURA_API_KEY}'
17618
17659
  ],
17619
17660
  faucets: [
17620
17661
  'http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.193",
3
+ "version": "0.0.195",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {