eth-chainlist 0.0.649 → 0.0.650
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 +39 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.650 (2025-04-20)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.649 ([a97d39a](https://github.com/poowf/eth-chainlist/commit/a97d39a60a1fc1851af576982b411365b8f486d1))
|
9
|
+
* update chain data ([40be8eb](https://github.com/poowf/eth-chainlist/commit/40be8eb916cd5979247692b4c4a69041332aba30))
|
10
|
+
|
3
11
|
### 0.0.649 (2025-04-14)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -16576,7 +16576,7 @@ const chainArray = [
|
|
16576
16576
|
'wss://fraxtal-holesky-rpc.publicnode.com'
|
16577
16577
|
],
|
16578
16578
|
faucets: [],
|
16579
|
-
nativeCurrency: { name: 'Frax
|
16579
|
+
nativeCurrency: { name: 'Frax', symbol: 'FRAX', decimals: 18 },
|
16580
16580
|
infoURL: 'https://testnet.frax.com',
|
16581
16581
|
shortName: 'fraxtal-testnet',
|
16582
16582
|
chainId: 2522,
|
@@ -23261,6 +23261,25 @@ const chainArray = [
|
|
23261
23261
|
],
|
23262
23262
|
redFlags: [ 'reusedChainId' ]
|
23263
23263
|
},
|
23264
|
+
{
|
23265
|
+
name: 'Shardeum Testnet',
|
23266
|
+
chain: 'ShardeumTestnet',
|
23267
|
+
icon: 'shardeum',
|
23268
|
+
rpc: [ 'https://api-testnet.shardeum.org/' ],
|
23269
|
+
faucets: [],
|
23270
|
+
nativeCurrency: { name: 'Shardeum Test SHM', symbol: 'SHM', decimals: 18 },
|
23271
|
+
infoURL: 'https://docs.shardeum.org/',
|
23272
|
+
shortName: 'ShardeumTestnet',
|
23273
|
+
chainId: 8083,
|
23274
|
+
networkId: 8083,
|
23275
|
+
explorers: [
|
23276
|
+
{
|
23277
|
+
name: 'Shardeum Testnet Explorer',
|
23278
|
+
url: 'https://explorer-testnet.shardeum.org',
|
23279
|
+
standard: 'EIP3091'
|
23280
|
+
}
|
23281
|
+
]
|
23282
|
+
},
|
23264
23283
|
{
|
23265
23284
|
name: 'Bitcoin Chain',
|
23266
23285
|
chain: 'BTC',
|
@@ -23329,6 +23348,25 @@ const chainArray = [
|
|
23329
23348
|
explorers: [],
|
23330
23349
|
status: 'incubating'
|
23331
23350
|
},
|
23351
|
+
{
|
23352
|
+
name: 'Shardeum',
|
23353
|
+
chain: 'Shardeum',
|
23354
|
+
icon: 'shardeum',
|
23355
|
+
rpc: [ 'https://api.shardeum.org/' ],
|
23356
|
+
faucets: [],
|
23357
|
+
nativeCurrency: { name: 'Shardeum', symbol: 'SHM', decimals: 18 },
|
23358
|
+
infoURL: 'https://docs.shardeum.org/',
|
23359
|
+
shortName: 'Shardeum',
|
23360
|
+
chainId: 8118,
|
23361
|
+
networkId: 8118,
|
23362
|
+
explorers: [
|
23363
|
+
{
|
23364
|
+
name: 'Shardeum Explorer',
|
23365
|
+
url: 'https://explorer.shardeum.org',
|
23366
|
+
standard: 'EIP3091'
|
23367
|
+
}
|
23368
|
+
]
|
23369
|
+
},
|
23332
23370
|
{
|
23333
23371
|
name: 'Qitmeer Network Testnet',
|
23334
23372
|
chain: 'MEER',
|
@@ -43748,7 +43786,6 @@ const chainArray = [
|
|
43748
43786
|
rpc: [
|
43749
43787
|
'https://rpc.sepolia.org',
|
43750
43788
|
'https://rpc2.sepolia.org',
|
43751
|
-
'https://rpc-sepolia.rockx.com',
|
43752
43789
|
'https://rpc.sepolia.ethpandaops.io',
|
43753
43790
|
'https://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
43754
43791
|
'wss://sepolia.infura.io/v3/${INFURA_API_KEY}',
|
@@ -43758,7 +43795,6 @@ const chainArray = [
|
|
43758
43795
|
'wss://ethereum-sepolia-rpc.publicnode.com',
|
43759
43796
|
'https://sepolia.drpc.org',
|
43760
43797
|
'wss://sepolia.drpc.org',
|
43761
|
-
'https://rpc-sepolia.rockx.com',
|
43762
43798
|
'https://eth-sepolia.g.alchemy.com/v2/WddzdzI2o9S3COdT73d5w6AIogbKq4X-'
|
43763
43799
|
],
|
43764
43800
|
faucets: [
|