eth-chainlist 0.0.431 → 0.0.433
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 +62 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.433 (2024-06-17)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.432 ([e5090f8](https://github.com/poowf/eth-chainlist/commit/e5090f885cf80971e6789d6c0c1cf31639299de1))
|
9
|
+
* update chain data ([2ac67ee](https://github.com/poowf/eth-chainlist/commit/2ac67ee4b17b8f86e31c60ba334677052e96c278))
|
10
|
+
|
11
|
+
### 0.0.432 (2024-06-16)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.431 ([49f1a82](https://github.com/poowf/eth-chainlist/commit/49f1a823b5037e33bd89e03a9bf191cfa9f8da79))
|
17
|
+
* update chain data ([43f3d76](https://github.com/poowf/eth-chainlist/commit/43f3d76473f6c74ac6b6c9e00adc8d0094823281))
|
18
|
+
|
3
19
|
### 0.0.431 (2024-06-15)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3990,7 +3990,8 @@ const chainArray = [
|
|
3990
3990
|
'https://mainnet.b2-rpc.com',
|
3991
3991
|
'https://rpc.bsquared.network',
|
3992
3992
|
'https://b2-mainnet.alt.technology',
|
3993
|
-
'https://b2-mainnet-public.s.chainbase.com'
|
3993
|
+
'https://b2-mainnet-public.s.chainbase.com',
|
3994
|
+
'https://rpc.ankr.com/b2'
|
3994
3995
|
],
|
3995
3996
|
faucets: [],
|
3996
3997
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
@@ -8918,7 +8919,11 @@ const chainArray = [
|
|
8918
8919
|
name: 'B2 Testnet',
|
8919
8920
|
title: 'B2 Testnet',
|
8920
8921
|
chain: 'Habitat',
|
8921
|
-
rpc: [
|
8922
|
+
rpc: [
|
8923
|
+
'https://b2-testnet.alt.technology',
|
8924
|
+
'https://rpc.ankr.com/b2_testnet',
|
8925
|
+
'https://testnet-rpc.bsquared.network'
|
8926
|
+
],
|
8922
8927
|
faucets: [],
|
8923
8928
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
8924
8929
|
infoURL: 'https://www.bsquared.network',
|
@@ -9304,15 +9309,16 @@ const chainArray = [
|
|
9304
9309
|
icon: 'cycle'
|
9305
9310
|
},
|
9306
9311
|
{
|
9307
|
-
name: 'Hybrid Testnet',
|
9312
|
+
name: 'Hybrid Testnet (Deprecated)',
|
9308
9313
|
chain: 'HYB',
|
9309
9314
|
icon: 'hybridIcon',
|
9310
9315
|
rpc: [ 'https://testnet-rpc.buildonhybrid.com' ],
|
9311
9316
|
faucets: [],
|
9312
9317
|
nativeCurrency: { name: 'Hybrid', symbol: 'HYB', decimals: 18 },
|
9313
9318
|
infoURL: 'https://buildonhybrid.com',
|
9314
|
-
shortName: '
|
9319
|
+
shortName: 'hyb_deprecated',
|
9315
9320
|
chainId: 1224,
|
9321
|
+
status: 'deprecated',
|
9316
9322
|
networkId: 1224,
|
9317
9323
|
explorers: [
|
9318
9324
|
{
|
@@ -9322,6 +9328,29 @@ const chainArray = [
|
|
9322
9328
|
}
|
9323
9329
|
]
|
9324
9330
|
},
|
9331
|
+
{
|
9332
|
+
name: 'Hybrid Testnet',
|
9333
|
+
chain: 'HYB',
|
9334
|
+
icon: 'hybridIcon',
|
9335
|
+
rpc: [
|
9336
|
+
'https://hybrid-testnet.rpc.caldera.xyz/http',
|
9337
|
+
'wss://hybrid-testnet.rpc.caldera.xyz/ws'
|
9338
|
+
],
|
9339
|
+
faucets: [],
|
9340
|
+
nativeCurrency: { name: 'Hybrid', symbol: 'HYB', decimals: 18 },
|
9341
|
+
infoURL: 'https://buildonhybrid.com',
|
9342
|
+
shortName: 'hyb',
|
9343
|
+
chainId: 1225,
|
9344
|
+
networkId: 1225,
|
9345
|
+
explorers: [
|
9346
|
+
{
|
9347
|
+
name: 'Hybrid Testnet',
|
9348
|
+
url: 'https://explorer.buildonhybrid.com',
|
9349
|
+
standard: 'EIP3091'
|
9350
|
+
}
|
9351
|
+
],
|
9352
|
+
status: 'active'
|
9353
|
+
},
|
9325
9354
|
{
|
9326
9355
|
name: 'Exzo Network Mainnet',
|
9327
9356
|
chain: 'EXZO',
|
@@ -12426,7 +12455,10 @@ const chainArray = [
|
|
12426
12455
|
{
|
12427
12456
|
name: 'BigShortBets Testnet',
|
12428
12457
|
chain: 'BIGSB Testnet',
|
12429
|
-
rpc: [
|
12458
|
+
rpc: [
|
12459
|
+
'https://test-market.bigsb.network',
|
12460
|
+
'wss://test-market.bigsb.network'
|
12461
|
+
],
|
12430
12462
|
faucets: [],
|
12431
12463
|
nativeCurrency: { name: 'Dolarz', symbol: 'Dolarz', decimals: 18 },
|
12432
12464
|
infoURL: 'https://bigshortbets.com/',
|
@@ -14280,6 +14312,7 @@ const chainArray = [
|
|
14280
14312
|
{
|
14281
14313
|
name: 'iChain Network',
|
14282
14314
|
chain: 'iChain',
|
14315
|
+
icon: 'iChain',
|
14283
14316
|
rpc: [ 'https://rpc.ichainscan.com' ],
|
14284
14317
|
faucets: [],
|
14285
14318
|
nativeCurrency: { name: 'ISLAMICOIN', symbol: 'ISLAMI', decimals: 18 },
|
@@ -14295,6 +14328,25 @@ const chainArray = [
|
|
14295
14328
|
}
|
14296
14329
|
]
|
14297
14330
|
},
|
14331
|
+
{
|
14332
|
+
name: 'iChain Testnet',
|
14333
|
+
chain: 'iChain Testnet',
|
14334
|
+
icon: 'iChain',
|
14335
|
+
rpc: [ 'https://istanbul.ichainscan.com' ],
|
14336
|
+
faucets: [],
|
14337
|
+
nativeCurrency: { name: 'ISLAMICOIN', symbol: 'ISLAMI', decimals: 18 },
|
14338
|
+
infoURL: 'https://islamicoin.finance',
|
14339
|
+
shortName: 'ISLAMIT',
|
14340
|
+
chainId: 3645,
|
14341
|
+
networkId: 3645,
|
14342
|
+
explorers: [
|
14343
|
+
{
|
14344
|
+
name: 'iChainscan',
|
14345
|
+
url: 'https://test.ichainscan.com',
|
14346
|
+
standard: 'EIP3091'
|
14347
|
+
}
|
14348
|
+
]
|
14349
|
+
},
|
14298
14350
|
{
|
14299
14351
|
name: 'Jouleverse Mainnet',
|
14300
14352
|
chain: 'Jouleverse',
|
@@ -24461,7 +24513,7 @@ const chainArray = [
|
|
24461
24513
|
networkId: 57451,
|
24462
24514
|
explorers: [
|
24463
24515
|
{
|
24464
|
-
name: '
|
24516
|
+
name: 'coinsecnetwork',
|
24465
24517
|
url: 'https://explorer.coinsec.network',
|
24466
24518
|
standard: 'EIP3091'
|
24467
24519
|
}
|
@@ -25476,7 +25528,10 @@ const chainArray = [
|
|
25476
25528
|
name: 'BORAchain mainnet',
|
25477
25529
|
chain: 'BORA',
|
25478
25530
|
icon: 'bora',
|
25479
|
-
rpc: [
|
25531
|
+
rpc: [
|
25532
|
+
'https://public-node.api.boraportal.com/bora/mainnet',
|
25533
|
+
'https://public-node.api.boraportal.io/bora/mainnet'
|
25534
|
+
],
|
25480
25535
|
faucets: [],
|
25481
25536
|
nativeCurrency: { name: 'BORA', symbol: 'BORA', decimals: 18 },
|
25482
25537
|
infoURL: 'https://www.boraportal.com',
|