eth-chainlist 0.0.56 → 0.0.58

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/data/chain.js +156 -12
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.58 (2023-01-17)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.57 ([5d5993c](https://github.com/poowf/eth-chainlist/commit/5d5993c444c9c44eb06b67698d9121c2d229d284))
9
+ * update chain data ([e6285ae](https://github.com/poowf/eth-chainlist/commit/e6285ae9e7740f019c6117fc7923762080f336fc))
10
+
11
+ ### 0.0.57 (2023-01-16)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.56 ([2f84035](https://github.com/poowf/eth-chainlist/commit/2f8403550196bfdaccbf7259dcaa2d83d50c4324))
17
+ * update chain data ([e52710b](https://github.com/poowf/eth-chainlist/commit/e52710b9f2769a4ce7a805e485536fd39070321c))
18
+
3
19
  ### 0.0.56 (2023-01-15)
4
20
 
5
21
 
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',
@@ -7470,6 +7483,30 @@ const chainArray = [
7470
7483
  }
7471
7484
  ]
7472
7485
  },
7486
+ {
7487
+ name: 'BeOne Chain Testnet',
7488
+ chain: 'BOC',
7489
+ rpc: [
7490
+ 'https://pre-boc1.beonechain.com',
7491
+ 'https://pre-boc2.beonechain.com',
7492
+ 'https://pre-boc3.beonechain.com'
7493
+ ],
7494
+ faucets: [ 'https://testnet.beonescan.com/faucet' ],
7495
+ nativeCurrency: { name: 'BeOne Chain Testnet', symbol: 'BOC', decimals: 18 },
7496
+ infoURL: 'https://testnet.beonescan.com',
7497
+ shortName: 'tBOC',
7498
+ chainId: 8181,
7499
+ networkId: 8181,
7500
+ icon: 'beonechain',
7501
+ explorers: [
7502
+ {
7503
+ name: 'BeOne Chain Testnet',
7504
+ url: 'https://testnet.beonescan.com',
7505
+ icon: 'beonechain',
7506
+ standard: 'none'
7507
+ }
7508
+ ]
7509
+ },
7473
7510
  {
7474
7511
  name: 'Klaytn Mainnet Cypress',
7475
7512
  chain: 'KLAY',
@@ -7651,6 +7688,27 @@ const chainArray = [
7651
7688
  }
7652
7689
  ]
7653
7690
  },
7691
+ {
7692
+ name: 'Giant Mammoth Mainnet',
7693
+ title: 'Giant Mammoth Chain',
7694
+ chain: 'GMMT',
7695
+ rpc: [ 'https://rpc-asia.gmmtchain.io' ],
7696
+ faucets: [],
7697
+ nativeCurrency: { name: 'Giant Mammoth Coin', symbol: 'GMMT', decimals: 18 },
7698
+ infoURL: 'https://gmmtchain.io/',
7699
+ shortName: 'gmmt',
7700
+ chainId: 8989,
7701
+ networkId: 8989,
7702
+ icon: 'gmmt',
7703
+ explorers: [
7704
+ {
7705
+ name: 'gmmtscan',
7706
+ url: 'https://scan.gmmtchain.io',
7707
+ standard: 'EIP3091',
7708
+ icon: 'gmmt'
7709
+ }
7710
+ ]
7711
+ },
7654
7712
  {
7655
7713
  name: 'bloxberg',
7656
7714
  chain: 'bloxberg',
@@ -8717,6 +8775,29 @@ const chainArray = [
8717
8775
  }
8718
8776
  ]
8719
8777
  },
8778
+ {
8779
+ name: 'Bitkub Chain Testnet',
8780
+ chain: 'BKC',
8781
+ icon: 'bkc',
8782
+ rpc: [
8783
+ 'https://rpc-testnet.bitkubchain.io',
8784
+ 'wss://wss-testnet.bitkubchain.io'
8785
+ ],
8786
+ faucets: [ 'https://faucet.bitkubchain.com' ],
8787
+ nativeCurrency: { name: 'Bitkub Coin', symbol: 'tKUB', decimals: 18 },
8788
+ infoURL: 'https://www.bitkubchain.com/',
8789
+ shortName: 'bkct',
8790
+ chainId: 25925,
8791
+ networkId: 25925,
8792
+ explorers: [
8793
+ {
8794
+ name: 'bkcscan-testnet',
8795
+ url: 'https://testnet.bkcscan.com',
8796
+ standard: 'none',
8797
+ icon: 'bkc'
8798
+ }
8799
+ ]
8800
+ },
8720
8801
  {
8721
8802
  name: 'Hertz Network Mainnet',
8722
8803
  chain: 'HTZ',
@@ -8913,13 +8994,27 @@ const chainArray = [
8913
8994
  {
8914
8995
  name: 'Fusion Mainnet',
8915
8996
  chain: 'FSN',
8916
- rpc: [ 'https://mainnet.anyswap.exchange', 'https://fsn.dev/api' ],
8997
+ icon: 'fusion',
8998
+ rpc: [
8999
+ 'https://mainnet.fusionnetwork.io',
9000
+ 'wss://mainnet.fusionnetwork.io'
9001
+ ],
9002
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
8917
9003
  faucets: [],
8918
9004
  nativeCurrency: { name: 'Fusion', symbol: 'FSN', decimals: 18 },
8919
- infoURL: 'https://www.fusion.org/',
9005
+ infoURL: 'https://fusion.org',
8920
9006
  shortName: 'fsn',
8921
9007
  chainId: 32659,
8922
- networkId: 32659
9008
+ networkId: 32659,
9009
+ slip44: 288,
9010
+ explorers: [
9011
+ {
9012
+ name: 'fsnscan',
9013
+ url: 'https://fsnscan.com',
9014
+ icon: 'fsnscan',
9015
+ standard: 'EIP3091'
9016
+ }
9017
+ ]
8923
9018
  },
8924
9019
  {
8925
9020
  name: 'Aves Mainnet',
@@ -9143,7 +9238,7 @@ const chainArray = [
9143
9238
  ]
9144
9239
  },
9145
9240
  {
9146
- name: 'Oasis Emerald ParaTime Testnet',
9241
+ name: 'Oasis Emerald Testnet',
9147
9242
  chain: 'Emerald',
9148
9243
  icon: 'oasis',
9149
9244
  rpc: [
@@ -9152,32 +9247,32 @@ const chainArray = [
9152
9247
  ],
9153
9248
  faucets: [ 'https://faucet.testnet.oasis.dev/' ],
9154
9249
  nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
9155
- infoURL: 'https://docs.oasis.dev/general/developer-resources/overview',
9250
+ infoURL: 'https://docs.oasis.io/dapp/emerald',
9156
9251
  shortName: 'emerald-testnet',
9157
9252
  chainId: 42261,
9158
9253
  networkId: 42261,
9159
9254
  explorers: [
9160
9255
  {
9161
- name: 'Emerald ParaTime Testnet Explorer',
9256
+ name: 'Oasis Emerald Testnet Explorer',
9162
9257
  url: 'https://testnet.explorer.emerald.oasis.dev',
9163
9258
  standard: 'EIP3091'
9164
9259
  }
9165
9260
  ]
9166
9261
  },
9167
9262
  {
9168
- name: 'Oasis Emerald ParaTime Mainnet',
9263
+ name: 'Oasis Emerald',
9169
9264
  chain: 'Emerald',
9170
9265
  icon: 'oasis',
9171
9266
  rpc: [ 'https://emerald.oasis.dev', 'wss://emerald.oasis.dev/ws' ],
9172
9267
  faucets: [],
9173
9268
  nativeCurrency: { name: 'Emerald Rose', symbol: 'ROSE', decimals: 18 },
9174
- infoURL: 'https://docs.oasis.dev/general/developer-resources/overview',
9269
+ infoURL: 'https://docs.oasis.io/dapp/emerald',
9175
9270
  shortName: 'emerald',
9176
9271
  chainId: 42262,
9177
9272
  networkId: 42262,
9178
9273
  explorers: [
9179
9274
  {
9180
- name: 'Emerald ParaTime Mainnet Explorer',
9275
+ name: 'Oasis Emerald Explorer',
9181
9276
  url: 'https://explorer.emerald.oasis.dev',
9182
9277
  standard: 'EIP3091'
9183
9278
  }
@@ -9301,6 +9396,31 @@ const chainArray = [
9301
9396
  }
9302
9397
  ]
9303
9398
  },
9399
+ {
9400
+ name: 'Fusion Testnet',
9401
+ chain: 'FSN',
9402
+ icon: 'fusion',
9403
+ rpc: [
9404
+ 'https://testnet.fusionnetwork.io',
9405
+ 'wss://testnet.fusionnetwork.io'
9406
+ ],
9407
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
9408
+ faucets: [],
9409
+ nativeCurrency: { name: 'Testnet Fusion', symbol: 'T-FSN', decimals: 18 },
9410
+ infoURL: 'https://fusion.org',
9411
+ shortName: 'tfsn',
9412
+ chainId: 46688,
9413
+ networkId: 46688,
9414
+ slip44: 288,
9415
+ explorers: [
9416
+ {
9417
+ name: 'fsnscan',
9418
+ url: 'https://testnet.fsnscan.com',
9419
+ icon: 'fsnscan',
9420
+ standard: 'EIP3091'
9421
+ }
9422
+ ]
9423
+ },
9304
9424
  {
9305
9425
  name: 'REI Network',
9306
9426
  chain: 'REI',
@@ -9468,6 +9588,29 @@ const chainArray = [
9468
9588
  }
9469
9589
  ]
9470
9590
  },
9591
+ {
9592
+ name: 'Boba BNB Mainnet',
9593
+ chain: 'Boba BNB Mainnet',
9594
+ rpc: [
9595
+ 'https://bnb.boba.network',
9596
+ 'wss://wss.bnb.boba.network',
9597
+ 'https://replica.bnb.boba.network',
9598
+ 'wss://replica-wss.bnb.boba.network'
9599
+ ],
9600
+ faucets: [],
9601
+ nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
9602
+ infoURL: 'https://boba.network',
9603
+ shortName: 'BobaBnb',
9604
+ chainId: 56288,
9605
+ networkId: 56288,
9606
+ explorers: [
9607
+ {
9608
+ name: 'Boba BNB block explorer',
9609
+ url: 'https://blockexplorer.bnb.boba.network',
9610
+ standard: 'none'
9611
+ }
9612
+ ]
9613
+ },
9471
9614
  {
9472
9615
  name: 'Thinkium Testnet Chain 0',
9473
9616
  chain: 'Thinkium',
@@ -10002,13 +10145,13 @@ const chainArray = [
10002
10145
  ]
10003
10146
  },
10004
10147
  {
10005
- name: 'Boba BNB Mainnet',
10148
+ name: 'Boba BNB Mainnet Old',
10006
10149
  chain: 'Boba BNB Mainnet',
10007
10150
  rpc: [],
10008
10151
  faucets: [],
10009
10152
  nativeCurrency: { name: 'Boba Token', symbol: 'BOBA', decimals: 18 },
10010
10153
  infoURL: 'https://boba.network',
10011
- shortName: 'BobaBnb',
10154
+ shortName: 'BobaBnbOld',
10012
10155
  chainId: 97288,
10013
10156
  networkId: 97288,
10014
10157
  explorers: [
@@ -10017,7 +10160,8 @@ const chainArray = [
10017
10160
  url: 'https://blockexplorer.bnb.boba.network',
10018
10161
  standard: 'none'
10019
10162
  }
10020
- ]
10163
+ ],
10164
+ status: 'deprecated'
10021
10165
  },
10022
10166
  {
10023
10167
  name: 'UB Smart Chain(testnet)',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {