eth-chainlist 0.0.361 → 0.0.362

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.362 (2024-03-22)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.361 ([0ac27fe](https://github.com/poowf/eth-chainlist/commit/0ac27fe61ad447d81cf91f4b9ee4d310223c8961))
9
+ * update chain data ([e17940b](https://github.com/poowf/eth-chainlist/commit/e17940bb84f3f5dbfe7d387d2070f2d8ba60112f))
10
+
3
11
  ### 0.0.361 (2024-03-19)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -2902,6 +2902,33 @@ const chainArray = [
2902
2902
  }
2903
2903
  ]
2904
2904
  },
2905
+ {
2906
+ name: 'SoraAI Testnet',
2907
+ chain: 'SETH',
2908
+ icon: 'ethereum',
2909
+ rpc: [ 'https://rpc-testnet.soraai.bot' ],
2910
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
2911
+ faucets: [],
2912
+ nativeCurrency: { name: 'SoraETH', symbol: 'SETH', decimals: 18 },
2913
+ infoURL: 'https://soraai.bot',
2914
+ shortName: 'SETH',
2915
+ chainId: 145,
2916
+ networkId: 145,
2917
+ slip44: 1,
2918
+ explorers: [
2919
+ {
2920
+ name: 'blockscout',
2921
+ url: 'https://explorer.soraai.bot',
2922
+ icon: 'blockscout',
2923
+ standard: 'EIP3091'
2924
+ }
2925
+ ],
2926
+ parent: {
2927
+ type: 'L2',
2928
+ chain: 'eip155-1',
2929
+ bridges: [ { url: 'https://bridge.soraai.bot' } ]
2930
+ }
2931
+ },
2905
2932
  {
2906
2933
  name: 'ShimmerEVM',
2907
2934
  title: 'ShimmerEVM',
@@ -6518,7 +6545,7 @@ const chainArray = [
6518
6545
  ]
6519
6546
  },
6520
6547
  {
6521
- name: 'Qitmeer',
6548
+ name: 'Qitmeer Network Mainnet',
6522
6549
  chain: 'MEER',
6523
6550
  rpc: [
6524
6551
  'https://evm-dataseed1.meerscan.io',
@@ -16015,7 +16042,11 @@ const chainArray = [
16015
16042
  {
16016
16043
  name: 'Nexa Mainnet Block',
16017
16044
  chain: 'Nexa Mainnet',
16018
- rpc: [ 'https://rpc-nodes.nexablockscan.io' ],
16045
+ rpc: [
16046
+ 'https://rpc-nodes.nexablockscan.io',
16047
+ 'wss://wss-nodes.nexablockscan.io',
16048
+ 'https://rpc-nodes-delta.nexablockscan.io'
16049
+ ],
16019
16050
  faucets: [],
16020
16051
  nativeCurrency: { name: 'Nexa Mainnet Token', symbol: 'NEXB', decimals: 18 },
16021
16052
  infoURL: 'https://www.nexablock.io',
@@ -22026,6 +22057,27 @@ const chainArray = [
22026
22057
  ],
22027
22058
  redFlags: [ 'reusedChainId' ]
22028
22059
  },
22060
+ {
22061
+ name: 'Creditcoin Testnet',
22062
+ chain: 'CTC',
22063
+ icon: 'creditcoin',
22064
+ rpc: [ 'https://rpc.cc3-testnet.creditcoin.network' ],
22065
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
22066
+ nativeCurrency: { name: 'Testnet CTC', symbol: 'tCTC', decimals: 18 },
22067
+ infoURL: 'https://creditcoin.org',
22068
+ shortName: 'ctctest',
22069
+ chainId: 102031,
22070
+ networkId: 102031,
22071
+ faucets: [],
22072
+ explorers: [
22073
+ {
22074
+ name: 'blockscout',
22075
+ url: 'https://creditcoin-testnet.blockscout.com',
22076
+ icon: 'blockscout',
22077
+ standard: 'EIP3091'
22078
+ }
22079
+ ]
22080
+ },
22029
22081
  {
22030
22082
  name: 'Crystaleum',
22031
22083
  chain: 'crystal',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.361",
3
+ "version": "0.0.362",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {