eth-chainlist 0.0.693 → 0.0.695
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 +84 -33
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.695 (2025-10-08)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.694 ([72d1f89](https://github.com/poowf/eth-chainlist/commit/72d1f893954b0b2e355cb879ed69365a8d5c2ed6))
|
9
|
+
* update chain data ([fe35d21](https://github.com/poowf/eth-chainlist/commit/fe35d21bd63324009c0e0dec726fc5e39511c931))
|
10
|
+
|
11
|
+
### 0.0.694 (2025-10-04)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.693 ([d536943](https://github.com/poowf/eth-chainlist/commit/d536943a1d52c6bb52c2f4f1ade440b2d738cfeb))
|
17
|
+
* update chain data ([d5441f6](https://github.com/poowf/eth-chainlist/commit/d5441f67f5112f943c0419f912d0adcf25a95496))
|
18
|
+
|
3
19
|
### 0.0.693 (2025-10-03)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -217,16 +217,25 @@ const chainArray = [
|
|
217
217
|
]
|
218
218
|
},
|
219
219
|
{
|
220
|
-
name: '
|
221
|
-
chain: '
|
222
|
-
|
220
|
+
name: 'Quai Network Mainnet',
|
221
|
+
chain: 'QUAI',
|
222
|
+
icon: 'quai',
|
223
|
+
rpc: [ 'https://rpc.quai.network/cyprus1' ],
|
224
|
+
features: [ { name: 'EIP155' } ],
|
223
225
|
faucets: [],
|
224
|
-
nativeCurrency: { name: '
|
225
|
-
infoURL: 'https://
|
226
|
-
shortName: '
|
226
|
+
nativeCurrency: { name: 'Quai', symbol: 'QUAI', decimals: 18 },
|
227
|
+
infoURL: 'https://qu.ai',
|
228
|
+
shortName: 'quai',
|
227
229
|
chainId: 9,
|
228
|
-
networkId:
|
229
|
-
|
230
|
+
networkId: 9,
|
231
|
+
redFlags: [ 'reusedChainId' ],
|
232
|
+
explorers: [
|
233
|
+
{
|
234
|
+
name: 'Quaiscan',
|
235
|
+
url: 'https://quaiscan.io',
|
236
|
+
standard: 'EIP3091'
|
237
|
+
}
|
238
|
+
]
|
230
239
|
},
|
231
240
|
{
|
232
241
|
name: 'OP Mainnet',
|
@@ -857,6 +866,8 @@ const chainArray = [
|
|
857
866
|
chain: 'LUKSO',
|
858
867
|
icon: 'lukso',
|
859
868
|
rpc: [
|
869
|
+
'https://42.rpc.thirdweb.com',
|
870
|
+
'https://rpc.lukso.sigmacore.io',
|
860
871
|
'https://rpc.mainnet.lukso.network',
|
861
872
|
'wss://ws-rpc.mainnet.lukso.network'
|
862
873
|
],
|
@@ -864,8 +875,8 @@ const chainArray = [
|
|
864
875
|
nativeCurrency: { name: 'LUKSO', symbol: 'LYX', decimals: 18 },
|
865
876
|
explorers: [
|
866
877
|
{
|
867
|
-
name: '
|
868
|
-
url: 'https://explorer.
|
878
|
+
name: 'LUKSO Execution Explorer',
|
879
|
+
url: 'https://explorer.lukso.network',
|
869
880
|
standard: 'EIP3091'
|
870
881
|
}
|
871
882
|
],
|
@@ -3421,25 +3432,22 @@ const chainArray = [
|
|
3421
3432
|
status: 'deprecated'
|
3422
3433
|
},
|
3423
3434
|
{
|
3424
|
-
name: '
|
3425
|
-
chain: '
|
3435
|
+
name: 'Nomina',
|
3436
|
+
chain: 'Nomina',
|
3426
3437
|
status: 'active',
|
3427
|
-
rpc: [
|
3428
|
-
'https://mainnet.omni.network',
|
3429
|
-
'wss://wss.mainnet.omni.network'
|
3430
|
-
],
|
3438
|
+
rpc: [ 'https://mainnet.nomina.io', 'wss://wss.mainnet.nomina.io' ],
|
3431
3439
|
features: [ { name: 'EIP155' } ],
|
3432
3440
|
faucets: [],
|
3433
|
-
nativeCurrency: { name: '
|
3441
|
+
nativeCurrency: { name: 'Nomina', symbol: 'NOM', decimals: 18 },
|
3434
3442
|
infoURL: 'https://docs.omni.network',
|
3435
|
-
shortName: '
|
3443
|
+
shortName: 'nom',
|
3436
3444
|
chainId: 166,
|
3437
3445
|
networkId: 166,
|
3438
3446
|
slip44: 1,
|
3439
|
-
icon: '
|
3447
|
+
icon: 'nom',
|
3440
3448
|
explorers: [
|
3441
3449
|
{
|
3442
|
-
name: '
|
3450
|
+
name: 'Nomina EVM and cross-chain Explorer',
|
3443
3451
|
url: 'https://omniscan.network',
|
3444
3452
|
standard: 'EIP3091'
|
3445
3453
|
}
|
@@ -17369,18 +17377,19 @@ const chainArray = [
|
|
17369
17377
|
{
|
17370
17378
|
name: 'HyperAGI Mainnet',
|
17371
17379
|
chain: 'HyperAGI',
|
17372
|
-
|
17380
|
+
icon: 'hyperagi',
|
17381
|
+
rpc: [ 'https://rpc.hyperagi.network', 'https://rpc.hyperagi.ai' ],
|
17373
17382
|
faucets: [],
|
17374
17383
|
nativeCurrency: { name: 'Hyperdust', symbol: 'HYPT', decimals: 18 },
|
17375
17384
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
17376
|
-
infoURL: 'https://hyperagi.
|
17385
|
+
infoURL: 'https://www.hyperagi.ai',
|
17377
17386
|
shortName: 'hypt',
|
17378
17387
|
chainId: 2868,
|
17379
|
-
networkId:
|
17388
|
+
networkId: 2868,
|
17380
17389
|
explorers: [
|
17381
17390
|
{
|
17382
|
-
name: '
|
17383
|
-
url: 'https://
|
17391
|
+
name: 'hyperscan',
|
17392
|
+
url: 'https://hyperscan.hyperagi.ai',
|
17384
17393
|
standard: 'EIP3091'
|
17385
17394
|
}
|
17386
17395
|
]
|
@@ -19362,7 +19371,7 @@ const chainArray = [
|
|
19362
19371
|
{
|
19363
19372
|
name: 'LUKSO Testnet',
|
19364
19373
|
chain: 'LUKSO Testnet',
|
19365
|
-
icon: 'lukso',
|
19374
|
+
icon: 'lukso-testnet',
|
19366
19375
|
rpc: [
|
19367
19376
|
'https://rpc.testnet.lukso.network',
|
19368
19377
|
'wss://ws-rpc.testnet.lukso.network'
|
@@ -19371,9 +19380,9 @@ const chainArray = [
|
|
19371
19380
|
nativeCurrency: { name: 'TestLYX', symbol: 'LYXt', decimals: 18 },
|
19372
19381
|
explorers: [
|
19373
19382
|
{
|
19374
|
-
name: '
|
19383
|
+
name: 'LUKSO Testnet Execution Explorer',
|
19375
19384
|
url: 'https://explorer.execution.testnet.lukso.network',
|
19376
|
-
standard: '
|
19385
|
+
standard: 'EIP3091'
|
19377
19386
|
}
|
19378
19387
|
],
|
19379
19388
|
infoURL: 'https://lukso.network',
|
@@ -28022,6 +28031,26 @@ const chainArray = [
|
|
28022
28031
|
icon: 'humanode',
|
28023
28032
|
explorers: []
|
28024
28033
|
},
|
28034
|
+
{
|
28035
|
+
name: 'Quai Network Testnet',
|
28036
|
+
chain: 'QUAI',
|
28037
|
+
icon: 'quai',
|
28038
|
+
rpc: [ 'https://orchard.rpc.quai.network/cyprus1' ],
|
28039
|
+
features: [ { name: 'EIP155' } ],
|
28040
|
+
faucets: [],
|
28041
|
+
nativeCurrency: { name: 'Quai', symbol: 'QUAI', decimals: 18 },
|
28042
|
+
infoURL: 'https://qu.ai',
|
28043
|
+
shortName: 'quai-testnet',
|
28044
|
+
chainId: 15000,
|
28045
|
+
networkId: 15000,
|
28046
|
+
explorers: [
|
28047
|
+
{
|
28048
|
+
name: 'Orchard Quaiscan',
|
28049
|
+
url: 'https://orchard.quaiscan.io',
|
28050
|
+
standard: 'EIP3091'
|
28051
|
+
}
|
28052
|
+
]
|
28053
|
+
},
|
28025
28054
|
{
|
28026
28055
|
name: 'Immutable zkEVM Devnet',
|
28027
28056
|
chain: 'Immutable zkEVM',
|
@@ -32251,6 +32280,7 @@ const chainArray = [
|
|
32251
32280
|
chain: 'CELO',
|
32252
32281
|
networkId: 44787,
|
32253
32282
|
slip44: 1,
|
32283
|
+
status: 'deprecated',
|
32254
32284
|
nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 },
|
32255
32285
|
rpc: [
|
32256
32286
|
'https://alfajores-forno.celo-testnet.org',
|
@@ -34318,6 +34348,7 @@ const chainArray = [
|
|
34318
34348
|
chain: 'CELO',
|
34319
34349
|
networkId: 62320,
|
34320
34350
|
slip44: 1,
|
34351
|
+
status: 'deprecated',
|
34321
34352
|
nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 },
|
34322
34353
|
rpc: [ 'https://baklava-forno.celo-testnet.org' ],
|
34323
34354
|
faucets: [
|
@@ -39053,6 +39084,26 @@ const chainArray = [
|
|
39053
39084
|
chainId: 200000,
|
39054
39085
|
networkId: 200000
|
39055
39086
|
},
|
39087
|
+
{
|
39088
|
+
name: 'NitroGraph Testnet',
|
39089
|
+
chain: 'NOS',
|
39090
|
+
rpc: [ 'https://rpc-testnet.nitrograph.foundation' ],
|
39091
|
+
icon: 'nitrograph',
|
39092
|
+
slip44: 1,
|
39093
|
+
faucets: [ 'https://faucet-testnet.nitrograph.foundation' ],
|
39094
|
+
infoURL: 'https://docs.nitrograph.com',
|
39095
|
+
chainId: 200024,
|
39096
|
+
networkId: 200024,
|
39097
|
+
shortName: 'nitro-testnet',
|
39098
|
+
explorers: [
|
39099
|
+
{
|
39100
|
+
url: 'https://explorer-testnet.nitrograph.foundation',
|
39101
|
+
name: 'NitroGraphTestnetInfo',
|
39102
|
+
standard: 'EIP3091'
|
39103
|
+
}
|
39104
|
+
],
|
39105
|
+
nativeCurrency: { name: 'Nitro', symbol: 'NOS', decimals: 18 }
|
39106
|
+
},
|
39056
39107
|
{
|
39057
39108
|
name: 'Milkomeda C1 Testnet',
|
39058
39109
|
chain: 'milkTAda',
|
@@ -40428,7 +40479,7 @@ const chainArray = [
|
|
40428
40479
|
}
|
40429
40480
|
},
|
40430
40481
|
{
|
40431
|
-
name: 'WABA Chain
|
40482
|
+
name: 'WABA Chain Mainnet',
|
40432
40483
|
chain: 'WABA Mainnet',
|
40433
40484
|
icon: 'waba',
|
40434
40485
|
rpc: [ 'https://rpc.wabaworld.com' ],
|
@@ -44372,9 +44423,9 @@ const chainArray = [
|
|
44372
44423
|
{
|
44373
44424
|
name: 'Jovay Mainnet',
|
44374
44425
|
chain: 'ETH',
|
44375
|
-
status: '
|
44426
|
+
status: 'active',
|
44376
44427
|
rpc: [
|
44377
|
-
'https://
|
44428
|
+
'https://rpc.jovay.io',
|
44378
44429
|
'https://api.zan.top/node/v1/jovay/mainnet/${ZAN_API_KEY}',
|
44379
44430
|
'wss://api.zan.top/node/ws/v1/jovay/mainnet/${ZAN_API_KEY}'
|
44380
44431
|
],
|
@@ -44388,7 +44439,7 @@ const chainArray = [
|
|
44388
44439
|
explorers: [
|
44389
44440
|
{
|
44390
44441
|
name: 'Jovay Explorer',
|
44391
|
-
url: 'https://explorer.jovay.io',
|
44442
|
+
url: 'https://explorer.jovay.io/l2',
|
44392
44443
|
standard: 'none'
|
44393
44444
|
}
|
44394
44445
|
],
|
@@ -45018,7 +45069,7 @@ const chainArray = [
|
|
45018
45069
|
networkId: 11142220,
|
45019
45070
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
45020
45071
|
slip44: 60,
|
45021
|
-
nativeCurrency: { name: 'CELO
|
45072
|
+
nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 },
|
45022
45073
|
parent: {
|
45023
45074
|
type: 'L2',
|
45024
45075
|
chain: 'eip155-11155111',
|