eth-chainlist 0.0.393 → 0.0.394

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.394 (2024-05-04)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.393 ([961c107](https://github.com/poowf/eth-chainlist/commit/961c1074924a147756e00afb02c79863e8ae861a))
9
+ * update chain data ([ad6a84b](https://github.com/poowf/eth-chainlist/commit/ad6a84b457973a5f8e7b599bc28d078877016fca))
10
+
3
11
  ### 0.0.393 (2024-05-03)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -7744,6 +7744,25 @@ const chainArray = [
7744
7744
  chainId: 977,
7745
7745
  networkId: 977
7746
7746
  },
7747
+ {
7748
+ name: 'EthXY Testnet',
7749
+ chain: 'EthXY',
7750
+ rpc: [ 'https://rpc.testnet.ethxy.com' ],
7751
+ faucets: [],
7752
+ nativeCurrency: { name: 'Settled EthXY Token', symbol: 'SEXY', decimals: 18 },
7753
+ icon: 'sexyTestnet',
7754
+ infoURL: 'https://ethxy.com',
7755
+ shortName: 'sexyTestnet',
7756
+ chainId: 979,
7757
+ networkId: 979,
7758
+ explorers: [
7759
+ {
7760
+ name: 'EthXY Testnet Network Explorer',
7761
+ url: 'https://explorer.testnet.ethxy.com',
7762
+ standard: 'EIP3091'
7763
+ }
7764
+ ]
7765
+ },
7747
7766
  {
7748
7767
  name: 'TOP Mainnet EVM',
7749
7768
  chain: 'TOP',
@@ -8709,6 +8728,26 @@ const chainArray = [
8709
8728
  }
8710
8729
  ]
8711
8730
  },
8731
+ {
8732
+ name: 'Lisk',
8733
+ chain: 'ETH',
8734
+ rpc: [ 'https://rpc.api.lisk.com' ],
8735
+ faucets: [],
8736
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
8737
+ infoURL: 'https://lisk.com',
8738
+ shortName: 'lisk',
8739
+ chainId: 1135,
8740
+ networkId: 1135,
8741
+ slip44: 134,
8742
+ explorers: [
8743
+ {
8744
+ name: 'blockscout',
8745
+ url: 'https://blockscout.lisk.com',
8746
+ icon: 'blockscout',
8747
+ standard: 'EIP3091'
8748
+ }
8749
+ ]
8750
+ },
8712
8751
  {
8713
8752
  name: 'AmStar Testnet',
8714
8753
  chain: 'AmStar',
@@ -12199,9 +12238,12 @@ const chainArray = [
12199
12238
  ]
12200
12239
  },
12201
12240
  {
12202
- name: 'Atleta Testnet',
12241
+ name: 'Atleta Olympia',
12203
12242
  chain: 'Atleta',
12204
- rpc: [ 'wss://testnet-rpc.atleta.network:9944' ],
12243
+ rpc: [
12244
+ 'wss://testnet-rpc.atleta.network:9944',
12245
+ 'https://testnet-rpc.atleta.network:9944'
12246
+ ],
12205
12247
  faucets: [ 'https://faucet.atleta.network' ],
12206
12248
  nativeCurrency: { name: 'Atla', symbol: 'ATLA', decimals: 18 },
12207
12249
  infoURL: 'https://atleta.network',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.393",
3
+ "version": "0.0.394",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {