eth-chainlist 0.0.691 → 0.0.693
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 +113 -17
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.693 (2025-10-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.692 ([90c2c70](https://github.com/poowf/eth-chainlist/commit/90c2c70b162b837b1f4d481f0906fa0a5dc6e04b))
|
9
|
+
* update chain data ([290656e](https://github.com/poowf/eth-chainlist/commit/290656ef016693617cd4eb794c574d8c0bbbdb78))
|
10
|
+
|
11
|
+
### 0.0.692 (2025-10-01)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.691 ([36a4ba1](https://github.com/poowf/eth-chainlist/commit/36a4ba1d076f907f125038797311d1f92c13fe65))
|
17
|
+
* update chain data ([b2208d0](https://github.com/poowf/eth-chainlist/commit/b2208d096626d453cc5add0eb78be25d3907c70b))
|
18
|
+
|
3
19
|
### 0.0.691 (2025-09-30)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -19536,6 +19536,18 @@ const chainArray = [
|
|
19536
19536
|
}
|
19537
19537
|
]
|
19538
19538
|
},
|
19539
|
+
{
|
19540
|
+
name: 'MegaETH Mainnet',
|
19541
|
+
chain: 'ETH',
|
19542
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
19543
|
+
rpc: [],
|
19544
|
+
faucets: [],
|
19545
|
+
explorers: [],
|
19546
|
+
infoURL: 'https://megaeth.com',
|
19547
|
+
shortName: 'megaeth',
|
19548
|
+
chainId: 4326,
|
19549
|
+
networkId: 4326
|
19550
|
+
},
|
19539
19551
|
{
|
19540
19552
|
name: 'Bobafuji Testnet',
|
19541
19553
|
chain: 'Bobafuji Testnet',
|
@@ -28322,14 +28334,28 @@ const chainArray = [
|
|
28322
28334
|
{
|
28323
28335
|
name: '0G-Galileo-Testnet',
|
28324
28336
|
chain: '0G-Testnet',
|
28325
|
-
|
28326
|
-
|
28337
|
+
status: 'deprecated',
|
28338
|
+
rpc: [],
|
28339
|
+
faucets: [],
|
28327
28340
|
nativeCurrency: { name: 'A0GI', symbol: 'A0GI', decimals: 18 },
|
28328
28341
|
infoURL: 'https://0g.ai',
|
28329
28342
|
shortName: '0gai-galileo-testnet',
|
28330
28343
|
chainId: 16601,
|
28331
28344
|
networkId: 16601,
|
28332
28345
|
icon: '0gai',
|
28346
|
+
explorers: []
|
28347
|
+
},
|
28348
|
+
{
|
28349
|
+
name: '0G-Testnet-Galileo',
|
28350
|
+
chain: '0G-Testnet',
|
28351
|
+
rpc: [ 'https://evmrpc-testnet.0g.ai' ],
|
28352
|
+
faucets: [ 'https://faucet.0g.ai' ],
|
28353
|
+
nativeCurrency: { name: '0G', symbol: '0G', decimals: 18 },
|
28354
|
+
infoURL: 'https://0g.ai',
|
28355
|
+
shortName: '0g-testnet-galileo',
|
28356
|
+
chainId: 16602,
|
28357
|
+
networkId: 16602,
|
28358
|
+
icon: '0g',
|
28333
28359
|
explorers: [
|
28334
28360
|
{
|
28335
28361
|
name: '0G BlockChain Explorer',
|
@@ -28349,7 +28375,13 @@ const chainArray = [
|
|
28349
28375
|
chainId: 16661,
|
28350
28376
|
networkId: 16661,
|
28351
28377
|
icon: '0g',
|
28352
|
-
explorers: [
|
28378
|
+
explorers: [
|
28379
|
+
{
|
28380
|
+
name: '0G BlockChain Explorer',
|
28381
|
+
url: 'https://chainscan.0g.ai',
|
28382
|
+
standard: 'EIP3091'
|
28383
|
+
}
|
28384
|
+
]
|
28353
28385
|
},
|
28354
28386
|
{
|
28355
28387
|
name: 'IRIShub Testnet',
|
@@ -34520,6 +34552,11 @@ const chainArray = [
|
|
34520
34552
|
name: 'Scolscan Explorer',
|
34521
34553
|
url: 'https://explorer.scolcoin.com',
|
34522
34554
|
standard: 'EIP3091'
|
34555
|
+
},
|
34556
|
+
{
|
34557
|
+
name: 'Scolcoin Explorer',
|
34558
|
+
url: 'https://explorador.scolcoin.com',
|
34559
|
+
standard: 'EIP3091'
|
34523
34560
|
}
|
34524
34561
|
]
|
34525
34562
|
},
|
@@ -36848,6 +36885,56 @@ const chainArray = [
|
|
36848
36885
|
}
|
36849
36886
|
]
|
36850
36887
|
},
|
36888
|
+
{
|
36889
|
+
name: 'Doma Testnet',
|
36890
|
+
title: 'Doma Testnet',
|
36891
|
+
chain: 'ETH',
|
36892
|
+
rpc: [ 'https://rpc-testnet.doma.xyz' ],
|
36893
|
+
faucets: [],
|
36894
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
36895
|
+
infoURL: 'https://doma.xyz',
|
36896
|
+
shortName: 'doma-testnet',
|
36897
|
+
chainId: 97476,
|
36898
|
+
networkId: 97476,
|
36899
|
+
icon: 'doma',
|
36900
|
+
status: 'active',
|
36901
|
+
explorers: [
|
36902
|
+
{
|
36903
|
+
name: 'Doma Testnet Explorer',
|
36904
|
+
url: 'https://explorer-testnet.doma.xyz',
|
36905
|
+
standard: 'EIP3091',
|
36906
|
+
icon: 'doma'
|
36907
|
+
}
|
36908
|
+
],
|
36909
|
+
parent: {
|
36910
|
+
type: 'L2',
|
36911
|
+
chain: 'eip155-11155111',
|
36912
|
+
bridges: [ { url: 'https://bridge-testnet.doma.xyz' } ]
|
36913
|
+
}
|
36914
|
+
},
|
36915
|
+
{
|
36916
|
+
name: 'Doma',
|
36917
|
+
title: 'Doma',
|
36918
|
+
chain: 'ETH',
|
36919
|
+
rpc: [ 'https://rpc.doma.xyz' ],
|
36920
|
+
faucets: [],
|
36921
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
36922
|
+
infoURL: 'https://doma.xyz',
|
36923
|
+
shortName: 'doma',
|
36924
|
+
chainId: 97477,
|
36925
|
+
networkId: 97477,
|
36926
|
+
icon: 'doma',
|
36927
|
+
status: 'active',
|
36928
|
+
explorers: [
|
36929
|
+
{
|
36930
|
+
name: 'Doma Explorer',
|
36931
|
+
url: 'https://explorer.doma.xyz',
|
36932
|
+
standard: 'EIP3091',
|
36933
|
+
icon: 'doma'
|
36934
|
+
}
|
36935
|
+
],
|
36936
|
+
parent: { type: 'L2', chain: 'eip155-11155111' }
|
36937
|
+
},
|
36851
36938
|
{
|
36852
36939
|
name: 'Green Chain Testnet',
|
36853
36940
|
chain: 'Green Chain',
|
@@ -46272,14 +46359,9 @@ const chainArray = [
|
|
46272
46359
|
},
|
46273
46360
|
{
|
46274
46361
|
name: 'Autonity Piccadilly (Tiber) Testnet',
|
46362
|
+
status: 'deprecated',
|
46275
46363
|
chain: 'AUT',
|
46276
|
-
rpc: [
|
46277
|
-
'https://autonity.rpc.web3cdn.network/testnet',
|
46278
|
-
'wss://autonity.rpc.web3cdn.network/testnet/ws',
|
46279
|
-
'https://autonity-piccadilly.rpc.subquery.network/public',
|
46280
|
-
'https://piccadilly.autonity-apis.com',
|
46281
|
-
'wss://piccadilly-ws.autonity-apis.com'
|
46282
|
-
],
|
46364
|
+
rpc: [],
|
46283
46365
|
faucets: [],
|
46284
46366
|
nativeCurrency: { name: 'Piccadilly Auton', symbol: 'ATN', decimals: 18 },
|
46285
46367
|
infoURL: 'https://autonity.org/',
|
@@ -46288,13 +46370,7 @@ const chainArray = [
|
|
46288
46370
|
networkId: 65100004,
|
46289
46371
|
slip44: 1,
|
46290
46372
|
icon: 'autonity',
|
46291
|
-
explorers: [
|
46292
|
-
{
|
46293
|
-
name: 'autonity-blockscout',
|
46294
|
-
url: 'https://piccadilly.autonity.org',
|
46295
|
-
standard: 'EIP3091'
|
46296
|
-
}
|
46297
|
-
]
|
46373
|
+
explorers: []
|
46298
46374
|
},
|
46299
46375
|
{
|
46300
46376
|
name: 'Winr Protocol Testnet',
|
@@ -48325,6 +48401,26 @@ const chainArray = [
|
|
48325
48401
|
}
|
48326
48402
|
]
|
48327
48403
|
},
|
48404
|
+
{
|
48405
|
+
name: 'Tron Nile',
|
48406
|
+
chain: 'TRON',
|
48407
|
+
rpc: [ 'https://nile.trongrid.io/jsonrpc' ],
|
48408
|
+
faucets: [],
|
48409
|
+
nativeCurrency: { name: 'Tron', symbol: 'TRX', decimals: 6 },
|
48410
|
+
infoURL: 'https://tron.network',
|
48411
|
+
shortName: 'tron-nile',
|
48412
|
+
chainId: 3448148188,
|
48413
|
+
networkId: 3448148188,
|
48414
|
+
icon: 'tron',
|
48415
|
+
explorers: [
|
48416
|
+
{
|
48417
|
+
name: 'nile tronscan',
|
48418
|
+
url: 'https://nile.tronscan.org',
|
48419
|
+
icon: 'tron',
|
48420
|
+
standard: 'none'
|
48421
|
+
}
|
48422
|
+
]
|
48423
|
+
},
|
48328
48424
|
{
|
48329
48425
|
name: 'OneLedger Testnet Frankenstein',
|
48330
48426
|
chain: 'OLT',
|