eth-chainlist 0.0.432 → 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 +8 -0
- package/data/chain.js +53 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
3
11
|
### 0.0.432 (2024-06-16)
|
4
12
|
|
5
13
|
|
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',
|
@@ -14283,6 +14312,7 @@ const chainArray = [
|
|
14283
14312
|
{
|
14284
14313
|
name: 'iChain Network',
|
14285
14314
|
chain: 'iChain',
|
14315
|
+
icon: 'iChain',
|
14286
14316
|
rpc: [ 'https://rpc.ichainscan.com' ],
|
14287
14317
|
faucets: [],
|
14288
14318
|
nativeCurrency: { name: 'ISLAMICOIN', symbol: 'ISLAMI', decimals: 18 },
|
@@ -14298,6 +14328,25 @@ const chainArray = [
|
|
14298
14328
|
}
|
14299
14329
|
]
|
14300
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
|
+
},
|
14301
14350
|
{
|
14302
14351
|
name: 'Jouleverse Mainnet',
|
14303
14352
|
chain: 'Jouleverse',
|