eth-chainlist 0.0.17 → 0.0.19

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.19 (2022-11-26)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.18 ([66d839d](https://github.com/poowf/eth-chainlist/commit/66d839da7b53f9c695503467615a32c3e5be5392))
9
+ * update chain data ([a46b599](https://github.com/poowf/eth-chainlist/commit/a46b5994de6d228756ca4de37d9fb06e11f54f2e))
10
+
11
+ ### 0.0.18 (2022-11-25)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.17 ([1a86e1a](https://github.com/poowf/eth-chainlist/commit/1a86e1a5d0b57afc47721a84ca551c6aadfcaaac))
17
+ * update chain data ([8195a04](https://github.com/poowf/eth-chainlist/commit/8195a04279971ce286e52b44802e1137c962926c))
18
+
3
19
  ### 0.0.17 (2022-11-24)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -1682,12 +1682,7 @@ const chainArray = [
1682
1682
  {
1683
1683
  name: 'POA Network Core',
1684
1684
  chain: 'POA',
1685
- rpc: [
1686
- 'https://core.poanetwork.dev',
1687
- 'http://core.poanetwork.dev:8545',
1688
- 'https://core.poa.network',
1689
- 'ws://core.poanetwork.dev:8546'
1690
- ],
1685
+ rpc: [ 'https://core.poa.network' ],
1691
1686
  faucets: [],
1692
1687
  nativeCurrency: { name: 'POA Network Core Ether', symbol: 'POA', decimals: 18 },
1693
1688
  infoURL: 'https://poa.network',
@@ -6319,7 +6314,7 @@ const chainArray = [
6319
6314
  parent: {
6320
6315
  type: 'L2',
6321
6316
  chain: 'eip155-250',
6322
- bridges: [ { url: 'https://beta-bridge.lif3.com/' } ]
6317
+ bridges: [ { url: 'https://lif3.com/bridge' } ]
6323
6318
  }
6324
6319
  },
6325
6320
  {
@@ -7973,6 +7968,7 @@ const chainArray = [
7973
7968
  name: 'Avalanche C-Chain',
7974
7969
  chain: 'AVAX',
7975
7970
  rpc: [ 'https://api.avax.network/ext/bc/C/rpc' ],
7971
+ features: [ { name: 'EIP1559' } ],
7976
7972
  faucets: [ 'https://free-online-app.com/faucet-for-eth-evm-chains/' ],
7977
7973
  nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
7978
7974
  infoURL: 'https://www.avax.network/',
@@ -8878,7 +8874,7 @@ const chainArray = [
8878
8874
  ]
8879
8875
  },
8880
8876
  {
8881
- name: 'Chiado 1 Testnet',
8877
+ name: 'Deprecated Chiado Testnet',
8882
8878
  chain: 'CHI1',
8883
8879
  icon: 'gnosis',
8884
8880
  rpc: [ 'https://rpc-chiado.gnosistestnet.com' ],
@@ -10278,6 +10274,25 @@ const chainArray = [
10278
10274
  chainId: 20181205,
10279
10275
  networkId: 20181205
10280
10276
  },
10277
+ {
10278
+ name: 'Excelon Mainnet',
10279
+ chain: 'XLON',
10280
+ icon: 'xlon',
10281
+ rpc: [ 'http://wallet2.xlon.org:8545' ],
10282
+ faucets: [],
10283
+ nativeCurrency: { name: 'Excelon', symbol: 'xlon', decimals: 18 },
10284
+ infoURL: 'https://xlon.org',
10285
+ shortName: 'xlon',
10286
+ chainId: 22052002,
10287
+ networkId: 22052002,
10288
+ explorers: [
10289
+ {
10290
+ name: 'Excelon explorer',
10291
+ url: 'https://explorer.excelon.io',
10292
+ standard: 'EIP3091'
10293
+ }
10294
+ ]
10295
+ },
10281
10296
  {
10282
10297
  name: 'Excoincial Chain Volta-Testnet',
10283
10298
  chain: 'TEXL',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.17",
3
+ "version": "0.0.19",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {