eth-chainlist 0.0.450 → 0.0.451

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.451 (2024-07-26)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.450 ([f9ea6a6](https://github.com/poowf/eth-chainlist/commit/f9ea6a62ceda1b8ff07e938c47c8a6323f405ba1))
9
+ * update chain data ([eb0c6ba](https://github.com/poowf/eth-chainlist/commit/eb0c6baf8e549f665fe647d21d29cf0c2f065267))
10
+
3
11
  ### 0.0.450 (2024-07-25)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -23797,7 +23797,7 @@ const chainArray = [
23797
23797
  {
23798
23798
  name: 'Movement EVM Testnet',
23799
23799
  chain: 'MOVE',
23800
- rpc: [],
23800
+ rpc: [ 'https://mevm.testnet.imola.movementlabs.xyz' ],
23801
23801
  faucets: [],
23802
23802
  nativeCurrency: { name: 'Move', symbol: 'MOVE', decimals: 18 },
23803
23803
  infoURL: 'https://movementlabs.xyz',
@@ -23808,7 +23808,7 @@ const chainArray = [
23808
23808
  explorers: [
23809
23809
  {
23810
23810
  name: 'mevm explorer',
23811
- url: 'https://explorer.movementlabs.xyz',
23811
+ url: 'https://explorer.testnet.imola.movementlabs.xyz',
23812
23812
  standard: 'none'
23813
23813
  }
23814
23814
  ],
@@ -25000,6 +25000,26 @@ const chainArray = [
25000
25000
  }
25001
25001
  ]
25002
25002
  },
25003
+ {
25004
+ name: 'Neo X Mainnet',
25005
+ chain: 'Neo X',
25006
+ rpc: [ 'https://mainnet-1.rpc.banelabs.org' ],
25007
+ faucets: [],
25008
+ nativeCurrency: { name: 'Gas', symbol: 'GAS', decimals: 18 },
25009
+ infoURL: 'https://neo.org/',
25010
+ shortName: 'neox-mainnet',
25011
+ chainId: 47763,
25012
+ networkId: 47763,
25013
+ icon: 'neox',
25014
+ explorers: [
25015
+ {
25016
+ name: 'Neo X - Explorer',
25017
+ url: 'https://xexplorer.neo.org',
25018
+ standard: 'EIP3091'
25019
+ }
25020
+ ],
25021
+ status: 'active'
25022
+ },
25003
25023
  {
25004
25024
  name: 'REI Network',
25005
25025
  chain: 'REI',
@@ -28570,7 +28590,12 @@ const chainArray = [
28570
28590
  name: 're.al',
28571
28591
  title: 're.al Real-World Assets network',
28572
28592
  chain: 're.al',
28573
- rpc: [ 'https://real.drpc.org', 'wss://real.drpc.org' ],
28593
+ rpc: [
28594
+ 'https://tangible-real.gateway.tenderly.co',
28595
+ 'wss://tangible-real.gateway.tenderly.co',
28596
+ 'https://real.drpc.org',
28597
+ 'wss://real.drpc.org'
28598
+ ],
28574
28599
  nativeCurrency: { name: 're.al Ether', symbol: 'reETH', decimals: 18 },
28575
28600
  infoURL: 'https://re.al',
28576
28601
  faucets: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.450",
3
+ "version": "0.0.451",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {