eth-chainlist 0.0.638 → 0.0.639
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 +79 -48
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.639 (2025-03-14)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.638 ([d0d516a](https://github.com/poowf/eth-chainlist/commit/d0d516aea9ad373f63b4e0edd457f982ee753999))
|
9
|
+
* update chain data ([33dd715](https://github.com/poowf/eth-chainlist/commit/33dd7153637557ea2f4bdf5da8e0ccb179b79b73))
|
10
|
+
|
3
11
|
### 0.0.638 (2025-03-13)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -5282,7 +5282,7 @@ const chainArray = [
|
|
5282
5282
|
name: 'Hedera Mainnet',
|
5283
5283
|
chain: 'Hedera',
|
5284
5284
|
icon: 'hedera',
|
5285
|
-
rpc: [ 'https://mainnet.hashio.io/api' ],
|
5285
|
+
rpc: [ 'https://mainnet.hashio.io/api', 'https://hedera.linkpool.pro' ],
|
5286
5286
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
5287
5287
|
faucets: [],
|
5288
5288
|
nativeCurrency: { name: 'hbar', symbol: 'HBAR', decimals: 18 },
|
@@ -5292,11 +5292,6 @@ const chainArray = [
|
|
5292
5292
|
networkId: 295,
|
5293
5293
|
slip44: 3030,
|
5294
5294
|
explorers: [
|
5295
|
-
{
|
5296
|
-
name: 'HashScan',
|
5297
|
-
url: 'https://hashscan.io/mainnet',
|
5298
|
-
standard: 'EIP3091'
|
5299
|
-
},
|
5300
5295
|
{
|
5301
5296
|
name: 'Arkhia Explorer',
|
5302
5297
|
url: 'https://explorer.arkhia.io',
|
@@ -5311,11 +5306,6 @@ const chainArray = [
|
|
5311
5306
|
name: 'Hedera Explorer',
|
5312
5307
|
url: 'https://hederaexplorer.io',
|
5313
5308
|
standard: 'none'
|
5314
|
-
},
|
5315
|
-
{
|
5316
|
-
name: 'Ledger Works Explore',
|
5317
|
-
url: 'https://explore.lworks.io',
|
5318
|
-
standard: 'none'
|
5319
5309
|
}
|
5320
5310
|
]
|
5321
5311
|
},
|
@@ -15830,7 +15820,8 @@ const chainArray = [
|
|
15830
15820
|
'https://rpc.ankr.com/atleta_olympia',
|
15831
15821
|
'wss://testnet-rpc.atleta.network',
|
15832
15822
|
'https://atleta-testnet.htw.tech/',
|
15833
|
-
'https://public-atleta.nownodes.io'
|
15823
|
+
'https://public-atleta.nownodes.io',
|
15824
|
+
'https://public-atla-testnet.fastnode.io'
|
15834
15825
|
],
|
15835
15826
|
faucets: [ 'https://app-olympia.atleta.network/faucet' ],
|
15836
15827
|
nativeCurrency: { name: 'Atla Olympia', symbol: 'ATLA', decimals: 18 },
|
@@ -22092,7 +22083,7 @@ const chainArray = [
|
|
22092
22083
|
name: 'Rarimo',
|
22093
22084
|
title: 'Rarimo Mainnet',
|
22094
22085
|
chain: 'ETH',
|
22095
|
-
rpc: [],
|
22086
|
+
rpc: [ 'https://l2.rarimo.com', 'wss://wss.l2.rarimo.com' ],
|
22096
22087
|
faucets: [],
|
22097
22088
|
nativeCurrency: { name: 'Rarimo Ether', symbol: 'ETH', decimals: 18 },
|
22098
22089
|
infoURL: 'https://rarimo.com',
|
@@ -22100,9 +22091,20 @@ const chainArray = [
|
|
22100
22091
|
chainId: 7368,
|
22101
22092
|
networkId: 7368,
|
22102
22093
|
icon: 'rarimo',
|
22103
|
-
parent: {
|
22104
|
-
|
22105
|
-
|
22094
|
+
parent: {
|
22095
|
+
type: 'L2',
|
22096
|
+
chain: 'eip155-1',
|
22097
|
+
bridges: [ { url: 'https://l2bridge.rarimo.com' } ]
|
22098
|
+
},
|
22099
|
+
explorers: [
|
22100
|
+
{
|
22101
|
+
name: 'Blockscout',
|
22102
|
+
url: 'https://scan.rarimo.com',
|
22103
|
+
standard: 'EIP3091',
|
22104
|
+
icon: 'rarimo'
|
22105
|
+
}
|
22106
|
+
],
|
22107
|
+
status: 'active'
|
22106
22108
|
},
|
22107
22109
|
{
|
22108
22110
|
name: 'Raba Network Mainnet',
|
@@ -23066,13 +23068,13 @@ const chainArray = [
|
|
23066
23068
|
explorers: []
|
23067
23069
|
},
|
23068
23070
|
{
|
23069
|
-
name: '
|
23070
|
-
chain: '
|
23071
|
+
name: 'ZenChain',
|
23072
|
+
chain: 'ZTC',
|
23071
23073
|
icon: 'zenchain',
|
23072
23074
|
rpc: [],
|
23073
23075
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
23074
23076
|
faucets: [],
|
23075
|
-
nativeCurrency: { name: '
|
23077
|
+
nativeCurrency: { name: 'ZTC', symbol: 'ZTC', decimals: 18 },
|
23076
23078
|
infoURL: 'https://zenchain.io',
|
23077
23079
|
shortName: 'zen',
|
23078
23080
|
chainId: 8108,
|
@@ -23379,8 +23381,8 @@ const chainArray = [
|
|
23379
23381
|
explorers: []
|
23380
23382
|
},
|
23381
23383
|
{
|
23382
|
-
name: '
|
23383
|
-
chain: '
|
23384
|
+
name: 'ZenChain Testnet',
|
23385
|
+
chain: 'ZTC',
|
23384
23386
|
icon: 'zenchain',
|
23385
23387
|
rpc: [
|
23386
23388
|
'https://zenchain-testnet.api.onfinality.io/public',
|
@@ -23388,7 +23390,7 @@ const chainArray = [
|
|
23388
23390
|
],
|
23389
23391
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
23390
23392
|
faucets: [ 'https://facuet.zenchain.io' ],
|
23391
|
-
nativeCurrency: { name: '
|
23393
|
+
nativeCurrency: { name: 'ZTC', symbol: 'ZTC', decimals: 18 },
|
23392
23394
|
infoURL: 'https://zenchain.io',
|
23393
23395
|
shortName: 'zentest',
|
23394
23396
|
chainId: 8408,
|
@@ -25859,6 +25861,21 @@ const chainArray = [
|
|
25859
25861
|
]
|
25860
25862
|
}
|
25861
25863
|
},
|
25864
|
+
{
|
25865
|
+
name: 'Fuse Flash Testnet',
|
25866
|
+
chain: 'Fuse Flash',
|
25867
|
+
rpc: [],
|
25868
|
+
faucets: [ 'https://faucet.quicknode.com' ],
|
25869
|
+
nativeCurrency: { name: 'Fuse', symbol: 'FUSE', decimals: 18 },
|
25870
|
+
features: [ { name: 'EIP155' } ],
|
25871
|
+
infoURL: 'https://www.fuse.io',
|
25872
|
+
shortName: 'fuseflash',
|
25873
|
+
chainId: 10920,
|
25874
|
+
networkId: 10920,
|
25875
|
+
icon: 'fuse',
|
25876
|
+
parent: { type: 'L2', chain: 'eip155-11155111' },
|
25877
|
+
status: 'incubating'
|
25878
|
+
},
|
25862
25879
|
{
|
25863
25880
|
name: 'Quadrans Blockchain',
|
25864
25881
|
chain: 'QDC',
|
@@ -26192,23 +26209,23 @@ const chainArray = [
|
|
26192
26209
|
]
|
26193
26210
|
},
|
26194
26211
|
{
|
26195
|
-
name: '
|
26196
|
-
chain: '
|
26212
|
+
name: 'GEB Mainnet',
|
26213
|
+
chain: 'GEB',
|
26197
26214
|
rpc: [
|
26198
|
-
'https://rpc-mainnet-1.
|
26199
|
-
'https://rpc-mainnet-2.
|
26215
|
+
'https://rpc-mainnet-1.geb.network/',
|
26216
|
+
'https://rpc-mainnet-2.geb.network/'
|
26200
26217
|
],
|
26201
26218
|
faucets: [],
|
26202
26219
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
26203
|
-
infoURL: 'https://
|
26204
|
-
shortName: '
|
26220
|
+
infoURL: 'https://geb.network',
|
26221
|
+
shortName: 'geb',
|
26205
26222
|
chainId: 11501,
|
26206
26223
|
networkId: 11501,
|
26207
|
-
icon: '
|
26224
|
+
icon: 'geb',
|
26208
26225
|
explorers: [
|
26209
26226
|
{
|
26210
|
-
name: '
|
26211
|
-
url: 'https://scan
|
26227
|
+
name: 'geb mainnet scan',
|
26228
|
+
url: 'https://scan.geb.network',
|
26212
26229
|
standard: 'none'
|
26213
26230
|
},
|
26214
26231
|
{
|
@@ -26238,20 +26255,20 @@ const chainArray = [
|
|
26238
26255
|
]
|
26239
26256
|
},
|
26240
26257
|
{
|
26241
|
-
name: '
|
26242
|
-
chain: '
|
26243
|
-
rpc: [ 'https://signet.
|
26258
|
+
name: 'GEB Signet',
|
26259
|
+
chain: 'GEB',
|
26260
|
+
rpc: [ 'https://signet.geb.network/' ],
|
26244
26261
|
faucets: [],
|
26245
26262
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
26246
|
-
infoURL: 'https://
|
26247
|
-
shortName: '
|
26263
|
+
infoURL: 'https://geb.network',
|
26264
|
+
shortName: 'geb-signet',
|
26248
26265
|
chainId: 11504,
|
26249
26266
|
networkId: 11504,
|
26250
|
-
icon: '
|
26267
|
+
icon: 'geb',
|
26251
26268
|
explorers: [
|
26252
26269
|
{
|
26253
|
-
name: '
|
26254
|
-
url: 'https://scan-signet.
|
26270
|
+
name: 'geb signet scan',
|
26271
|
+
url: 'https://scan-signet.geb.network',
|
26255
26272
|
standard: 'none'
|
26256
26273
|
}
|
26257
26274
|
]
|
@@ -28984,20 +29001,20 @@ const chainArray = [
|
|
28984
29001
|
]
|
28985
29002
|
},
|
28986
29003
|
{
|
28987
|
-
name: '
|
28988
|
-
chain: '
|
28989
|
-
icon: '
|
28990
|
-
rpc: [ 'https://rpc.
|
29004
|
+
name: 'Nexurachain',
|
29005
|
+
chain: 'nexurachain',
|
29006
|
+
icon: 'xuraIcon',
|
29007
|
+
rpc: [ 'https://rpc.nexurachain.io' ],
|
28991
29008
|
faucets: [],
|
28992
|
-
nativeCurrency: { name: '
|
28993
|
-
infoURL: 'https://
|
28994
|
-
shortName: '
|
29009
|
+
nativeCurrency: { name: 'XURA', symbol: 'XURA', decimals: 18 },
|
29010
|
+
infoURL: 'https://nexurachain.io',
|
29011
|
+
shortName: 'XURAm',
|
28995
29012
|
chainId: 24125,
|
28996
29013
|
networkId: 24125,
|
28997
29014
|
explorers: [
|
28998
29015
|
{
|
28999
|
-
name: '
|
29000
|
-
url: 'https://explorer.
|
29016
|
+
name: 'Nexurachain Explorer',
|
29017
|
+
url: 'https://explorer.nexurachain.io',
|
29001
29018
|
standard: 'EIP3091'
|
29002
29019
|
}
|
29003
29020
|
]
|
@@ -43475,6 +43492,20 @@ const chainArray = [
|
|
43475
43492
|
}
|
43476
43493
|
]
|
43477
43494
|
},
|
43495
|
+
{
|
43496
|
+
name: 'Xphere Mainnet',
|
43497
|
+
chain: 'Xphere',
|
43498
|
+
icon: 'xphere',
|
43499
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
43500
|
+
rpc: [ 'https://en-bkk.x-phere.com' ],
|
43501
|
+
faucets: [],
|
43502
|
+
nativeCurrency: { name: 'Xphere', symbol: 'XP', decimals: 18 },
|
43503
|
+
infoURL: 'https://x-phere.com/',
|
43504
|
+
shortName: 'xp',
|
43505
|
+
chainId: 20250217,
|
43506
|
+
networkId: 20250217,
|
43507
|
+
explorers: []
|
43508
|
+
},
|
43478
43509
|
{
|
43479
43510
|
name: 'ETP Mainnet',
|
43480
43511
|
chain: 'ETP',
|