eth-chainlist 0.0.346 → 0.0.348

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 +142 -42
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.348 (2024-02-26)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.347 ([59fd17a](https://github.com/poowf/eth-chainlist/commit/59fd17a748d8ee3fc750676e45461fcea226b799))
9
+ * update chain data ([fe53b0b](https://github.com/poowf/eth-chainlist/commit/fe53b0ba1cec703a76348343f44509b01ff2d3bb))
10
+
11
+ ### 0.0.347 (2024-02-25)
12
+
13
+
14
+ ### Maintenance
15
+
16
+ * **release:** 0.0.346 ([1d80f56](https://github.com/poowf/eth-chainlist/commit/1d80f56710575da177a044f3ddc53dc280d24b88))
17
+ * update chain data ([fabdc17](https://github.com/poowf/eth-chainlist/commit/fabdc178755b13f02b7298c94f285e8c10dd2313))
18
+
3
19
  ### 0.0.346 (2024-02-24)
4
20
 
5
21
 
package/data/chain.js CHANGED
@@ -300,9 +300,14 @@ const chainArray = [
300
300
  icon: 'flare',
301
301
  rpc: [
302
302
  'https://flare-api.flare.network/ext/C/rpc',
303
- 'https://flare.public-rpc.com',
304
- 'https://rpc.ftso.au/flare'
303
+ 'https://flare.rpc.thirdweb.com',
304
+ 'https://flare-bundler.etherspot.io',
305
+ 'https://rpc.ankr.com/flare',
306
+ 'https://rpc.ftso.au/flare',
307
+ 'https://flare.enosys.global/ext/C/rpc',
308
+ 'https://flare.solidifi.app/ext/C/rpc'
305
309
  ],
310
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
306
311
  faucets: [],
307
312
  nativeCurrency: { name: 'Flare', symbol: 'FLR', decimals: 18 },
308
313
  infoURL: 'https://flare.network',
@@ -317,7 +322,7 @@ const chainArray = [
317
322
  },
318
323
  {
319
324
  name: 'flarescan',
320
- url: 'https://flarescan.com',
325
+ url: 'https://mainnet.flarescan.com',
321
326
  standard: 'EIP3091'
322
327
  }
323
328
  ]
@@ -337,24 +342,32 @@ const chainArray = [
337
342
  networkId: 15
338
343
  },
339
344
  {
340
- name: 'Flare Testnet Coston',
341
- chain: 'FLR',
345
+ name: 'Songbird Testnet Coston',
346
+ chain: 'SGB',
342
347
  icon: 'coston',
343
- rpc: [ 'https://coston-api.flare.network/ext/bc/C/rpc' ],
344
- faucets: [
345
- 'https://faucet.towolabs.com',
346
- 'https://fauceth.komputing.org?chain=16&address=${ADDRESS}'
348
+ rpc: [
349
+ 'https://coston-api.flare.network/ext/C/rpc',
350
+ 'https://flare-testnet-coston.rpc.thirdweb.com',
351
+ 'https://coston.enosys.global/ext/C/rpc'
347
352
  ],
353
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
354
+ faucets: [ 'https://faucet.flare.network' ],
348
355
  nativeCurrency: { name: 'Coston Flare', symbol: 'CFLR', decimals: 18 },
349
- infoURL: 'https://flare.xyz',
356
+ infoURL: 'https://flare.network',
350
357
  shortName: 'cflr',
351
358
  chainId: 16,
352
359
  networkId: 16,
360
+ slip44: 1,
353
361
  explorers: [
354
362
  {
355
363
  name: 'blockscout',
356
364
  url: 'https://coston-explorer.flare.network',
357
365
  standard: 'EIP3091'
366
+ },
367
+ {
368
+ name: 'flarescan',
369
+ url: 'https://coston.testnet.flarescan.com',
370
+ standard: 'EIP3091'
358
371
  }
359
372
  ]
360
373
  },
@@ -394,14 +407,14 @@ const chainArray = [
394
407
  icon: 'songbird',
395
408
  rpc: [
396
409
  'https://songbird-api.flare.network/ext/C/rpc',
397
- 'https://sgb.ftso.com.au/ext/bc/C/rpc',
398
- 'https://sgb.lightft.so/rpc',
399
- 'https://sgb-rpc.ftso.eu',
400
- 'https://rpc.ftso.au/songbird'
410
+ 'https://rpc.ftso.au/songbird',
411
+ 'https://songbird.enosys.global/ext/C/rpc',
412
+ 'https://songbird.solidifi.app/ext/C/rpc'
401
413
  ],
414
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
402
415
  faucets: [],
403
416
  nativeCurrency: { name: 'Songbird', symbol: 'SGB', decimals: 18 },
404
- infoURL: 'https://flare.xyz',
417
+ infoURL: 'https://flare.network',
405
418
  shortName: 'sgb',
406
419
  chainId: 19,
407
420
  networkId: 19,
@@ -410,6 +423,11 @@ const chainArray = [
410
423
  name: 'blockscout',
411
424
  url: 'https://songbird-explorer.flare.network',
412
425
  standard: 'EIP3091'
426
+ },
427
+ {
428
+ name: 'flarescan',
429
+ url: 'https://songbird.flarescan.com',
430
+ standard: 'EIP3091'
413
431
  }
414
432
  ]
415
433
  },
@@ -839,7 +857,7 @@ const chainArray = [
839
857
  {
840
858
  name: 'subscan',
841
859
  url: 'https://pangolin.subscan.io',
842
- standard: 'none'
860
+ standard: 'EIP3091'
843
861
  }
844
862
  ]
845
863
  },
@@ -848,8 +866,7 @@ const chainArray = [
848
866
  chain: 'crab',
849
867
  rpc: [
850
868
  'https://crab-rpc.darwinia.network',
851
- 'https://crab-rpc.darwiniacommunitydao.xyz',
852
- 'https://darwiniacrab-rpc.dwellir.com'
869
+ 'https://crab-rpc.darwiniacommunitydao.xyz'
853
870
  ],
854
871
  faucets: [],
855
872
  nativeCurrency: { name: 'Crab Network Native Token', symbol: 'CRAB', decimals: 18 },
@@ -861,7 +878,7 @@ const chainArray = [
861
878
  {
862
879
  name: 'subscan',
863
880
  url: 'https://crab.subscan.io',
864
- standard: 'none'
881
+ standard: 'EIP3091'
865
882
  }
866
883
  ]
867
884
  },
@@ -912,7 +929,7 @@ const chainArray = [
912
929
  {
913
930
  name: 'subscan',
914
931
  url: 'https://darwinia.subscan.io',
915
- standard: 'none'
932
+ standard: 'EIP3091'
916
933
  }
917
934
  ]
918
935
  },
@@ -2339,10 +2356,16 @@ const chainArray = [
2339
2356
  name: 'Flare Testnet Coston2',
2340
2357
  chain: 'FLR',
2341
2358
  icon: 'coston2',
2342
- rpc: [ 'https://coston2-api.flare.network/ext/bc/C/rpc' ],
2343
- faucets: [ 'https://coston2-faucet.towolabs.com' ],
2359
+ rpc: [
2360
+ 'https://coston2-api.flare.network/ext/C/rpc',
2361
+ 'https://flare-testnet-coston2.rpc.thirdweb.com',
2362
+ 'https://flaretestnet-bundler.etherspot.io',
2363
+ 'https://coston2.enosys.global/ext/C/rpc'
2364
+ ],
2365
+ features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
2366
+ faucets: [ 'https://faucet.flare.network' ],
2344
2367
  nativeCurrency: { name: 'Coston2 Flare', symbol: 'C2FLR', decimals: 18 },
2345
- infoURL: 'https://flare.xyz',
2368
+ infoURL: 'https://flare.network',
2346
2369
  shortName: 'c2flr',
2347
2370
  chainId: 114,
2348
2371
  networkId: 114,
@@ -2352,6 +2375,11 @@ const chainArray = [
2352
2375
  name: 'blockscout',
2353
2376
  url: 'https://coston2-explorer.flare.network',
2354
2377
  standard: 'EIP3091'
2378
+ },
2379
+ {
2380
+ name: 'flarescan',
2381
+ url: 'https://coston2.testnet.flarescan.com',
2382
+ standard: 'EIP3091'
2355
2383
  }
2356
2384
  ]
2357
2385
  },
@@ -5327,7 +5355,7 @@ const chainArray = [
5327
5355
  name: 'Firechain Mainnet',
5328
5356
  chain: 'FIRE',
5329
5357
  icon: 'firechain',
5330
- rpc: [ 'https://mainnet.rpc1.thefirechain.com' ],
5358
+ rpc: [ 'https://rpc-mainnet.thefirechain.com' ],
5331
5359
  faucets: [],
5332
5360
  nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 },
5333
5361
  infoURL: 'https://thefirechain.com',
@@ -6408,7 +6436,7 @@ const chainArray = [
6408
6436
  name: 'Firechain zkEVM',
6409
6437
  title: 'Firechain zkEVM',
6410
6438
  chain: 'Firechain',
6411
- rpc: [ 'https://rpc.zkevm.thefirechain.com' ],
6439
+ rpc: [ 'https://rpc-zkevm.thefirechain.com' ],
6412
6440
  faucets: [],
6413
6441
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
6414
6442
  infoURL: 'https://docs.thefirechain.com/',
@@ -6420,7 +6448,7 @@ const chainArray = [
6420
6448
  parent: {
6421
6449
  type: 'L2',
6422
6450
  chain: 'eip155-1',
6423
- bridges: [ { url: 'https://zkevm.bridge.rpc.thefirechain.com' } ]
6451
+ bridges: [ { url: 'https://zkevm-bridge-rpc.thefirechain.com' } ]
6424
6452
  }
6425
6453
  },
6426
6454
  {
@@ -6756,7 +6784,7 @@ const chainArray = [
6756
6784
  name: 'Rinia Testnet',
6757
6785
  chain: 'FIRE',
6758
6786
  icon: 'rinia',
6759
- rpc: [ 'https://rinia.rpc1.thefirechain.com' ],
6787
+ rpc: [ 'https://rinia-rpc1.thefirechain.com' ],
6760
6788
  faucets: [ 'https://faucet.thefirechain.com' ],
6761
6789
  nativeCurrency: { name: 'Firechain', symbol: 'FIRE', decimals: 18 },
6762
6790
  infoURL: 'https://thefirechain.com',
@@ -9359,20 +9387,20 @@ const chainArray = [
9359
9387
  networkId: 1
9360
9388
  },
9361
9389
  {
9362
- name: 'WhiteBIT Network',
9390
+ name: 'Whitechain',
9363
9391
  chain: 'WBT',
9364
- rpc: [ 'https://rpc.whitebit.network' ],
9392
+ rpc: [ 'https://rpc.whitechain.io' ],
9365
9393
  faucets: [],
9366
9394
  nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 },
9367
- infoURL: 'https://whitebit.network',
9395
+ infoURL: 'https://whitechain.io',
9368
9396
  shortName: 'wbt',
9369
9397
  chainId: 1875,
9370
9398
  networkId: 1875,
9371
- icon: 'whitebit',
9399
+ icon: 'whitechain',
9372
9400
  explorers: [
9373
9401
  {
9374
- name: 'wb-explorer',
9375
- url: 'https://explorer.whitebit.network',
9402
+ name: 'whitechain-explorer',
9403
+ url: 'https://explorer.whitechain.io',
9376
9404
  standard: 'EIP3091'
9377
9405
  }
9378
9406
  ]
@@ -11347,21 +11375,21 @@ const chainArray = [
11347
11375
  ]
11348
11376
  },
11349
11377
  {
11350
- name: 'WhiteBIT Network Testnet',
11378
+ name: 'Whitechain Testnet',
11351
11379
  chain: 'WBT',
11352
- rpc: [ 'https://rpc-testnet.whitebit.network' ],
11353
- faucets: [ 'https://explorer.whitebit.network/testnet/faucet' ],
11380
+ rpc: [ 'https://rpc-testnet.whitechain.io' ],
11381
+ faucets: [ 'https://testnet.whitechain.io/faucet' ],
11354
11382
  nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 },
11355
- infoURL: 'https://whitebit.com/wbt',
11383
+ infoURL: 'https://whitechain.io',
11356
11384
  shortName: 'twbt',
11357
11385
  chainId: 2625,
11358
11386
  networkId: 2625,
11359
11387
  slip44: 1,
11360
- icon: 'whitebit-testnet',
11388
+ icon: 'whitechain-testnet',
11361
11389
  explorers: [
11362
11390
  {
11363
- name: 'wb-explorer-testnet',
11364
- url: 'https://explorer.whitebit.network/testnet',
11391
+ name: 'whitechain-testnet-explorer',
11392
+ url: 'https://testnet.whitechain.io',
11365
11393
  standard: 'EIP3091'
11366
11394
  }
11367
11395
  ]
@@ -12115,10 +12143,10 @@ const chainArray = [
12115
12143
  ]
12116
12144
  },
12117
12145
  {
12118
- name: 'Firechain zkEVM Ghostrider',
12146
+ name: 'Firechain zkEVM Testnet',
12119
12147
  title: 'Firechain zkEVM Ghostrider',
12120
12148
  chain: 'Firechain',
12121
- rpc: [ 'https://rpc.zkevm.ghostrider.thefirechain.com' ],
12149
+ rpc: [ 'https://rpc-zkevm-ghostrider.thefirechain.com' ],
12122
12150
  faucets: [ 'zkevm-faucet.thefirechain.com' ],
12123
12151
  nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
12124
12152
  infoURL: 'https://docs.thefirechain.com/',
@@ -12246,6 +12274,31 @@ const chainArray = [
12246
12274
  }
12247
12275
  ]
12248
12276
  },
12277
+ {
12278
+ name: 'APEX Testnet',
12279
+ chain: 'ETH',
12280
+ rpc: [ 'https://exp-testnet.apexlayer.xyz' ],
12281
+ faucets: [ 'https://sepoliafaucet.com/' ],
12282
+ nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
12283
+ infoURL: 'https://docs.apexlayer.xyz/',
12284
+ shortName: 'apexsep',
12285
+ chainId: 3993,
12286
+ networkId: 3993,
12287
+ slip44: 1,
12288
+ icon: 'apextestnet',
12289
+ explorers: [
12290
+ {
12291
+ name: 'blockscout',
12292
+ url: 'https://exp-testnet.apexlayer.xyz',
12293
+ standard: 'EIP3091'
12294
+ }
12295
+ ],
12296
+ parent: {
12297
+ type: 'L2',
12298
+ chain: 'eip155-11155111',
12299
+ bridges: [ { url: 'https://apexlayer.xyz/bridge' } ]
12300
+ }
12301
+ },
12249
12302
  {
12250
12303
  name: 'YuanChain Mainnet',
12251
12304
  chain: 'YCC',
@@ -17421,6 +17474,30 @@ const chainArray = [
17421
17474
  }
17422
17475
  ]
17423
17476
  },
17477
+ {
17478
+ name: 'Titan (TKX) Testnet',
17479
+ chain: 'Titan (TKX)',
17480
+ rpc: [
17481
+ 'https://titan-testnet-json-rpc-1.tokenize-dev.com',
17482
+ 'https://titan-testnet-json-rpc-2.tokenize-dev.com'
17483
+ ],
17484
+ faucets: [],
17485
+ nativeCurrency: { name: 'Titan tkx', symbol: 'TKX', decimals: 18 },
17486
+ infoURL: 'https://tokenize.exchange',
17487
+ shortName: 'titan_tkx-testnet',
17488
+ chainId: 18889,
17489
+ networkId: 18889,
17490
+ slip44: 1,
17491
+ icon: 'titan_tkx',
17492
+ explorers: [
17493
+ {
17494
+ name: 'Titan Explorer',
17495
+ url: 'https://titan-testnet-explorer-light.tokenize-dev.com',
17496
+ standard: 'none',
17497
+ icon: 'titan_tkx'
17498
+ }
17499
+ ]
17500
+ },
17424
17501
  {
17425
17502
  name: 'HOME Verse Mainnet',
17426
17503
  chain: 'HOME Verse',
@@ -21900,6 +21977,29 @@ const chainArray = [
21900
21977
  networkId: 200625,
21901
21978
  slip44: 200625
21902
21979
  },
21980
+ {
21981
+ name: 'Bitlayer Testnet',
21982
+ chain: 'Bitlayer',
21983
+ rpc: [
21984
+ 'https://testnet-rpc.bitlayer.org',
21985
+ 'wss://testnet-ws.bitlayer.org'
21986
+ ],
21987
+ faucets: [ 'https://www.bitlayer.org/faucet' ],
21988
+ nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
21989
+ infoURL: 'https://docs.bitlayer.org/',
21990
+ shortName: 'Bitlayer',
21991
+ chainId: 200810,
21992
+ networkId: 200810,
21993
+ slip44: 1,
21994
+ icon: 'bitlayer',
21995
+ explorers: [
21996
+ {
21997
+ name: 'bitlayer testnet scan',
21998
+ url: 'https://testnet-scan.bitlayer.org',
21999
+ standard: 'none'
22000
+ }
22001
+ ]
22002
+ },
21903
22003
  {
21904
22004
  name: 'Alaya Mainnet',
21905
22005
  chain: 'Alaya',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.346",
3
+ "version": "0.0.348",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {