eth-chainlist 0.0.586 → 0.0.588
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 +132 -36
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.588 (2025-01-16)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.587 ([443880a](https://github.com/poowf/eth-chainlist/commit/443880a8e91dbb34ef923b7ed107e699452ddb9f))
|
9
|
+
* update chain data ([92e91c9](https://github.com/poowf/eth-chainlist/commit/92e91c95e93aef8f3a232e77760a3b9e406643fa))
|
10
|
+
|
11
|
+
### 0.0.587 (2025-01-15)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.586 ([db06f26](https://github.com/poowf/eth-chainlist/commit/db06f2695dc5d826ab68ee70aca5bea4693c66f5))
|
17
|
+
* update chain data ([86b6eef](https://github.com/poowf/eth-chainlist/commit/86b6eef8f56875c338dd6947bb138407a382ae9e))
|
18
|
+
|
3
19
|
### 0.0.586 (2025-01-14)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3576,10 +3576,16 @@ const chainArray = [
|
|
3576
3576
|
faucets: [],
|
3577
3577
|
nativeCurrency: { name: 'HashKey EcoPoints', symbol: 'HSK', decimals: 18 },
|
3578
3578
|
infoURL: 'https://hsk.xyz',
|
3579
|
-
shortName: '
|
3579
|
+
shortName: 'hsk',
|
3580
3580
|
chainId: 177,
|
3581
3581
|
networkId: 177,
|
3582
3582
|
explorers: [
|
3583
|
+
{
|
3584
|
+
name: 'blockscout',
|
3585
|
+
url: 'https://hashkey.blockscout.com',
|
3586
|
+
icon: 'blockscout',
|
3587
|
+
standard: 'EIP3091'
|
3588
|
+
},
|
3583
3589
|
{
|
3584
3590
|
name: 'blockscout',
|
3585
3591
|
url: 'https://explorer.hsk.xyz',
|
@@ -4770,6 +4776,7 @@ const chainArray = [
|
|
4770
4776
|
'https://mainnet-rpc-04.swanchain.org'
|
4771
4777
|
],
|
4772
4778
|
faucets: [],
|
4779
|
+
icon: 'swan',
|
4773
4780
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
4774
4781
|
infoURL: 'https://swanchain.io/',
|
4775
4782
|
shortName: 'Swan',
|
@@ -4861,7 +4868,7 @@ const chainArray = [
|
|
4861
4868
|
name: 'Guru Network',
|
4862
4869
|
chain: 'GURU',
|
4863
4870
|
icon: 'GuruNetwork',
|
4864
|
-
rpc: [ 'https://rpc.gurunetwork.ai
|
4871
|
+
rpc: [ 'https://rpc-main.gurunetwork.ai' ],
|
4865
4872
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4866
4873
|
faucets: [],
|
4867
4874
|
nativeCurrency: { name: 'Guru', symbol: 'GURU', decimals: 18 },
|
@@ -4881,7 +4888,7 @@ const chainArray = [
|
|
4881
4888
|
name: 'Guru Network Testnet',
|
4882
4889
|
chain: 'tGURU',
|
4883
4890
|
icon: 'GuruNetwork',
|
4884
|
-
rpc: [ 'https://rpc.gurunetwork.ai
|
4891
|
+
rpc: [ 'https://rpc-test.gurunetwork.ai' ],
|
4885
4892
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4886
4893
|
faucets: [ 'https://v2.dex.guru/season-pass/faucet' ],
|
4887
4894
|
nativeCurrency: { name: 'testGURU', symbol: 'tGURU', decimals: 18 },
|
@@ -9636,32 +9643,18 @@ const chainArray = [
|
|
9636
9643
|
]
|
9637
9644
|
},
|
9638
9645
|
{
|
9639
|
-
name: '
|
9640
|
-
chain: '
|
9641
|
-
rpc: [
|
9642
|
-
|
9643
|
-
'wss://ws.lnscan.org',
|
9644
|
-
'https://rpc.lnscan.org'
|
9645
|
-
],
|
9646
|
+
name: 'Hyperliquid EVM Testnet',
|
9647
|
+
chain: 'HYPE',
|
9648
|
+
rpc: [ 'https://api.hyperliquid-testnet.xyz/evm' ],
|
9649
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
9646
9650
|
faucets: [],
|
9647
|
-
nativeCurrency: { name: '
|
9648
|
-
infoURL: 'https://
|
9649
|
-
shortName: '
|
9651
|
+
nativeCurrency: { name: 'HYPE', symbol: 'HYPE', decimals: 18 },
|
9652
|
+
infoURL: 'https://hyperfoundation.org/',
|
9653
|
+
shortName: 'hype-evm-testnet',
|
9650
9654
|
chainId: 998,
|
9651
9655
|
networkId: 998,
|
9652
|
-
|
9653
|
-
|
9654
|
-
{
|
9655
|
-
name: 'blockscout',
|
9656
|
-
url: 'https://explorer.luckynetwork.org',
|
9657
|
-
standard: 'none'
|
9658
|
-
},
|
9659
|
-
{
|
9660
|
-
name: 'expedition',
|
9661
|
-
url: 'https://lnscan.org',
|
9662
|
-
standard: 'none'
|
9663
|
-
}
|
9664
|
-
]
|
9656
|
+
explorers: [],
|
9657
|
+
redFlags: [ 'reusedChainId' ]
|
9665
9658
|
},
|
9666
9659
|
{
|
9667
9660
|
name: 'Wanchain Testnet',
|
@@ -13169,15 +13162,36 @@ const chainArray = [
|
|
13169
13162
|
title: 'Soneium mainnet',
|
13170
13163
|
chain: 'ETH',
|
13171
13164
|
icon: 'soneium',
|
13172
|
-
rpc: [],
|
13165
|
+
rpc: [ 'https://rpc.soneium.org' ],
|
13173
13166
|
faucets: [],
|
13174
13167
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
13175
13168
|
infoURL: 'https://soneium.org',
|
13176
13169
|
chainId: 1868,
|
13177
13170
|
networkId: 1868,
|
13178
|
-
status: '
|
13179
|
-
explorers: [
|
13180
|
-
|
13171
|
+
status: 'active',
|
13172
|
+
explorers: [
|
13173
|
+
{
|
13174
|
+
name: 'blockscout',
|
13175
|
+
url: 'https://soneium.blockscout.com',
|
13176
|
+
icon: 'blockscout',
|
13177
|
+
standard: 'EIP3091'
|
13178
|
+
},
|
13179
|
+
{
|
13180
|
+
name: 'OKLink',
|
13181
|
+
url: 'https://www.okx.com/web3/explorer/soneium',
|
13182
|
+
standard: 'EIP3091'
|
13183
|
+
},
|
13184
|
+
{
|
13185
|
+
name: 'SlamVision',
|
13186
|
+
url: 'https://soneium.slam.vision',
|
13187
|
+
standard: 'none'
|
13188
|
+
}
|
13189
|
+
],
|
13190
|
+
parent: {
|
13191
|
+
type: 'L2',
|
13192
|
+
chain: 'eip155-1',
|
13193
|
+
bridges: [ { url: 'https://superbridge.app/soneium' } ]
|
13194
|
+
}
|
13181
13195
|
},
|
13182
13196
|
{
|
13183
13197
|
name: 'Whitechain',
|
@@ -22488,6 +22502,19 @@ const chainArray = [
|
|
22488
22502
|
}
|
22489
22503
|
]
|
22490
22504
|
},
|
22505
|
+
{
|
22506
|
+
name: 'XProtocol',
|
22507
|
+
chain: 'XPROTOCOL',
|
22508
|
+
rpc: [],
|
22509
|
+
faucets: [],
|
22510
|
+
nativeCurrency: { name: 'Kick', symbol: 'KICK', decimals: 18 },
|
22511
|
+
shortName: 'xprotocol',
|
22512
|
+
chainId: 8386,
|
22513
|
+
networkId: 8386,
|
22514
|
+
status: 'incubating',
|
22515
|
+
parent: { type: 'L2', chain: 'eip155-8453' },
|
22516
|
+
infoURL: 'https://xprotocol.org/'
|
22517
|
+
},
|
22491
22518
|
{
|
22492
22519
|
name: 'Dracones Financial Services',
|
22493
22520
|
title: 'The Dracones Mainnet',
|
@@ -22798,8 +22825,8 @@ const chainArray = [
|
|
22798
22825
|
{
|
22799
22826
|
name: 'Hydra Chain Testnet',
|
22800
22827
|
chain: 'HYDRA',
|
22801
|
-
rpc: [ 'https://rpc
|
22802
|
-
faucets: [ 'https://
|
22828
|
+
rpc: [ 'https://rpc-testnet.hydrachain.org' ],
|
22829
|
+
faucets: [ 'https://testnetapp.hydrachain.org/faucet' ],
|
22803
22830
|
nativeCurrency: { name: 'tHydra', symbol: 'tHYDRA', decimals: 18 },
|
22804
22831
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
22805
22832
|
infoURL: 'https://hydrachain.org',
|
@@ -26247,8 +26274,8 @@ const chainArray = [
|
|
26247
26274
|
networkId: 16180,
|
26248
26275
|
explorers: [
|
26249
26276
|
{
|
26250
|
-
name: '
|
26251
|
-
url: 'https://
|
26277
|
+
name: 'PLYR PHI Explorer',
|
26278
|
+
url: 'https://explorer.plyr.network',
|
26252
26279
|
standard: 'EIP3091'
|
26253
26280
|
}
|
26254
26281
|
]
|
@@ -29310,6 +29337,25 @@ const chainArray = [
|
|
29310
29337
|
chainId: 42069,
|
29311
29338
|
networkId: 42069
|
29312
29339
|
},
|
29340
|
+
{
|
29341
|
+
name: 'WMC Testnet',
|
29342
|
+
chain: 'WMC',
|
29343
|
+
icon: 'wmc',
|
29344
|
+
rpc: [ 'https://rpc-testnet-base.worldmobile.net' ],
|
29345
|
+
faucets: [ 'https://faucet-testnet-base.worldmobile.net' ],
|
29346
|
+
nativeCurrency: { name: 'WMTx', symbol: 'WMTx', decimals: 18 },
|
29347
|
+
infoURL: 'https://worldmobiletoken.com',
|
29348
|
+
shortName: 'wmtx',
|
29349
|
+
chainId: 42070,
|
29350
|
+
networkId: 42070,
|
29351
|
+
explorers: [
|
29352
|
+
{
|
29353
|
+
name: 'WMC Explorer',
|
29354
|
+
url: 'https://explorer-testnet-base.worldmobile.net',
|
29355
|
+
standard: 'EIP3091'
|
29356
|
+
}
|
29357
|
+
]
|
29358
|
+
},
|
29313
29359
|
{
|
29314
29360
|
name: 'AgentLayer Testnet',
|
29315
29361
|
chain: 'AgentLayer',
|
@@ -30296,6 +30342,24 @@ const chainArray = [
|
|
30296
30342
|
],
|
30297
30343
|
parent: { type: 'L2', chain: 'eip155-11155111' }
|
30298
30344
|
},
|
30345
|
+
{
|
30346
|
+
name: 'STB Testnet',
|
30347
|
+
chain: 'STB Testnet',
|
30348
|
+
rpc: [ 'https://rpc.quorum.sps.dev.kode.ru/' ],
|
30349
|
+
faucets: [],
|
30350
|
+
nativeCurrency: { name: 'STB', symbol: 'STB', decimals: 18 },
|
30351
|
+
infoURL: '',
|
30352
|
+
shortName: 'stb-testnet',
|
30353
|
+
chainId: 50505,
|
30354
|
+
networkId: 50505,
|
30355
|
+
explorers: [
|
30356
|
+
{
|
30357
|
+
name: 'stb-testnet',
|
30358
|
+
url: 'https://explorer.quorum.sps.dev.kode.ru',
|
30359
|
+
standard: 'none'
|
30360
|
+
}
|
30361
|
+
]
|
30362
|
+
},
|
30299
30363
|
{
|
30300
30364
|
name: 'Erbie Mainnet',
|
30301
30365
|
chain: 'Erbie',
|
@@ -31523,8 +31587,8 @@ const chainArray = [
|
|
31523
31587
|
slip44: 1,
|
31524
31588
|
explorers: [
|
31525
31589
|
{
|
31526
|
-
name: '
|
31527
|
-
url: 'https://
|
31590
|
+
name: 'PLYR TAU Explorer',
|
31591
|
+
url: 'https://explorer-testnet.plyr.network',
|
31528
31592
|
standard: 'EIP3091'
|
31529
31593
|
}
|
31530
31594
|
]
|
@@ -32987,6 +33051,20 @@ const chainArray = [
|
|
32987
33051
|
icon: 'EsaCoins',
|
32988
33052
|
explorers: []
|
32989
33053
|
},
|
33054
|
+
{
|
33055
|
+
name: 'Xprotocol Sepolia',
|
33056
|
+
chainId: 83868,
|
33057
|
+
shortName: 'xprotocolsepolia',
|
33058
|
+
chain: 'Xprotocol Sepolia',
|
33059
|
+
networkId: 83868,
|
33060
|
+
nativeCurrency: { name: 'KICK Testnet Token', symbol: 'KICK', decimals: 18 },
|
33061
|
+
rpc: [],
|
33062
|
+
faucets: [],
|
33063
|
+
explorers: [],
|
33064
|
+
status: 'incubating',
|
33065
|
+
parent: { type: 'L2', chain: 'eip155-84532' },
|
33066
|
+
infoURL: 'https://xprotocol.org/'
|
33067
|
+
},
|
32990
33068
|
{
|
32991
33069
|
name: 'ZEDXION',
|
32992
33070
|
chain: 'ZEDXION',
|
@@ -38206,6 +38284,24 @@ const chainArray = [
|
|
38206
38284
|
}
|
38207
38285
|
]
|
38208
38286
|
},
|
38287
|
+
{
|
38288
|
+
name: 'Fidesinnova',
|
38289
|
+
chain: 'Fidesinnova',
|
38290
|
+
rpc: [ 'https://fidesf1-rpc.fidesinnova.io' ],
|
38291
|
+
faucets: [],
|
38292
|
+
nativeCurrency: { name: 'Fidesinnova', symbol: 'FDS', decimals: 18 },
|
38293
|
+
infoURL: 'https://fidesinnova1.gitbook.io/fidesinnova',
|
38294
|
+
shortName: 'Fidesinnova',
|
38295
|
+
chainId: 706883,
|
38296
|
+
networkId: 706883,
|
38297
|
+
explorers: [
|
38298
|
+
{
|
38299
|
+
name: 'Fidesinnova Blockchain Explorer',
|
38300
|
+
url: 'https://explorer.fidesinnova.io',
|
38301
|
+
standard: 'none'
|
38302
|
+
}
|
38303
|
+
]
|
38304
|
+
},
|
38209
38305
|
{
|
38210
38306
|
name: 'Tiltyard Mainnet Subnet',
|
38211
38307
|
chain: 'TILTYARD',
|