eth-chainlist 0.0.698 → 0.0.699
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 +44 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.699 (2025-11-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.698 ([86d7b17](https://github.com/poowf/eth-chainlist/commit/86d7b178b361993e6171182899fba7d5a089828e))
|
|
9
|
+
* update chain data ([f5a6b43](https://github.com/poowf/eth-chainlist/commit/f5a6b431b67d846d7aebf9d65f86ff0b8c5e138a))
|
|
10
|
+
|
|
3
11
|
### 0.0.698 (2025-10-28)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -17122,6 +17122,48 @@ const chainArray = [
|
|
|
17122
17122
|
explorers: [],
|
|
17123
17123
|
parent: { type: 'L2', chain: 'eip155-1' }
|
|
17124
17124
|
},
|
|
17125
|
+
{
|
|
17126
|
+
name: 'Splendor Mainnet',
|
|
17127
|
+
chain: 'SPLENDOR',
|
|
17128
|
+
rpc: [ 'https://mainnet-rpc.splendor.org', 'https://splendor-rpc.org/' ],
|
|
17129
|
+
faucets: [],
|
|
17130
|
+
nativeCurrency: { name: 'Splendor Token', symbol: 'SPLD', decimals: 18 },
|
|
17131
|
+
features: [ { name: 'EIP155' } ],
|
|
17132
|
+
infoURL: 'https://splendor.org',
|
|
17133
|
+
shortName: 'spld',
|
|
17134
|
+
chainId: 2691,
|
|
17135
|
+
networkId: 2691,
|
|
17136
|
+
icon: 'splendor',
|
|
17137
|
+
explorers: [
|
|
17138
|
+
{
|
|
17139
|
+
name: 'Splendor Explorer',
|
|
17140
|
+
url: 'https://explorer.splendor.org',
|
|
17141
|
+
icon: 'splendor',
|
|
17142
|
+
standard: 'EIP3091'
|
|
17143
|
+
}
|
|
17144
|
+
]
|
|
17145
|
+
},
|
|
17146
|
+
{
|
|
17147
|
+
name: 'Splendor Testnet',
|
|
17148
|
+
chain: 'SPLD-TESTNET',
|
|
17149
|
+
rpc: [ 'https://testnet-rpc.splendor.org' ],
|
|
17150
|
+
faucets: [],
|
|
17151
|
+
nativeCurrency: { name: 'Splendor Test Token', symbol: 'SPLDT', decimals: 18 },
|
|
17152
|
+
features: [ { name: 'EIP155' } ],
|
|
17153
|
+
infoURL: 'https://splendor.org',
|
|
17154
|
+
shortName: 'spldt',
|
|
17155
|
+
chainId: 2692,
|
|
17156
|
+
networkId: 2692,
|
|
17157
|
+
icon: 'spld-testnet',
|
|
17158
|
+
explorers: [
|
|
17159
|
+
{
|
|
17160
|
+
name: 'Splendor Testnet Explorer',
|
|
17161
|
+
url: 'https://testnet-explorer.splendor.org',
|
|
17162
|
+
icon: 'splendor',
|
|
17163
|
+
standard: 'EIP3091'
|
|
17164
|
+
}
|
|
17165
|
+
]
|
|
17166
|
+
},
|
|
17125
17167
|
{
|
|
17126
17168
|
name: 'Morph Testnet',
|
|
17127
17169
|
chain: 'ETH',
|
|
@@ -29505,7 +29547,7 @@ const chainArray = [
|
|
|
29505
29547
|
chain: '1Money Network',
|
|
29506
29548
|
rpc: [ 'https://mainnet.1money.network' ],
|
|
29507
29549
|
faucets: [],
|
|
29508
|
-
nativeCurrency: { name: '
|
|
29550
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
|
29509
29551
|
features: [ { name: 'EIP155' } ],
|
|
29510
29552
|
infoURL: 'https://1money.com',
|
|
29511
29553
|
shortName: '1money',
|
|
@@ -43498,7 +43540,7 @@ const chainArray = [
|
|
|
43498
43540
|
chain: '1Money Testnet',
|
|
43499
43541
|
rpc: [ 'https://testnet.1money.network' ],
|
|
43500
43542
|
faucets: [],
|
|
43501
|
-
nativeCurrency: { name: '
|
|
43543
|
+
nativeCurrency: { name: 'FREE', symbol: 'FREE', decimals: 18 },
|
|
43502
43544
|
features: [ { name: 'EIP155' } ],
|
|
43503
43545
|
infoURL: 'https://1money.com',
|
|
43504
43546
|
shortName: '1money-testnet',
|