eth-chainlist 0.0.380 → 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 +8 -0
- package/data/chain.js +131 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
3
11
|
### 0.0.380 (2024-04-17)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -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',
|
@@ -15667,6 +15747,20 @@ const chainArray = [
|
|
15667
15747
|
}
|
15668
15748
|
]
|
15669
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
|
+
},
|
15670
15764
|
{
|
15671
15765
|
name: 'ADIL Testnet',
|
15672
15766
|
chain: 'ADIL',
|
@@ -26029,7 +26123,7 @@ const chainArray = [
|
|
26029
26123
|
rpc: [ 'https://subnets.avax.network/eclipsecha/testnet/rpc' ],
|
26030
26124
|
features: [ { name: 'EIP1559' } ],
|
26031
26125
|
faucets: [],
|
26032
|
-
nativeCurrency: { name: 'Eclipse', symbol: '
|
26126
|
+
nativeCurrency: { name: 'Eclipse', symbol: 'ECLPS', decimals: 18 },
|
26033
26127
|
infoURL: 'http://eclipsenet.io',
|
26034
26128
|
shortName: 'eclipset',
|
26035
26129
|
chainId: 555666,
|
@@ -28309,6 +28403,38 @@ const chainArray = [
|
|
28309
28403
|
networkId: 99415706,
|
28310
28404
|
slip44: 1
|
28311
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
|
+
},
|
28312
28438
|
{
|
28313
28439
|
name: 'OP Celestia Raspberry',
|
28314
28440
|
title: 'OP Celestia Raspberry Testnet',
|