eth-chainlist 0.0.199 → 0.0.200

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.200 (2023-08-03)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.199 ([d0dd263](https://github.com/poowf/eth-chainlist/commit/d0dd263ecd7e660a255e1a9a920aafc73f4a7ba7))
9
+ * update chain data ([0946343](https://github.com/poowf/eth-chainlist/commit/0946343cfe35ef2bdb9f3efbdde0ce0bf9aac2e5))
10
+
3
11
  ### 0.0.199 (2023-08-01)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -1057,7 +1057,8 @@ const chainArray = [
1057
1057
  'https://rpc.syscoin.org',
1058
1058
  'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
1059
1059
  'https://syscoin.public-rpc.com',
1060
- 'wss://rpc.syscoin.org/wss'
1060
+ 'wss://rpc.syscoin.org/wss',
1061
+ 'https://syscoin-evm.publicnode.com'
1061
1062
  ],
1062
1063
  faucets: [ 'https://faucet.syscoin.org' ],
1063
1064
  nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
@@ -6911,10 +6912,10 @@ const chainArray = [
6911
6912
  ]
6912
6913
  },
6913
6914
  {
6914
- name: 'Kalar Chain Mainnet',
6915
+ name: 'Kalar Chain',
6915
6916
  chain: 'KLC',
6916
6917
  icon: 'kalarchain',
6917
- rpc: [ 'http://rpc-api.kalarchain.tech' ],
6918
+ rpc: [ 'https://rpc-api.kalarchain.tech' ],
6918
6919
  faucets: [],
6919
6920
  nativeCurrency: { name: 'Kalar', symbol: 'KLC', decimals: 18 },
6920
6921
  infoURL: 'https://kalarchain.tech',
@@ -10286,7 +10287,11 @@ const chainArray = [
10286
10287
  {
10287
10288
  name: 'Syscoin Tanenbaum Testnet',
10288
10289
  chain: 'SYS',
10289
- rpc: [ 'https://rpc.tanenbaum.io', 'wss://rpc.tanenbaum.io/wss' ],
10290
+ rpc: [
10291
+ 'https://rpc.tanenbaum.io',
10292
+ 'wss://rpc.tanenbaum.io/wss',
10293
+ 'https://syscoin-tanenbaum-evm.publicnode.com'
10294
+ ],
10290
10295
  faucets: [ 'https://faucet.tanenbaum.io' ],
10291
10296
  nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
10292
10297
  infoURL: 'https://syscoin.org',
@@ -17722,6 +17727,26 @@ const chainArray = [
17722
17727
  slip44: 1,
17723
17728
  explorers: []
17724
17729
  },
17730
+ {
17731
+ name: 'Manta Pacific Testnet',
17732
+ chain: 'Manta Pacific',
17733
+ rpc: [ 'https://manta-testnet.calderachain.xyz/http' ],
17734
+ faucets: [],
17735
+ nativeCurrency: { name: 'Manta', symbol: 'MANTA', decimals: 18 },
17736
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
17737
+ infoURL: 'https://manta-testnet.caldera.dev/',
17738
+ shortName: 'manta',
17739
+ chainId: 3441005,
17740
+ networkId: 3441005,
17741
+ icon: 'manta',
17742
+ explorers: [
17743
+ {
17744
+ name: 'manta-testnet Explorer',
17745
+ url: 'https://manta-testnet.calderaexplorer.xyz',
17746
+ standard: 'EIP3091'
17747
+ }
17748
+ ]
17749
+ },
17725
17750
  {
17726
17751
  name: 'AltLayer Zero Gas Network',
17727
17752
  chain: 'ETH',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.199",
3
+ "version": "0.0.200",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {