eth-chainlist 0.0.86 → 0.0.88

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,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.88 (2023-02-27)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.87 ([3c328bb](https://github.com/poowf/eth-chainlist/commit/3c328bb787714a25202d0e2bc334ee3cca3f1b74))
9
+ * update chain data ([171feaa](https://github.com/poowf/eth-chainlist/commit/171feaac5fcc34408648cef4c6e01d85164fd90a))
10
+
11
+ ### 0.0.87 (2023-02-25)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.86 ([49bb1fd](https://github.com/poowf/eth-chainlist/commit/49bb1fd852dfb8de664bfa68db85b39656a4a65c))
17
+ * update chain data ([9d81aeb](https://github.com/poowf/eth-chainlist/commit/9d81aeb803867313dd9678c92d44625998f702ca))
18
+
3
19
  ### 0.0.86 (2023-02-24)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -5787,6 +5787,28 @@ const chainArray = [
5787
5787
  chainId: 1657,
5788
5788
  networkId: 1657
5789
5789
  },
5790
+ {
5791
+ name: 'Horizen Yuma Testnet',
5792
+ shortName: 'Yuma',
5793
+ chain: 'Yuma',
5794
+ icon: 'eon',
5795
+ rpc: [ 'https://yuma-testnet.horizenlabs.io/ethv1' ],
5796
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
5797
+ faucets: [ 'https://yuma-testnet-faucet.horizen.io' ],
5798
+ nativeCurrency: { name: 'Testnet Zen', symbol: 'tZEN', decimals: 18 },
5799
+ infoURL: 'https://horizen.io/',
5800
+ chainId: 1662,
5801
+ networkId: 1662,
5802
+ slip44: 121,
5803
+ explorers: [
5804
+ {
5805
+ name: 'Yuma Testnet Block Explorer',
5806
+ url: 'https://yuma-explorer.horizen.io',
5807
+ icon: 'eon',
5808
+ standard: 'EIP3091'
5809
+ }
5810
+ ]
5811
+ },
5790
5812
  {
5791
5813
  name: 'LUDAN Mainnet',
5792
5814
  chain: 'LUDAN',
@@ -6160,7 +6182,10 @@ const chainArray = [
6160
6182
  {
6161
6183
  name: 'edeXa Testnet',
6162
6184
  chain: 'edeXa TestNetwork',
6163
- rpc: [ 'https://testnet.edexa.com/rpc' ],
6185
+ rpc: [
6186
+ 'https://testnet.edexa.com/rpc',
6187
+ 'https://io-dataseed1.testnet.edexa.io-market.com/rpc'
6188
+ ],
6164
6189
  faucets: [ 'https://faucet.edexa.com/' ],
6165
6190
  nativeCurrency: { name: 'EDEXA', symbol: 'EDX', decimals: 18 },
6166
6191
  infoURL: 'https://edexa.com/',
@@ -6770,6 +6795,19 @@ const chainArray = [
6770
6795
  }
6771
6796
  ]
6772
6797
  },
6798
+ {
6799
+ name: 'Arevia',
6800
+ chain: 'Arevia',
6801
+ rpc: [],
6802
+ faucets: [],
6803
+ nativeCurrency: { name: 'Arev', symbol: 'ARÉV', decimals: 18 },
6804
+ infoURL: '',
6805
+ shortName: 'arevia',
6806
+ chainId: 2309,
6807
+ networkId: 2309,
6808
+ explorers: [],
6809
+ status: 'incubating'
6810
+ },
6773
6811
  {
6774
6812
  name: 'Altcoinchain',
6775
6813
  chain: 'mainnet',
@@ -8519,6 +8557,18 @@ const chainArray = [
8519
8557
  chainId: 8285,
8520
8558
  networkId: 8285
8521
8559
  },
8560
+ {
8561
+ name: 'Base',
8562
+ chain: 'ETH',
8563
+ rpc: [],
8564
+ faucets: [],
8565
+ nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
8566
+ infoURL: 'https://base.org',
8567
+ shortName: 'base',
8568
+ chainId: 8453,
8569
+ networkId: 8453,
8570
+ status: 'incubating'
8571
+ },
8522
8572
  {
8523
8573
  name: 'Toki Network',
8524
8574
  chain: 'TOKI',
@@ -11081,6 +11131,7 @@ const chainArray = [
11081
11131
  {
11082
11132
  name: 'SiriusNet',
11083
11133
  chain: 'SIN',
11134
+ status: 'deprecated',
11084
11135
  rpc: [
11085
11136
  'https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/'
11086
11137
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.86",
3
+ "version": "0.0.88",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {