eth-chainlist 0.0.345 → 0.0.346

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.346 (2024-02-24)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.345 ([4ac6be2](https://github.com/poowf/eth-chainlist/commit/4ac6be29c36f6e27f7497055fe831bda0bf0a317))
9
+ * update chain data ([1b14dfe](https://github.com/poowf/eth-chainlist/commit/1b14dfeaee80fe813c198f159c9082b64baf8682))
10
+
3
11
  ### 0.0.345 (2024-02-22)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -3994,7 +3994,7 @@ const chainArray = [
3994
3994
  ],
3995
3995
  faucets: [],
3996
3996
  nativeCurrency: { name: 'LaCoin', symbol: 'LAC', decimals: 18 },
3997
- features: [ { name: 'EIP155' } ],
3997
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
3998
3998
  infoURL: '',
3999
3999
  shortName: 'lachain',
4000
4000
  chainId: 274,
@@ -8805,6 +8805,27 @@ const chainArray = [
8805
8805
  }
8806
8806
  ]
8807
8807
  },
8808
+ {
8809
+ name: 'MetaChain Istanbul',
8810
+ title: 'MetaChain Testnet Istanbul',
8811
+ chain: 'MTC',
8812
+ icon: 'metachain',
8813
+ rpc: [ 'https://istanbul-rpc.metachain.dev' ],
8814
+ faucets: [ 'https://istanbul-faucet.metachain.dev' ],
8815
+ nativeCurrency: { name: 'Metatime Coin', symbol: 'MTC', decimals: 18 },
8816
+ infoURL: 'https://metatime.com/en',
8817
+ shortName: 'metatimeistanbul',
8818
+ chainId: 1453,
8819
+ networkId: 1453,
8820
+ slip44: 1453,
8821
+ explorers: [
8822
+ {
8823
+ name: 'MetaExplorer',
8824
+ url: 'https://istanbul-explorer.metachain.dev',
8825
+ standard: 'EIP3091'
8826
+ }
8827
+ ]
8828
+ },
8808
8829
  {
8809
8830
  name: 'Ctex Scan Blockchain',
8810
8831
  chain: 'Ctex Scan Blockchain',
@@ -17865,6 +17886,26 @@ const chainArray = [
17865
17886
  }
17866
17887
  ]
17867
17888
  },
17889
+ {
17890
+ name: 'AlveyChain Testnet',
17891
+ chain: 'tALV',
17892
+ rpc: [ 'https://testnet-rpc.alvey.io' ],
17893
+ faucets: [ 'https://faucet.alveytestnet.com' ],
17894
+ nativeCurrency: { name: 'AlveyCoin Testnet', symbol: 'tALV', decimals: 18 },
17895
+ infoURL: 'https://alveychain.com/',
17896
+ shortName: 'talv',
17897
+ chainId: 25839,
17898
+ networkId: 25839,
17899
+ icon: 'alveychain',
17900
+ explorers: [
17901
+ {
17902
+ name: 'AlveyScan Testnet',
17903
+ url: 'https://alveytestnet.com',
17904
+ icon: 'alveychain',
17905
+ standard: 'EIP3091'
17906
+ }
17907
+ ]
17908
+ },
17868
17909
  {
17869
17910
  name: 'Hammer Chain Mainnet',
17870
17911
  chain: 'HammerChain',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.345",
3
+ "version": "0.0.346",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {