eth-chainlist 0.0.77 → 0.0.78

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.78 (2023-02-16)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.77 ([f9c1f1d](https://github.com/poowf/eth-chainlist/commit/f9c1f1db644f6c72cbacd697f40ad360d7e7d90c))
9
+ * update chain data ([0a0a65e](https://github.com/poowf/eth-chainlist/commit/0a0a65e73672a5293642334de1c18d27e0159dac))
10
+
3
11
  ### 0.0.77 (2023-02-15)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -2033,6 +2033,34 @@ const chainArray = [
2033
2033
  }
2034
2034
  ]
2035
2035
  },
2036
+ {
2037
+ name: 'Realchain Mainnet',
2038
+ chain: 'REAL',
2039
+ rpc: [
2040
+ 'https://rcl-dataseed1.rclsidechain.com',
2041
+ 'https://rcl-dataseed2.rclsidechain.com',
2042
+ 'https://rcl-dataseed3.rclsidechain.com',
2043
+ 'https://rcl-dataseed4.rclsidechain.com',
2044
+ 'wss://rcl-dataseed1.rclsidechain.com/v1/',
2045
+ 'wss://rcl-dataseed2.rclsidechain.com/v1/',
2046
+ 'wss://rcl-dataseed3.rclsidechain.com/v1/',
2047
+ 'wss://rcl-dataseed4.rclsidechain.com/v1/'
2048
+ ],
2049
+ faucets: [ 'https://faucet.rclsidechain.com' ],
2050
+ nativeCurrency: { name: 'Realchain', symbol: 'REAL', decimals: 18 },
2051
+ infoURL: 'https://www.rclsidechain.com/',
2052
+ shortName: 'REAL',
2053
+ chainId: 121,
2054
+ networkId: 121,
2055
+ slip44: 714,
2056
+ explorers: [
2057
+ {
2058
+ name: 'realscan',
2059
+ url: 'https://rclscan.com',
2060
+ standard: 'EIP3091'
2061
+ }
2062
+ ]
2063
+ },
2036
2064
  {
2037
2065
  name: 'Fuse Mainnet',
2038
2066
  chain: 'FUSE',
@@ -5411,7 +5439,7 @@ const chainArray = [
5411
5439
  ]
5412
5440
  },
5413
5441
  {
5414
- name: 'Polygon zkEVM Testnet',
5442
+ name: 'Polygon zkEVM Testnet old',
5415
5443
  title: 'Polygon zkEVM Testnet',
5416
5444
  chain: 'Polygon',
5417
5445
  rpc: [],
@@ -5427,6 +5455,26 @@ const chainArray = [
5427
5455
  url: 'https://explorer.public.zkevm-test.net',
5428
5456
  standard: 'EIP3091'
5429
5457
  }
5458
+ ],
5459
+ status: 'deprecated'
5460
+ },
5461
+ {
5462
+ name: 'Polygon zkEVM Testnet',
5463
+ title: 'Polygon zkEVM Testnet',
5464
+ chain: 'Polygon',
5465
+ rpc: [ 'https://rpc.public.zkevm-test.net' ],
5466
+ faucets: [],
5467
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
5468
+ infoURL: 'https://polygon.technology/solutions/polygon-zkevm/',
5469
+ shortName: 'testnet-zkEVM-mango',
5470
+ chainId: 1422,
5471
+ networkId: 1422,
5472
+ explorers: [
5473
+ {
5474
+ name: 'Polygon zkEVM explorer',
5475
+ url: 'https://explorer.public.zkevm-test.net',
5476
+ standard: 'EIP3091'
5477
+ }
5430
5478
  ]
5431
5479
  },
5432
5480
  {
@@ -7908,7 +7956,11 @@ const chainArray = [
7908
7956
  {
7909
7957
  name: 'Canto',
7910
7958
  chain: 'Canto',
7911
- rpc: [ 'https://canto.slingshot.finance' ],
7959
+ rpc: [
7960
+ 'https://canto.slingshot.finance',
7961
+ 'https://canto.neobase.one',
7962
+ 'https://mainnode.plexnode.org:8545'
7963
+ ],
7912
7964
  faucets: [],
7913
7965
  nativeCurrency: { name: 'Canto', symbol: 'CANTO', decimals: 18 },
7914
7966
  infoURL: 'https://canto.io',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.77",
3
+ "version": "0.0.78",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {