eth-chainlist 0.0.311 → 0.0.312

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.312 (2023-12-25)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.311 ([0cc94dd](https://github.com/poowf/eth-chainlist/commit/0cc94dd18d98dfe6771642235f21f5af8e659438))
9
+ * update chain data ([2b5996e](https://github.com/poowf/eth-chainlist/commit/2b5996e8f6822bef3de831fd20f6a9f2de9c2d01))
10
+
3
11
  ### 0.0.311 (2023-12-24)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -8829,10 +8829,7 @@ const chainArray = [
8829
8829
  name: 'Lightlink Phoenix Mainnet',
8830
8830
  chain: 'Lightlink Phoenix Mainnet',
8831
8831
  icon: 'lightlink',
8832
- rpc: [
8833
- 'https://replicator-01.phoenix.lightlink.io/rpc/v1',
8834
- 'https://replicator-02.phoenix.lightlink.io/rpc/v1'
8835
- ],
8832
+ rpc: [ 'https://replicator.phoenix.lightlink.io/rpc/v1' ],
8836
8833
  features: [ { name: 'EIP155' } ],
8837
8834
  faucets: [],
8838
8835
  nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
@@ -8853,12 +8850,9 @@ const chainArray = [
8853
8850
  name: 'Lightlink Pegasus Testnet',
8854
8851
  chain: 'Lightlink Pegasus Testnet',
8855
8852
  icon: 'lightlink',
8856
- rpc: [
8857
- 'https://replicator-01.pegasus.lightlink.io/rpc/v1',
8858
- 'https://replicator-02.pegasus.lightlink.io/rpc/v1'
8859
- ],
8853
+ rpc: [ 'https://replicator.pegasus.lightlink.io/rpc/v1' ],
8860
8854
  features: [ { name: 'EIP155' } ],
8861
- faucets: [ 'https://pegasus-faucet-react.vercel.app' ],
8855
+ faucets: [ 'https://faucet.pegasus.lightlink.io/' ],
8862
8856
  nativeCurrency: { name: 'Ethereum', symbol: 'ETH', decimals: 18 },
8863
8857
  infoURL: 'https://lightlink.io',
8864
8858
  shortName: 'lightlink_pegasus',
@@ -14617,6 +14611,7 @@ const chainArray = [
14617
14611
  'https://rpc-msc.mindchain.info/',
14618
14612
  'https://seednode.mindchain.info',
14619
14613
  'https://archive.mindchain.info/',
14614
+ 'https://mind-smart-chain.rpc.thirdweb.com',
14620
14615
  'wss://archive.mindchain.info/ws',
14621
14616
  'wss://seednode.mindchain.info/ws'
14622
14617
  ],
@@ -20244,6 +20239,27 @@ const chainArray = [
20244
20239
  }
20245
20240
  ]
20246
20241
  },
20242
+ {
20243
+ name: 'CONET Holesky',
20244
+ chain: 'CONET Holesky',
20245
+ rpc: [ 'https://holeskyrpc1.conet.network' ],
20246
+ faucets: [],
20247
+ nativeCurrency: { name: 'CONET Holesky', symbol: 'CONET', decimals: 18 },
20248
+ features: [ { name: 'EIP155' } ],
20249
+ infoURL: 'https://conet.network',
20250
+ shortName: 'conet-holesky',
20251
+ chainId: 224433,
20252
+ networkId: 224433,
20253
+ slip44: 2147708081,
20254
+ icon: 'conet',
20255
+ explorers: [
20256
+ {
20257
+ name: 'CONET Holesky Scan',
20258
+ url: 'https://scan.conet.network',
20259
+ standard: 'EIP3091'
20260
+ }
20261
+ ]
20262
+ },
20247
20263
  {
20248
20264
  name: 'HashKey Chain Testnet',
20249
20265
  chain: 'HashKey',
@@ -20933,6 +20949,27 @@ const chainArray = [
20933
20949
  networkId: 471100,
20934
20950
  slip44: 1
20935
20951
  },
20952
+ {
20953
+ name: 'Ultra Pro Mainnet',
20954
+ chain: 'ultrapro',
20955
+ icon: 'ultrapro',
20956
+ rpc: [ 'https://mainnet-rpc.ultraproscan.io' ],
20957
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
20958
+ faucets: [],
20959
+ nativeCurrency: { name: 'Ultra Pro', symbol: 'UPRO', decimals: 18 },
20960
+ infoURL: 'https://ultrapro.info',
20961
+ shortName: 'ultrapro',
20962
+ chainId: 473861,
20963
+ networkId: 473861,
20964
+ explorers: [
20965
+ {
20966
+ name: 'ultraproscan',
20967
+ url: 'https://ultraproscan.io',
20968
+ icon: 'ultrapro',
20969
+ standard: 'EIP3091'
20970
+ }
20971
+ ]
20972
+ },
20936
20973
  {
20937
20974
  name: 'OpenChain Mainnet',
20938
20975
  chain: 'OpenChain',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.311",
3
+ "version": "0.0.312",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {