eth-chainlist 0.0.24 → 0.0.25

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.25 (2022-12-03)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.24 ([63339ff](https://github.com/poowf/eth-chainlist/commit/63339ff3c2cf6f3399de5e58ffa39b96639ef058))
9
+ * update chain data ([ee7fea8](https://github.com/poowf/eth-chainlist/commit/ee7fea8cf836699b50d6dc9042b49e06b3d8dee0))
10
+
3
11
  ### 0.0.24 (2022-12-01)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -5422,6 +5422,27 @@ const chainArray = [
5422
5422
  }
5423
5423
  ]
5424
5424
  },
5425
+ {
5426
+ name: 'Altcoinchain',
5427
+ chain: 'mainnet',
5428
+ rpc: [ 'http://161.35.101.221:8545', 'https://rpc0.altcoinchain.org' ],
5429
+ faucets: [],
5430
+ nativeCurrency: { name: 'Altcoin', symbol: 'ALT', decimals: 18 },
5431
+ infoURL: 'https://altcoinchain.org',
5432
+ shortName: 'alt',
5433
+ chainId: 2330,
5434
+ networkId: 12345,
5435
+ icon: 'altcoinchain',
5436
+ status: 'incubating',
5437
+ explorers: [
5438
+ {
5439
+ name: 'expedition',
5440
+ url: 'https://expedition.altcoinchain.org',
5441
+ icon: 'altcoinchain',
5442
+ standard: 'none'
5443
+ }
5444
+ ]
5445
+ },
5425
5446
  {
5426
5447
  name: 'Kortho Mainnet',
5427
5448
  chain: 'Kortho Chain',
@@ -7855,6 +7876,27 @@ const chainArray = [
7855
7876
  chainId: 32659,
7856
7877
  networkId: 32659
7857
7878
  },
7879
+ {
7880
+ name: 'Aves Mainnet',
7881
+ chain: 'AVS',
7882
+ rpc: [ 'https://rpc.avescoin.io' ],
7883
+ faucets: [],
7884
+ nativeCurrency: { name: 'Aves', symbol: 'AVS', decimals: 18 },
7885
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
7886
+ infoURL: 'https://avescoin.io',
7887
+ shortName: 'avs',
7888
+ chainId: 33333,
7889
+ networkId: 33333,
7890
+ icon: 'aves',
7891
+ explorers: [
7892
+ {
7893
+ name: 'avescan',
7894
+ url: 'https://avescan.io',
7895
+ icon: 'avescan',
7896
+ standard: 'EIP3091'
7897
+ }
7898
+ ]
7899
+ },
7858
7900
  {
7859
7901
  name: 'Q Mainnet',
7860
7902
  chain: 'Q',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {