eth-chainlist 0.0.596 → 0.0.598
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 +75 -10
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.598 (2025-01-30)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.597 ([890973b](https://github.com/poowf/eth-chainlist/commit/890973bdf08f6bf380043e5c1edc65fd2fb38d4b))
|
9
|
+
* update chain data ([9415265](https://github.com/poowf/eth-chainlist/commit/94152658a14836c7451a78fcde0b0a0fffb00e83))
|
10
|
+
|
11
|
+
### 0.0.597 (2025-01-29)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.596 ([d6c77e8](https://github.com/poowf/eth-chainlist/commit/d6c77e87e59cc219bd33f389acbe91ca0e50fcde))
|
17
|
+
* update chain data ([fd950b6](https://github.com/poowf/eth-chainlist/commit/fd950b677eeb7f54bd2525b0b57cb456aa819831))
|
18
|
+
|
3
19
|
### 0.0.596 (2025-01-28)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -11735,6 +11735,25 @@ const chainArray = [
|
|
11735
11735
|
],
|
11736
11736
|
icon: 'alyx'
|
11737
11737
|
},
|
11738
|
+
{
|
11739
|
+
name: 'Story Homer Testnet',
|
11740
|
+
chain: 'Story Homer Testnet',
|
11741
|
+
rpc: [ 'https://devnet.storyrpc.io.' ],
|
11742
|
+
faucets: [],
|
11743
|
+
nativeCurrency: { name: 'IP Token', symbol: 'IP', decimals: 18 },
|
11744
|
+
infoURL: 'https://story.foundation/',
|
11745
|
+
icon: 'story',
|
11746
|
+
shortName: 'styhmt',
|
11747
|
+
chainId: 1315,
|
11748
|
+
networkId: 1315,
|
11749
|
+
explorers: [
|
11750
|
+
{
|
11751
|
+
name: 'blockscout',
|
11752
|
+
url: 'https://devnet.storyscan.xyz',
|
11753
|
+
standard: 'EIP3091'
|
11754
|
+
}
|
11755
|
+
]
|
11756
|
+
},
|
11738
11757
|
{
|
11739
11758
|
name: 'AIA Mainnet',
|
11740
11759
|
chain: 'AIA',
|
@@ -14335,21 +14354,21 @@ const chainArray = [
|
|
14335
14354
|
]
|
14336
14355
|
},
|
14337
14356
|
{
|
14338
|
-
name: '
|
14339
|
-
title: '
|
14340
|
-
chain: '
|
14341
|
-
rpc: [ 'https://
|
14357
|
+
name: 'Ronin Mainnet',
|
14358
|
+
title: 'Ronin',
|
14359
|
+
chain: 'ronin',
|
14360
|
+
rpc: [ 'https://api.roninchain.com/rpc' ],
|
14342
14361
|
faucets: [],
|
14343
|
-
nativeCurrency: { name: '
|
14344
|
-
infoURL: 'https://
|
14345
|
-
shortName: '
|
14362
|
+
nativeCurrency: { name: 'RON', symbol: 'RON', decimals: 18 },
|
14363
|
+
infoURL: 'https://roninchain.com',
|
14364
|
+
shortName: 'ron',
|
14346
14365
|
chainId: 2020,
|
14347
14366
|
networkId: 2020,
|
14348
|
-
|
14367
|
+
redFlags: [ 'reusedChainId' ],
|
14349
14368
|
explorers: [
|
14350
14369
|
{
|
14351
|
-
name: '
|
14352
|
-
url: 'https://
|
14370
|
+
name: 'Ronin Block Explorer',
|
14371
|
+
url: 'https://app.roninchain.com',
|
14353
14372
|
standard: 'EIP3091'
|
14354
14373
|
}
|
14355
14374
|
]
|
@@ -22419,6 +22438,7 @@ const chainArray = [
|
|
22419
22438
|
{
|
22420
22439
|
name: 'Bitcoin Chain',
|
22421
22440
|
chain: 'BTC',
|
22441
|
+
icon: 'BTCChain',
|
22422
22442
|
rpc: [ 'https://rpc.bitcoinevm.org' ],
|
22423
22443
|
faucets: [],
|
22424
22444
|
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
@@ -22431,6 +22451,7 @@ const chainArray = [
|
|
22431
22451
|
{
|
22432
22452
|
name: 'E-Dollar',
|
22433
22453
|
chain: 'USD',
|
22454
|
+
icon: 'edollar',
|
22434
22455
|
rpc: [ 'https://rpc.e-dollar.org' ],
|
22435
22456
|
faucets: [],
|
22436
22457
|
nativeCurrency: { name: 'E-Dollar', symbol: 'USD', decimals: 18 },
|
@@ -23524,6 +23545,29 @@ const chainArray = [
|
|
23524
23545
|
}
|
23525
23546
|
]
|
23526
23547
|
},
|
23548
|
+
{
|
23549
|
+
name: 'Qubetics Testnet',
|
23550
|
+
chain: 'Qubetics Testnet',
|
23551
|
+
rpc: [
|
23552
|
+
'https://alphatestnet-evm-rpc.qubetics.work/',
|
23553
|
+
'wss://wss-testnet-nodes.shidoscan.com'
|
23554
|
+
],
|
23555
|
+
faucets: [ 'https://alphatestnet-explorer.qubetics.work/faucet' ],
|
23556
|
+
nativeCurrency: { name: 'Qubetics Testnet Token', symbol: 'TICS', decimals: 18 },
|
23557
|
+
infoURL: 'https://www.qubetics.com/',
|
23558
|
+
shortName: 'Qubetics',
|
23559
|
+
chainId: 9003,
|
23560
|
+
networkId: 9003,
|
23561
|
+
icon: 'qubetics',
|
23562
|
+
explorers: [
|
23563
|
+
{
|
23564
|
+
name: 'Qubetics Testnet Explorer',
|
23565
|
+
url: 'https://testnet.shidoscan.com',
|
23566
|
+
standard: 'none',
|
23567
|
+
icon: 'qubetics'
|
23568
|
+
}
|
23569
|
+
]
|
23570
|
+
},
|
23527
23571
|
{
|
23528
23572
|
name: 'Shido Testnet Block',
|
23529
23573
|
chain: 'Shido Testnet',
|
@@ -36591,6 +36635,27 @@ const chainArray = [
|
|
36591
36635
|
}
|
36592
36636
|
]
|
36593
36637
|
},
|
36638
|
+
{
|
36639
|
+
name: 'CONET Mainnet',
|
36640
|
+
chain: 'CONET Mainnet',
|
36641
|
+
rpc: [ 'https://mainnet-rpc.conet.network' ],
|
36642
|
+
faucets: [],
|
36643
|
+
nativeCurrency: { name: 'CONET ETH', symbol: 'ETH', decimals: 18 },
|
36644
|
+
features: [ { name: 'EIP155' } ],
|
36645
|
+
infoURL: 'https://conet.network',
|
36646
|
+
shortName: 'conet-mainnet',
|
36647
|
+
chainId: 224400,
|
36648
|
+
networkId: 224400,
|
36649
|
+
slip44: 2147708048,
|
36650
|
+
icon: 'conet',
|
36651
|
+
explorers: [
|
36652
|
+
{
|
36653
|
+
name: 'CONET Mainnet Explorer',
|
36654
|
+
url: 'https://mainnet.conet.network',
|
36655
|
+
standard: 'EIP3091'
|
36656
|
+
}
|
36657
|
+
]
|
36658
|
+
},
|
36594
36659
|
{
|
36595
36660
|
name: 'CONET Sebolia Testnet',
|
36596
36661
|
chain: 'CONET',
|