eth-chainlist 0.0.692 → 0.0.694
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 +130 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.694 (2025-10-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.693 ([d536943](https://github.com/poowf/eth-chainlist/commit/d536943a1d52c6bb52c2f4f1ade440b2d738cfeb))
|
9
|
+
* update chain data ([d5441f6](https://github.com/poowf/eth-chainlist/commit/d5441f67f5112f943c0419f912d0adcf25a95496))
|
10
|
+
|
11
|
+
### 0.0.693 (2025-10-03)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.692 ([90c2c70](https://github.com/poowf/eth-chainlist/commit/90c2c70b162b837b1f4d481f0906fa0a5dc6e04b))
|
17
|
+
* update chain data ([290656e](https://github.com/poowf/eth-chainlist/commit/290656ef016693617cd4eb794c574d8c0bbbdb78))
|
18
|
+
|
3
19
|
### 0.0.692 (2025-10-01)
|
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',
|
@@ -17369,18 +17378,19 @@ const chainArray = [
|
|
17369
17378
|
{
|
17370
17379
|
name: 'HyperAGI Mainnet',
|
17371
17380
|
chain: 'HyperAGI',
|
17372
|
-
|
17381
|
+
icon: 'hyperagi',
|
17382
|
+
rpc: [ 'https://rpc.hyperagi.network', 'https://rpc.hyperagi.ai' ],
|
17373
17383
|
faucets: [],
|
17374
17384
|
nativeCurrency: { name: 'Hyperdust', symbol: 'HYPT', decimals: 18 },
|
17375
17385
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
17376
|
-
infoURL: 'https://hyperagi.
|
17386
|
+
infoURL: 'https://www.hyperagi.ai',
|
17377
17387
|
shortName: 'hypt',
|
17378
17388
|
chainId: 2868,
|
17379
|
-
networkId:
|
17389
|
+
networkId: 2868,
|
17380
17390
|
explorers: [
|
17381
17391
|
{
|
17382
|
-
name: '
|
17383
|
-
url: 'https://
|
17392
|
+
name: 'hyperscan',
|
17393
|
+
url: 'https://hyperscan.hyperagi.ai',
|
17384
17394
|
standard: 'EIP3091'
|
17385
17395
|
}
|
17386
17396
|
]
|
@@ -19536,6 +19546,18 @@ const chainArray = [
|
|
19536
19546
|
}
|
19537
19547
|
]
|
19538
19548
|
},
|
19549
|
+
{
|
19550
|
+
name: 'MegaETH Mainnet',
|
19551
|
+
chain: 'ETH',
|
19552
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
19553
|
+
rpc: [],
|
19554
|
+
faucets: [],
|
19555
|
+
explorers: [],
|
19556
|
+
infoURL: 'https://megaeth.com',
|
19557
|
+
shortName: 'megaeth',
|
19558
|
+
chainId: 4326,
|
19559
|
+
networkId: 4326
|
19560
|
+
},
|
19539
19561
|
{
|
19540
19562
|
name: 'Bobafuji Testnet',
|
19541
19563
|
chain: 'Bobafuji Testnet',
|
@@ -28010,6 +28032,26 @@ const chainArray = [
|
|
28010
28032
|
icon: 'humanode',
|
28011
28033
|
explorers: []
|
28012
28034
|
},
|
28035
|
+
{
|
28036
|
+
name: 'Quai Network Testnet',
|
28037
|
+
chain: 'QUAI',
|
28038
|
+
icon: 'quai',
|
28039
|
+
rpc: [ 'https://orchard.rpc.quai.network/cyprus1' ],
|
28040
|
+
features: [ { name: 'EIP155' } ],
|
28041
|
+
faucets: [],
|
28042
|
+
nativeCurrency: { name: 'Quai', symbol: 'QUAI', decimals: 18 },
|
28043
|
+
infoURL: 'https://qu.ai',
|
28044
|
+
shortName: 'quai-testnet',
|
28045
|
+
chainId: 15000,
|
28046
|
+
networkId: 15000,
|
28047
|
+
explorers: [
|
28048
|
+
{
|
28049
|
+
name: 'Orchard Quaiscan',
|
28050
|
+
url: 'https://orchard.quaiscan.io',
|
28051
|
+
standard: 'EIP3091'
|
28052
|
+
}
|
28053
|
+
]
|
28054
|
+
},
|
28013
28055
|
{
|
28014
28056
|
name: 'Immutable zkEVM Devnet',
|
28015
28057
|
chain: 'Immutable zkEVM',
|
@@ -36873,6 +36915,56 @@ const chainArray = [
|
|
36873
36915
|
}
|
36874
36916
|
]
|
36875
36917
|
},
|
36918
|
+
{
|
36919
|
+
name: 'Doma Testnet',
|
36920
|
+
title: 'Doma Testnet',
|
36921
|
+
chain: 'ETH',
|
36922
|
+
rpc: [ 'https://rpc-testnet.doma.xyz' ],
|
36923
|
+
faucets: [],
|
36924
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
36925
|
+
infoURL: 'https://doma.xyz',
|
36926
|
+
shortName: 'doma-testnet',
|
36927
|
+
chainId: 97476,
|
36928
|
+
networkId: 97476,
|
36929
|
+
icon: 'doma',
|
36930
|
+
status: 'active',
|
36931
|
+
explorers: [
|
36932
|
+
{
|
36933
|
+
name: 'Doma Testnet Explorer',
|
36934
|
+
url: 'https://explorer-testnet.doma.xyz',
|
36935
|
+
standard: 'EIP3091',
|
36936
|
+
icon: 'doma'
|
36937
|
+
}
|
36938
|
+
],
|
36939
|
+
parent: {
|
36940
|
+
type: 'L2',
|
36941
|
+
chain: 'eip155-11155111',
|
36942
|
+
bridges: [ { url: 'https://bridge-testnet.doma.xyz' } ]
|
36943
|
+
}
|
36944
|
+
},
|
36945
|
+
{
|
36946
|
+
name: 'Doma',
|
36947
|
+
title: 'Doma',
|
36948
|
+
chain: 'ETH',
|
36949
|
+
rpc: [ 'https://rpc.doma.xyz' ],
|
36950
|
+
faucets: [],
|
36951
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
36952
|
+
infoURL: 'https://doma.xyz',
|
36953
|
+
shortName: 'doma',
|
36954
|
+
chainId: 97477,
|
36955
|
+
networkId: 97477,
|
36956
|
+
icon: 'doma',
|
36957
|
+
status: 'active',
|
36958
|
+
explorers: [
|
36959
|
+
{
|
36960
|
+
name: 'Doma Explorer',
|
36961
|
+
url: 'https://explorer.doma.xyz',
|
36962
|
+
standard: 'EIP3091',
|
36963
|
+
icon: 'doma'
|
36964
|
+
}
|
36965
|
+
],
|
36966
|
+
parent: { type: 'L2', chain: 'eip155-11155111' }
|
36967
|
+
},
|
36876
36968
|
{
|
36877
36969
|
name: 'Green Chain Testnet',
|
36878
36970
|
chain: 'Green Chain',
|
@@ -38991,6 +39083,26 @@ const chainArray = [
|
|
38991
39083
|
chainId: 200000,
|
38992
39084
|
networkId: 200000
|
38993
39085
|
},
|
39086
|
+
{
|
39087
|
+
name: 'NitroGraph Testnet',
|
39088
|
+
chain: 'NOS',
|
39089
|
+
rpc: [ 'https://rpc-testnet.nitrograph.foundation' ],
|
39090
|
+
icon: 'nitrograph',
|
39091
|
+
slip44: 1,
|
39092
|
+
faucets: [ 'https://faucet-testnet.nitrograph.foundation' ],
|
39093
|
+
infoURL: 'https://docs.nitrograph.com',
|
39094
|
+
chainId: 200024,
|
39095
|
+
networkId: 200024,
|
39096
|
+
shortName: 'nitro-testnet',
|
39097
|
+
explorers: [
|
39098
|
+
{
|
39099
|
+
url: 'https://explorer-testnet.nitrograph.foundation',
|
39100
|
+
name: 'NitroGraphTestnetInfo',
|
39101
|
+
standard: 'EIP3091'
|
39102
|
+
}
|
39103
|
+
],
|
39104
|
+
nativeCurrency: { name: 'Nitro', symbol: 'NOS', decimals: 18 }
|
39105
|
+
},
|
38994
39106
|
{
|
38995
39107
|
name: 'Milkomeda C1 Testnet',
|
38996
39108
|
chain: 'milkTAda',
|
@@ -40366,7 +40478,7 @@ const chainArray = [
|
|
40366
40478
|
}
|
40367
40479
|
},
|
40368
40480
|
{
|
40369
|
-
name: 'WABA Chain
|
40481
|
+
name: 'WABA Chain Mainnet',
|
40370
40482
|
chain: 'WABA Mainnet',
|
40371
40483
|
icon: 'waba',
|
40372
40484
|
rpc: [ 'https://rpc.wabaworld.com' ],
|
@@ -44310,9 +44422,9 @@ const chainArray = [
|
|
44310
44422
|
{
|
44311
44423
|
name: 'Jovay Mainnet',
|
44312
44424
|
chain: 'ETH',
|
44313
|
-
status: '
|
44425
|
+
status: 'active',
|
44314
44426
|
rpc: [
|
44315
|
-
'https://
|
44427
|
+
'https://rpc.jovay.io',
|
44316
44428
|
'https://api.zan.top/node/v1/jovay/mainnet/${ZAN_API_KEY}',
|
44317
44429
|
'wss://api.zan.top/node/ws/v1/jovay/mainnet/${ZAN_API_KEY}'
|
44318
44430
|
],
|
@@ -44326,7 +44438,7 @@ const chainArray = [
|
|
44326
44438
|
explorers: [
|
44327
44439
|
{
|
44328
44440
|
name: 'Jovay Explorer',
|
44329
|
-
url: 'https://explorer.jovay.io',
|
44441
|
+
url: 'https://explorer.jovay.io/l2',
|
44330
44442
|
standard: 'none'
|
44331
44443
|
}
|
44332
44444
|
],
|
@@ -44956,7 +45068,7 @@ const chainArray = [
|
|
44956
45068
|
networkId: 11142220,
|
44957
45069
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
44958
45070
|
slip44: 60,
|
44959
|
-
nativeCurrency: { name: 'CELO
|
45071
|
+
nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 },
|
44960
45072
|
parent: {
|
44961
45073
|
type: 'L2',
|
44962
45074
|
chain: 'eip155-11155111',
|