eth-chainlist 0.0.346 → 0.0.347
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 +8 -0
- package/data/chain.js +111 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.347 (2024-02-25)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.346 ([1d80f56](https://github.com/poowf/eth-chainlist/commit/1d80f56710575da177a044f3ddc53dc280d24b88))
|
9
|
+
* update chain data ([fabdc17](https://github.com/poowf/eth-chainlist/commit/fabdc178755b13f02b7298c94f285e8c10dd2313))
|
10
|
+
|
3
11
|
### 0.0.346 (2024-02-24)
|
4
12
|
|
5
13
|
|
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.
|
304
|
-
'https://
|
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: '
|
341
|
-
chain: '
|
345
|
+
name: 'Songbird Testnet Coston',
|
346
|
+
chain: 'SGB',
|
342
347
|
icon: 'coston',
|
343
|
-
rpc: [
|
344
|
-
|
345
|
-
'https://
|
346
|
-
'https://
|
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.
|
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://
|
398
|
-
'https://
|
399
|
-
'https://
|
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.
|
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: '
|
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: '
|
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: '
|
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: [
|
2343
|
-
|
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.
|
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
|
},
|
@@ -9359,20 +9387,20 @@ const chainArray = [
|
|
9359
9387
|
networkId: 1
|
9360
9388
|
},
|
9361
9389
|
{
|
9362
|
-
name: '
|
9390
|
+
name: 'Whitechain',
|
9363
9391
|
chain: 'WBT',
|
9364
|
-
rpc: [ 'https://rpc.
|
9392
|
+
rpc: [ 'https://rpc.whitechain.io' ],
|
9365
9393
|
faucets: [],
|
9366
9394
|
nativeCurrency: { name: 'WhiteBIT Coin', symbol: 'WBT', decimals: 18 },
|
9367
|
-
infoURL: 'https://
|
9395
|
+
infoURL: 'https://whitechain.io',
|
9368
9396
|
shortName: 'wbt',
|
9369
9397
|
chainId: 1875,
|
9370
9398
|
networkId: 1875,
|
9371
|
-
icon: '
|
9399
|
+
icon: 'whitechain',
|
9372
9400
|
explorers: [
|
9373
9401
|
{
|
9374
|
-
name: '
|
9375
|
-
url: 'https://explorer.
|
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: '
|
11378
|
+
name: 'Whitechain Testnet',
|
11351
11379
|
chain: 'WBT',
|
11352
|
-
rpc: [ 'https://rpc-testnet.
|
11353
|
-
faucets: [ 'https://
|
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://
|
11383
|
+
infoURL: 'https://whitechain.io',
|
11356
11384
|
shortName: 'twbt',
|
11357
11385
|
chainId: 2625,
|
11358
11386
|
networkId: 2625,
|
11359
11387
|
slip44: 1,
|
11360
|
-
icon: '
|
11388
|
+
icon: 'whitechain-testnet',
|
11361
11389
|
explorers: [
|
11362
11390
|
{
|
11363
|
-
name: '
|
11364
|
-
url: 'https://
|
11391
|
+
name: 'whitechain-testnet-explorer',
|
11392
|
+
url: 'https://testnet.whitechain.io',
|
11365
11393
|
standard: 'EIP3091'
|
11366
11394
|
}
|
11367
11395
|
]
|
@@ -17421,6 +17449,30 @@ const chainArray = [
|
|
17421
17449
|
}
|
17422
17450
|
]
|
17423
17451
|
},
|
17452
|
+
{
|
17453
|
+
name: 'Titan (TKX) Testnet',
|
17454
|
+
chain: 'Titan (TKX)',
|
17455
|
+
rpc: [
|
17456
|
+
'https://titan-testnet-json-rpc-1.tokenize-dev.com',
|
17457
|
+
'https://titan-testnet-json-rpc-2.tokenize-dev.com'
|
17458
|
+
],
|
17459
|
+
faucets: [],
|
17460
|
+
nativeCurrency: { name: 'Titan tkx', symbol: 'TKX', decimals: 18 },
|
17461
|
+
infoURL: 'https://tokenize.exchange',
|
17462
|
+
shortName: 'titan_tkx-testnet',
|
17463
|
+
chainId: 18889,
|
17464
|
+
networkId: 18889,
|
17465
|
+
slip44: 1,
|
17466
|
+
icon: 'titan_tkx',
|
17467
|
+
explorers: [
|
17468
|
+
{
|
17469
|
+
name: 'Titan Explorer',
|
17470
|
+
url: 'https://titan-testnet-explorer-light.tokenize-dev.com',
|
17471
|
+
standard: 'none',
|
17472
|
+
icon: 'titan_tkx'
|
17473
|
+
}
|
17474
|
+
]
|
17475
|
+
},
|
17424
17476
|
{
|
17425
17477
|
name: 'HOME Verse Mainnet',
|
17426
17478
|
chain: 'HOME Verse',
|
@@ -21900,6 +21952,29 @@ const chainArray = [
|
|
21900
21952
|
networkId: 200625,
|
21901
21953
|
slip44: 200625
|
21902
21954
|
},
|
21955
|
+
{
|
21956
|
+
name: 'Bitlayer Testnet',
|
21957
|
+
chain: 'Bitlayer',
|
21958
|
+
rpc: [
|
21959
|
+
'https://testnet-rpc.bitlayer.org',
|
21960
|
+
'wss://testnet-ws.bitlayer.org'
|
21961
|
+
],
|
21962
|
+
faucets: [ 'https://www.bitlayer.org/faucet' ],
|
21963
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
21964
|
+
infoURL: 'https://docs.bitlayer.org/',
|
21965
|
+
shortName: 'Bitlayer',
|
21966
|
+
chainId: 200810,
|
21967
|
+
networkId: 200810,
|
21968
|
+
slip44: 1,
|
21969
|
+
icon: 'bitlayer',
|
21970
|
+
explorers: [
|
21971
|
+
{
|
21972
|
+
name: 'bitlayer testnet scan',
|
21973
|
+
url: 'https://testnet-scan.bitlayer.org',
|
21974
|
+
standard: 'none'
|
21975
|
+
}
|
21976
|
+
]
|
21977
|
+
},
|
21903
21978
|
{
|
21904
21979
|
name: 'Alaya Mainnet',
|
21905
21980
|
chain: 'Alaya',
|