eth-chainlist 0.0.596 → 0.0.597
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 +34 -11
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.597 (2025-01-29)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.596 ([d6c77e8](https://github.com/poowf/eth-chainlist/commit/d6c77e87e59cc219bd33f389acbe91ca0e50fcde))
|
9
|
+
* update chain data ([fd950b6](https://github.com/poowf/eth-chainlist/commit/fd950b677eeb7f54bd2525b0b57cb456aa819831))
|
10
|
+
|
3
11
|
### 0.0.596 (2025-01-28)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -14335,21 +14335,21 @@ const chainArray = [
|
|
14335
14335
|
]
|
14336
14336
|
},
|
14337
14337
|
{
|
14338
|
-
name: '
|
14339
|
-
title: '
|
14340
|
-
chain: '
|
14341
|
-
rpc: [ 'https://
|
14342
|
-
faucets: [],
|
14343
|
-
nativeCurrency: { name: '
|
14344
|
-
infoURL: 'https://
|
14345
|
-
shortName: '
|
14338
|
+
name: 'Ronin Mainnet',
|
14339
|
+
title: 'Ronin',
|
14340
|
+
chain: 'ronin',
|
14341
|
+
rpc: [ 'https://api.roninchain.com/rpc' ],
|
14342
|
+
faucets: [],
|
14343
|
+
nativeCurrency: { name: 'RON', symbol: 'RON', decimals: 18 },
|
14344
|
+
infoURL: 'https://roninchain.com',
|
14345
|
+
shortName: 'ron',
|
14346
14346
|
chainId: 2020,
|
14347
14347
|
networkId: 2020,
|
14348
|
-
|
14348
|
+
redFlags: [ 'reusedChainId' ],
|
14349
14349
|
explorers: [
|
14350
14350
|
{
|
14351
|
-
name: '
|
14352
|
-
url: 'https://
|
14351
|
+
name: 'Ronin Block Explorer',
|
14352
|
+
url: 'https://app.roninchain.com',
|
14353
14353
|
standard: 'EIP3091'
|
14354
14354
|
}
|
14355
14355
|
]
|
@@ -23524,6 +23524,29 @@ const chainArray = [
|
|
23524
23524
|
}
|
23525
23525
|
]
|
23526
23526
|
},
|
23527
|
+
{
|
23528
|
+
name: 'Qubetics Testnet',
|
23529
|
+
chain: 'Qubetics Testnet',
|
23530
|
+
rpc: [
|
23531
|
+
'https://alphatestnet-evm-rpc.qubetics.work/',
|
23532
|
+
'wss://wss-testnet-nodes.shidoscan.com'
|
23533
|
+
],
|
23534
|
+
faucets: [ 'https://alphatestnet-explorer.qubetics.work/faucet' ],
|
23535
|
+
nativeCurrency: { name: 'Qubetics Testnet Token', symbol: 'TICS', decimals: 18 },
|
23536
|
+
infoURL: 'https://www.qubetics.com/',
|
23537
|
+
shortName: 'Qubetics',
|
23538
|
+
chainId: 9003,
|
23539
|
+
networkId: 9003,
|
23540
|
+
icon: 'qubetics',
|
23541
|
+
explorers: [
|
23542
|
+
{
|
23543
|
+
name: 'Qubetics Testnet Explorer',
|
23544
|
+
url: 'https://testnet.shidoscan.com',
|
23545
|
+
standard: 'none',
|
23546
|
+
icon: 'qubetics'
|
23547
|
+
}
|
23548
|
+
]
|
23549
|
+
},
|
23527
23550
|
{
|
23528
23551
|
name: 'Shido Testnet Block',
|
23529
23552
|
chain: 'Shido Testnet',
|