eth-chainlist 0.0.379 → 0.0.381
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 +16 -0
- package/data/chain.js +293 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.381 (2024-04-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.380 ([4d81499](https://github.com/poowf/eth-chainlist/commit/4d81499e340062916ba3cda2675097df8f0c1b81))
|
9
|
+
* update chain data ([54ce4f2](https://github.com/poowf/eth-chainlist/commit/54ce4f207b1e2178de6861a894ff2424300845cf))
|
10
|
+
|
11
|
+
### 0.0.380 (2024-04-17)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.379 ([cf97885](https://github.com/poowf/eth-chainlist/commit/cf97885145476be4cfa94e3b2f23af58b4b63e84))
|
17
|
+
* update chain data ([1118f0a](https://github.com/poowf/eth-chainlist/commit/1118f0a8f4289d64247ce7c6e8a3fcd782b8f44c))
|
18
|
+
|
3
19
|
### 0.0.379 (2024-04-16)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3476,7 +3476,7 @@ const chainArray = [
|
|
3476
3476
|
standard: 'EIP3091'
|
3477
3477
|
}
|
3478
3478
|
],
|
3479
|
-
status: '
|
3479
|
+
status: 'active'
|
3480
3480
|
},
|
3481
3481
|
{
|
3482
3482
|
name: 'Neutrinos TestNet',
|
@@ -3728,6 +3728,26 @@ const chainArray = [
|
|
3728
3728
|
}
|
3729
3729
|
]
|
3730
3730
|
},
|
3731
|
+
{
|
3732
|
+
name: 'B2 Hub Mainnet',
|
3733
|
+
chain: 'B2',
|
3734
|
+
rpc: [ 'https://hub-rpc.bsquared.network' ],
|
3735
|
+
faucets: [],
|
3736
|
+
nativeCurrency: { name: 'BSquared Token', symbol: 'B2', decimals: 18 },
|
3737
|
+
infoURL: 'https://www.bsquared.network',
|
3738
|
+
shortName: 'B2Hub-mainnet',
|
3739
|
+
chainId: 213,
|
3740
|
+
networkId: 213,
|
3741
|
+
icon: 'bsquare',
|
3742
|
+
explorers: [
|
3743
|
+
{
|
3744
|
+
name: 'B2 Hub Mainnet Explorer',
|
3745
|
+
url: 'https://hub-explorer.bsquared.network',
|
3746
|
+
icon: 'bsquare',
|
3747
|
+
standard: 'EIP3091'
|
3748
|
+
}
|
3749
|
+
]
|
3750
|
+
},
|
3731
3751
|
{
|
3732
3752
|
name: 'Shinarium Mainnet',
|
3733
3753
|
chain: 'Shinarium',
|
@@ -3810,6 +3830,35 @@ const chainArray = [
|
|
3810
3830
|
slip44: 2221,
|
3811
3831
|
status: 'deprecated'
|
3812
3832
|
},
|
3833
|
+
{
|
3834
|
+
name: 'B2 Mainnet',
|
3835
|
+
title: 'B2 Mainnet',
|
3836
|
+
chain: 'B2',
|
3837
|
+
rpc: [
|
3838
|
+
'https://rpc.bsquared.network',
|
3839
|
+
'https://b2-mainnet.alt.technology'
|
3840
|
+
],
|
3841
|
+
faucets: [],
|
3842
|
+
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
3843
|
+
infoURL: 'https://www.bsquared.network',
|
3844
|
+
shortName: 'B2-mainnet',
|
3845
|
+
chainId: 223,
|
3846
|
+
networkId: 223,
|
3847
|
+
icon: 'bsquare',
|
3848
|
+
explorers: [
|
3849
|
+
{
|
3850
|
+
name: 'blockscout',
|
3851
|
+
url: 'https://explorer.bsquared.network',
|
3852
|
+
icon: 'bsquare',
|
3853
|
+
standard: 'EIP3091'
|
3854
|
+
}
|
3855
|
+
],
|
3856
|
+
parent: {
|
3857
|
+
type: 'L2',
|
3858
|
+
chain: 'eip155-213',
|
3859
|
+
bridges: [ { url: 'https://www.bsquared.network/bridge' } ]
|
3860
|
+
}
|
3861
|
+
},
|
3813
3862
|
{
|
3814
3863
|
name: 'Viridis Testnet',
|
3815
3864
|
chain: 'VRD',
|
@@ -4174,16 +4223,29 @@ const chainArray = [
|
|
4174
4223
|
title: 'Neura Testnet',
|
4175
4224
|
chain: 'NEURA',
|
4176
4225
|
icon: 'neura',
|
4177
|
-
rpc: [],
|
4226
|
+
rpc: [ 'https://rpc.ankr.com/neura_testnet' ],
|
4178
4227
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4179
|
-
faucets: [],
|
4228
|
+
faucets: [ 'https://testnet.neuraprotocol.io/faucet' ],
|
4180
4229
|
nativeCurrency: { name: 'Testnet Ankr', symbol: 'ANKR', decimals: 18 },
|
4181
4230
|
infoURL: 'https://www.neuraprotocol.io/',
|
4182
4231
|
shortName: 'tneura',
|
4183
4232
|
chainId: 267,
|
4184
4233
|
networkId: 267,
|
4185
|
-
explorers: [
|
4186
|
-
|
4234
|
+
explorers: [
|
4235
|
+
{
|
4236
|
+
name: 'ankrscan-neura',
|
4237
|
+
url: 'https://testnet.neuraprotocol.io/explorer',
|
4238
|
+
icon: 'neura',
|
4239
|
+
standard: 'none'
|
4240
|
+
},
|
4241
|
+
{
|
4242
|
+
name: 'blockscout',
|
4243
|
+
url: 'https://explorer.neura-testnet.ankr.com',
|
4244
|
+
icon: 'blockscout',
|
4245
|
+
standard: 'EIP3091'
|
4246
|
+
}
|
4247
|
+
],
|
4248
|
+
status: 'active',
|
4187
4249
|
slip44: 1
|
4188
4250
|
},
|
4189
4251
|
{
|
@@ -11404,6 +11466,24 @@ const chainArray = [
|
|
11404
11466
|
}
|
11405
11467
|
]
|
11406
11468
|
},
|
11469
|
+
{
|
11470
|
+
name: 'BigShortBets Testnet',
|
11471
|
+
chain: 'BIGSB Testnet',
|
11472
|
+
rpc: [ 'https://test-market.bigsb.io', 'wss://test-market.bigsb.io' ],
|
11473
|
+
faucets: [],
|
11474
|
+
nativeCurrency: { name: 'Dolarz', symbol: 'Dolarz', decimals: 18 },
|
11475
|
+
infoURL: 'https://bigshortbets.com/',
|
11476
|
+
shortName: 'bigsb_testnet',
|
11477
|
+
chainId: 2136,
|
11478
|
+
networkId: 2136,
|
11479
|
+
explorers: [
|
11480
|
+
{
|
11481
|
+
name: 'Polkadot.js',
|
11482
|
+
url: 'https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer',
|
11483
|
+
standard: 'none'
|
11484
|
+
}
|
11485
|
+
]
|
11486
|
+
},
|
11407
11487
|
{
|
11408
11488
|
name: 'BigShortBets',
|
11409
11489
|
chain: 'BIGSB',
|
@@ -11844,7 +11924,7 @@ const chainArray = [
|
|
11844
11924
|
{
|
11845
11925
|
name: 'Atleta Testnet',
|
11846
11926
|
chain: 'Atleta',
|
11847
|
-
rpc: [ '
|
11927
|
+
rpc: [ 'wss://testnet-rpc.atleta.network:9944' ],
|
11848
11928
|
faucets: [ 'https://faucet.atleta.network' ],
|
11849
11929
|
nativeCurrency: { name: 'Atla', symbol: 'ATLA', decimals: 18 },
|
11850
11930
|
infoURL: 'https://atleta.network',
|
@@ -11857,7 +11937,7 @@ const chainArray = [
|
|
11857
11937
|
{
|
11858
11938
|
name: 'Atleta Testnet Explorer',
|
11859
11939
|
icon: 'atleta',
|
11860
|
-
url: '
|
11940
|
+
url: 'https://polkadot-explorer.atleta.network/#/explorer',
|
11861
11941
|
standard: 'none'
|
11862
11942
|
}
|
11863
11943
|
]
|
@@ -12385,6 +12465,34 @@ const chainArray = [
|
|
12385
12465
|
}
|
12386
12466
|
]
|
12387
12467
|
},
|
12468
|
+
{
|
12469
|
+
name: 'XR Sepolia',
|
12470
|
+
chain: 'ETH',
|
12471
|
+
rpc: [ 'https://xr-sepolia-testnet.rpc.caldera.xyz/http' ],
|
12472
|
+
faucets: [],
|
12473
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
12474
|
+
nativeCurrency: { name: 'tXR', symbol: 'tXR', decimals: 18 },
|
12475
|
+
infoURL: 'https://xr-one.gitbook.io',
|
12476
|
+
shortName: 'txr',
|
12477
|
+
chainId: 2730,
|
12478
|
+
networkId: 2730,
|
12479
|
+
icon: 'xr',
|
12480
|
+
slip44: 60,
|
12481
|
+
explorers: [
|
12482
|
+
{
|
12483
|
+
name: 'XR Sepolia Explorer',
|
12484
|
+
url: 'https://xr-sepolia-testnet.explorer.caldera.xyz',
|
12485
|
+
icon: 'blockscout',
|
12486
|
+
standard: 'EIP3091'
|
12487
|
+
}
|
12488
|
+
],
|
12489
|
+
parent: {
|
12490
|
+
type: 'L2',
|
12491
|
+
chain: 'eip155-421614',
|
12492
|
+
bridges: [ { url: 'https://xr-sepolia-testnet.bridge.caldera.xyz' } ]
|
12493
|
+
},
|
12494
|
+
status: 'active'
|
12495
|
+
},
|
12388
12496
|
{
|
12389
12497
|
name: 'Elizabeth Testnet',
|
12390
12498
|
chain: 'Elizabeth',
|
@@ -15639,6 +15747,20 @@ const chainArray = [
|
|
15639
15747
|
}
|
15640
15748
|
]
|
15641
15749
|
},
|
15750
|
+
{
|
15751
|
+
name: 'Cyber Mainnet',
|
15752
|
+
chain: 'Cyber',
|
15753
|
+
rpc: [],
|
15754
|
+
faucets: [],
|
15755
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15756
|
+
icon: 'cyber',
|
15757
|
+
infoURL: 'https://cyber.co/',
|
15758
|
+
shortName: 'cyeth',
|
15759
|
+
chainId: 7560,
|
15760
|
+
networkId: 7560,
|
15761
|
+
status: 'incubating',
|
15762
|
+
parent: { type: 'L2', chain: 'eip155-1' }
|
15763
|
+
},
|
15642
15764
|
{
|
15643
15765
|
name: 'ADIL Testnet',
|
15644
15766
|
chain: 'ADIL',
|
@@ -19211,7 +19333,12 @@ const chainArray = [
|
|
19211
19333
|
{
|
19212
19334
|
name: 'Titan (TKX)',
|
19213
19335
|
chain: 'Titan (TKX)',
|
19214
|
-
rpc: [
|
19336
|
+
rpc: [
|
19337
|
+
'https://titan-json-rpc.titanlab.io',
|
19338
|
+
'https://titan-json-rpc-tokyo.titanlab.io',
|
19339
|
+
'https://titan-json-rpc-seoul.titanlab.io',
|
19340
|
+
'https://titan-json-rpc-hongkong.titanlab.io'
|
19341
|
+
],
|
19215
19342
|
faucets: [],
|
19216
19343
|
nativeCurrency: { name: 'Titan tkx', symbol: 'TKX', decimals: 18 },
|
19217
19344
|
infoURL: 'https://titanlab.io',
|
@@ -19223,7 +19350,7 @@ const chainArray = [
|
|
19223
19350
|
explorers: [
|
19224
19351
|
{
|
19225
19352
|
name: 'Titan Explorer',
|
19226
|
-
url: 'https://
|
19353
|
+
url: 'https://tkxscan.io/Titan',
|
19227
19354
|
standard: 'none',
|
19228
19355
|
icon: 'titan_tkx'
|
19229
19356
|
}
|
@@ -19903,6 +20030,30 @@ const chainArray = [
|
|
19903
20030
|
}
|
19904
20031
|
]
|
19905
20032
|
},
|
20033
|
+
{
|
20034
|
+
name: 'KLAOS Nova',
|
20035
|
+
title: 'KLAOS Nova Test Chain',
|
20036
|
+
chain: 'KLAOS Nova',
|
20037
|
+
icon: 'k-laos',
|
20038
|
+
rpc: [
|
20039
|
+
'https://rpc.klaosnova.laosfoundation.io',
|
20040
|
+
'wss://rpc.klaosnova.laosfoundation.io'
|
20041
|
+
],
|
20042
|
+
faucets: [],
|
20043
|
+
nativeCurrency: { name: 'KLAOS', symbol: 'KLAOS', decimals: 18 },
|
20044
|
+
infoURL: 'https://www.laosfoundation.io/',
|
20045
|
+
shortName: 'klaosnova',
|
20046
|
+
chainId: 27181,
|
20047
|
+
networkId: 27181,
|
20048
|
+
explorers: [
|
20049
|
+
{
|
20050
|
+
name: 'blockscout',
|
20051
|
+
url: 'https://blockscout.klaosnova.laosfoundation.io',
|
20052
|
+
icon: 'k-laos',
|
20053
|
+
standard: 'EIP3091'
|
20054
|
+
}
|
20055
|
+
]
|
20056
|
+
},
|
19906
20057
|
{
|
19907
20058
|
name: 'Vizing Mainnet',
|
19908
20059
|
title: 'Vizing Mainnet',
|
@@ -21391,6 +21542,24 @@ const chainArray = [
|
|
21391
21542
|
}
|
21392
21543
|
]
|
21393
21544
|
},
|
21545
|
+
{
|
21546
|
+
name: 'Photon Testnet',
|
21547
|
+
chain: 'Photon',
|
21548
|
+
rpc: [ 'https://rpc-test.photonchain.io' ],
|
21549
|
+
faucets: [ 'https://photonchain.io/airdrop' ],
|
21550
|
+
nativeCurrency: { name: 'Photon', symbol: 'PTON', decimals: 18 },
|
21551
|
+
infoURL: 'https://photonchain.io',
|
21552
|
+
shortName: 'pton',
|
21553
|
+
chainId: 54555,
|
21554
|
+
networkId: 54555,
|
21555
|
+
explorers: [
|
21556
|
+
{
|
21557
|
+
name: 'photon_testnet_explorer',
|
21558
|
+
url: 'https://testnet.photonchain.io',
|
21559
|
+
standard: 'none'
|
21560
|
+
}
|
21561
|
+
]
|
21562
|
+
},
|
21394
21563
|
{
|
21395
21564
|
name: 'Titan',
|
21396
21565
|
chain: 'ETH',
|
@@ -25263,6 +25432,48 @@ const chainArray = [
|
|
25263
25432
|
chainId: 333999,
|
25264
25433
|
networkId: 333999
|
25265
25434
|
},
|
25435
|
+
{
|
25436
|
+
name: 'UPchain Testnet',
|
25437
|
+
chain: 'UPchain',
|
25438
|
+
rpc: [ 'https://rpc-testnet.uniport.network' ],
|
25439
|
+
faucets: [ 'https://faucet-testnet.uniport.network' ],
|
25440
|
+
nativeCurrency: { name: 'UBTC', symbol: 'UBTC', decimals: 18 },
|
25441
|
+
features: [ { name: 'EIP155' } ],
|
25442
|
+
infoURL: 'https://uniport.network',
|
25443
|
+
shortName: 'UPchain-testnet',
|
25444
|
+
chainId: 336655,
|
25445
|
+
networkId: 336655,
|
25446
|
+
icon: 'up',
|
25447
|
+
explorers: [
|
25448
|
+
{
|
25449
|
+
name: 'UPchain Testnet Explorer',
|
25450
|
+
url: 'https://explorer-testnet.uniport.network',
|
25451
|
+
icon: 'up',
|
25452
|
+
standard: 'EIP3091'
|
25453
|
+
}
|
25454
|
+
]
|
25455
|
+
},
|
25456
|
+
{
|
25457
|
+
name: 'UPchain Mainnet',
|
25458
|
+
chain: 'UPchain',
|
25459
|
+
rpc: [ 'https://rpc.uniport.network' ],
|
25460
|
+
nativeCurrency: { name: 'UBTC', symbol: 'UBTC', decimals: 18 },
|
25461
|
+
features: [ { name: 'EIP155' } ],
|
25462
|
+
faucets: [],
|
25463
|
+
infoURL: 'https://uniport.network',
|
25464
|
+
shortName: 'UPchain-mainnet',
|
25465
|
+
chainId: 336666,
|
25466
|
+
networkId: 336666,
|
25467
|
+
icon: 'up',
|
25468
|
+
explorers: [
|
25469
|
+
{
|
25470
|
+
name: 'UPchain Mainnet Explorer',
|
25471
|
+
url: 'https://explorer.uniport.network',
|
25472
|
+
icon: 'up',
|
25473
|
+
standard: 'EIP3091'
|
25474
|
+
}
|
25475
|
+
]
|
25476
|
+
},
|
25266
25477
|
{
|
25267
25478
|
name: 'Bitfinity Network Testnet',
|
25268
25479
|
chain: 'BFT',
|
@@ -25912,7 +26123,7 @@ const chainArray = [
|
|
25912
26123
|
rpc: [ 'https://subnets.avax.network/eclipsecha/testnet/rpc' ],
|
25913
26124
|
features: [ { name: 'EIP1559' } ],
|
25914
26125
|
faucets: [],
|
25915
|
-
nativeCurrency: { name: 'Eclipse', symbol: '
|
26126
|
+
nativeCurrency: { name: 'Eclipse', symbol: 'ECLPS', decimals: 18 },
|
25916
26127
|
infoURL: 'http://eclipsenet.io',
|
25917
26128
|
shortName: 'eclipset',
|
25918
26129
|
chainId: 555666,
|
@@ -27179,6 +27390,46 @@ const chainArray = [
|
|
27179
27390
|
]
|
27180
27391
|
}
|
27181
27392
|
},
|
27393
|
+
{
|
27394
|
+
name: 'Safe(AnWang) Mainnet',
|
27395
|
+
chain: 'Safe(AnWang)',
|
27396
|
+
icon: 'safe-anwang',
|
27397
|
+
rpc: [ 'https://rpc.anwang.com' ],
|
27398
|
+
faucets: [],
|
27399
|
+
nativeCurrency: { name: 'SAFE(AnWang)', symbol: 'SAFE', decimals: 18 },
|
27400
|
+
infoURL: 'https://www.anwang.com',
|
27401
|
+
shortName: 'SafeMainnet',
|
27402
|
+
chainId: 6666665,
|
27403
|
+
networkId: 6666665,
|
27404
|
+
explorers: [
|
27405
|
+
{
|
27406
|
+
name: 'Safe(AnWang) Explorer',
|
27407
|
+
url: 'http://safe4.anwang.com',
|
27408
|
+
icon: 'safe-anwang',
|
27409
|
+
standard: 'EIP3091'
|
27410
|
+
}
|
27411
|
+
]
|
27412
|
+
},
|
27413
|
+
{
|
27414
|
+
name: 'Safe(AnWang) Testnet',
|
27415
|
+
chain: 'Safe(AnWang)',
|
27416
|
+
icon: 'safe-anwang',
|
27417
|
+
rpc: [ 'https://rpc-testnet.anwang.com' ],
|
27418
|
+
faucets: [],
|
27419
|
+
nativeCurrency: { name: 'SAFE(AnWang)', symbol: 'SAFE', decimals: 18 },
|
27420
|
+
infoURL: 'https://www.anwang.com',
|
27421
|
+
shortName: 'SafeTestnet',
|
27422
|
+
chainId: 6666666,
|
27423
|
+
networkId: 6666666,
|
27424
|
+
explorers: [
|
27425
|
+
{
|
27426
|
+
name: 'Safe(AnWang) Testnet Explorer',
|
27427
|
+
url: 'http://safe4-testnet.anwang.com',
|
27428
|
+
icon: 'safe-anwang',
|
27429
|
+
standard: 'EIP3091'
|
27430
|
+
}
|
27431
|
+
]
|
27432
|
+
},
|
27182
27433
|
{
|
27183
27434
|
name: 'Saakuru Mainnet',
|
27184
27435
|
chain: 'Saakuru',
|
@@ -28152,6 +28403,38 @@ const chainArray = [
|
|
28152
28403
|
networkId: 99415706,
|
28153
28404
|
slip44: 1
|
28154
28405
|
},
|
28406
|
+
{
|
28407
|
+
name: 'Cyber Testnet',
|
28408
|
+
chain: 'Cyber',
|
28409
|
+
rpc: [
|
28410
|
+
'https://cyber-testnet.alt.technology/',
|
28411
|
+
'wss://cyber-testnet.alt.technology/ws'
|
28412
|
+
],
|
28413
|
+
faucets: [],
|
28414
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
28415
|
+
icon: 'cyber',
|
28416
|
+
infoURL: 'https://cyber.co/',
|
28417
|
+
shortName: 'cysep',
|
28418
|
+
chainId: 111557560,
|
28419
|
+
networkId: 111557560,
|
28420
|
+
explorers: [
|
28421
|
+
{
|
28422
|
+
name: 'Cyber Testnet Explorer',
|
28423
|
+
url: 'https://testnet.cyberscan.co',
|
28424
|
+
icon: 'blockscout',
|
28425
|
+
standard: 'EIP3091'
|
28426
|
+
}
|
28427
|
+
],
|
28428
|
+
parent: {
|
28429
|
+
type: 'L2',
|
28430
|
+
chain: 'eip155-11155111',
|
28431
|
+
bridges: [
|
28432
|
+
{
|
28433
|
+
url: 'https://op-bridge.alt.technology/deposit?id=111557560'
|
28434
|
+
}
|
28435
|
+
]
|
28436
|
+
}
|
28437
|
+
},
|
28155
28438
|
{
|
28156
28439
|
name: 'OP Celestia Raspberry',
|
28157
28440
|
title: 'OP Celestia Raspberry Testnet',
|