eth-chainlist 0.0.56 → 0.0.57

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.57 (2023-01-16)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.56 ([2f84035](https://github.com/poowf/eth-chainlist/commit/2f8403550196bfdaccbf7259dcaa2d83d50c4324))
9
+ * update chain data ([e52710b](https://github.com/poowf/eth-chainlist/commit/e52710b9f2769a4ce7a805e485536fd39070321c))
10
+
3
11
  ### 0.0.56 (2023-01-15)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -5393,6 +5393,19 @@ const chainArray = [
5393
5393
  faucets: [],
5394
5394
  infoURL: ''
5395
5395
  },
5396
+ {
5397
+ name: 'Atelier',
5398
+ title: 'Atelier Test Network',
5399
+ chain: 'ALTR',
5400
+ rpc: [ 'https://1971.network/atlr', 'wss://1971.network/atlr' ],
5401
+ faucets: [],
5402
+ nativeCurrency: { name: 'ATLR', symbol: 'ATLR', decimals: 18 },
5403
+ infoURL: 'https://1971.network/',
5404
+ shortName: 'atlr',
5405
+ chainId: 1971,
5406
+ networkId: 1971,
5407
+ icon: 'atlr'
5408
+ },
5396
5409
  {
5397
5410
  name: 'ONUS Chain Mainnet',
5398
5411
  title: 'ONUS Chain Mainnet',
@@ -8913,13 +8926,27 @@ const chainArray = [
8913
8926
  {
8914
8927
  name: 'Fusion Mainnet',
8915
8928
  chain: 'FSN',
8916
- rpc: [ 'https://mainnet.anyswap.exchange', 'https://fsn.dev/api' ],
8929
+ icon: 'fusion',
8930
+ rpc: [
8931
+ 'https://mainnet.fusionnetwork.io',
8932
+ 'wss://mainnet.fusionnetwork.io'
8933
+ ],
8934
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
8917
8935
  faucets: [],
8918
8936
  nativeCurrency: { name: 'Fusion', symbol: 'FSN', decimals: 18 },
8919
- infoURL: 'https://www.fusion.org/',
8937
+ infoURL: 'https://fusion.org',
8920
8938
  shortName: 'fsn',
8921
8939
  chainId: 32659,
8922
- networkId: 32659
8940
+ networkId: 32659,
8941
+ slip44: 288,
8942
+ explorers: [
8943
+ {
8944
+ name: 'fsnscan',
8945
+ url: 'https://fsnscan.com',
8946
+ icon: 'fsnscan',
8947
+ standard: 'EIP3091'
8948
+ }
8949
+ ]
8923
8950
  },
8924
8951
  {
8925
8952
  name: 'Aves Mainnet',
@@ -9301,6 +9328,31 @@ const chainArray = [
9301
9328
  }
9302
9329
  ]
9303
9330
  },
9331
+ {
9332
+ name: 'Fusion Testnet',
9333
+ chain: 'FSN',
9334
+ icon: 'fusion',
9335
+ rpc: [
9336
+ 'https://testnet.fusionnetwork.io',
9337
+ 'wss://testnet.fusionnetwork.io'
9338
+ ],
9339
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
9340
+ faucets: [],
9341
+ nativeCurrency: { name: 'Testnet Fusion', symbol: 'T-FSN', decimals: 18 },
9342
+ infoURL: 'https://fusion.org',
9343
+ shortName: 'tfsn',
9344
+ chainId: 46688,
9345
+ networkId: 46688,
9346
+ slip44: 288,
9347
+ explorers: [
9348
+ {
9349
+ name: 'fsnscan',
9350
+ url: 'https://testnet.fsnscan.com',
9351
+ icon: 'fsnscan',
9352
+ standard: 'EIP3091'
9353
+ }
9354
+ ]
9355
+ },
9304
9356
  {
9305
9357
  name: 'REI Network',
9306
9358
  chain: 'REI',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.56",
3
+ "version": "0.0.57",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {