eth-chainlist 0.0.794 → 0.0.795
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 +86 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.795 (2026-07-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.794 ([783859b](https://github.com/poowf/eth-chainlist/commit/783859b67b292b6fc5a4227d8f20afa0d9f835ea))
|
|
9
|
+
* update chain data ([4a91172](https://github.com/poowf/eth-chainlist/commit/4a91172c01e87e942dfe3ef79331ee440376d261))
|
|
10
|
+
|
|
3
11
|
### 0.0.794 (2026-07-25)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -30276,6 +30276,25 @@ const chainArray = [
|
|
|
30276
30276
|
}
|
|
30277
30277
|
]
|
|
30278
30278
|
},
|
|
30279
|
+
{
|
|
30280
|
+
name: 'Liberty Testnet',
|
|
30281
|
+
chain: 'LBRTY',
|
|
30282
|
+
icon: 'lbrty',
|
|
30283
|
+
rpc: [ 'https://testnet-rpc.libertychain.org' ],
|
|
30284
|
+
faucets: [],
|
|
30285
|
+
nativeCurrency: { name: 'Liberty', symbol: 'LBRTY', decimals: 18 },
|
|
30286
|
+
infoURL: 'https://libertychain.org',
|
|
30287
|
+
shortName: 'lbrty-testnet',
|
|
30288
|
+
chainId: 13373,
|
|
30289
|
+
networkId: 13373,
|
|
30290
|
+
explorers: [
|
|
30291
|
+
{
|
|
30292
|
+
name: 'blockscout',
|
|
30293
|
+
url: 'https://explorer.libertychain.org',
|
|
30294
|
+
standard: 'EIP3091'
|
|
30295
|
+
}
|
|
30296
|
+
]
|
|
30297
|
+
},
|
|
30279
30298
|
{
|
|
30280
30299
|
name: 'Phoenix Mainnet',
|
|
30281
30300
|
chain: 'Phoenix',
|
|
@@ -38847,6 +38866,25 @@ const chainArray = [
|
|
|
38847
38866
|
}
|
|
38848
38867
|
]
|
|
38849
38868
|
},
|
|
38869
|
+
{
|
|
38870
|
+
name: 'Rayls Mainnet',
|
|
38871
|
+
chain: 'Rayls',
|
|
38872
|
+
icon: 'rayls',
|
|
38873
|
+
rpc: [ 'https://mainnet-rpc.rayls.com' ],
|
|
38874
|
+
faucets: [],
|
|
38875
|
+
nativeCurrency: { name: 'USD Rayls', symbol: 'USDr', decimals: 18 },
|
|
38876
|
+
infoURL: 'https://rayls.com',
|
|
38877
|
+
shortName: 'rayls',
|
|
38878
|
+
chainId: 72957,
|
|
38879
|
+
networkId: 72957,
|
|
38880
|
+
explorers: [
|
|
38881
|
+
{
|
|
38882
|
+
name: 'Rayls Explorer',
|
|
38883
|
+
url: 'https://explorer.rayls.com',
|
|
38884
|
+
standard: 'EIP3091'
|
|
38885
|
+
}
|
|
38886
|
+
]
|
|
38887
|
+
},
|
|
38850
38888
|
{
|
|
38851
38889
|
name: 'Grok Chain Mainnet',
|
|
38852
38890
|
chain: 'Grok',
|
|
@@ -42195,10 +42233,8 @@ const chainArray = [
|
|
|
42195
42233
|
{
|
|
42196
42234
|
name: 'Mars Credit',
|
|
42197
42235
|
chain: 'MARS',
|
|
42198
|
-
rpc: [
|
|
42199
|
-
|
|
42200
|
-
'https://rpc.marscredit.xyz:443'
|
|
42201
|
-
],
|
|
42236
|
+
rpc: [ 'https://rpc.marscredit.xyz:443' ],
|
|
42237
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
42202
42238
|
faucets: [],
|
|
42203
42239
|
nativeCurrency: { name: 'Mars Credit', symbol: 'MARS', decimals: 18 },
|
|
42204
42240
|
infoURL: 'https://marscredit.xyz/',
|
|
@@ -42207,7 +42243,13 @@ const chainArray = [
|
|
|
42207
42243
|
networkId: 110110,
|
|
42208
42244
|
slip44: 1,
|
|
42209
42245
|
icon: 'marscredit',
|
|
42210
|
-
explorers: [
|
|
42246
|
+
explorers: [
|
|
42247
|
+
{
|
|
42248
|
+
name: 'blockscout',
|
|
42249
|
+
url: 'https://blockscan.marscredit.xyz',
|
|
42250
|
+
standard: 'EIP3091'
|
|
42251
|
+
}
|
|
42252
|
+
],
|
|
42211
42253
|
redFlags: []
|
|
42212
42254
|
},
|
|
42213
42255
|
{
|
|
@@ -42505,6 +42547,25 @@ const chainArray = [
|
|
|
42505
42547
|
}
|
|
42506
42548
|
]
|
|
42507
42549
|
},
|
|
42550
|
+
{
|
|
42551
|
+
name: 'SWSS Chain',
|
|
42552
|
+
chain: 'SWSS',
|
|
42553
|
+
icon: 'swss',
|
|
42554
|
+
rpc: [ 'https://swssrpc.swss.io' ],
|
|
42555
|
+
faucets: [],
|
|
42556
|
+
nativeCurrency: { name: 'SWSS Coin', symbol: 'SWSS', decimals: 18 },
|
|
42557
|
+
infoURL: 'https://swss.io',
|
|
42558
|
+
shortName: 'swss',
|
|
42559
|
+
chainId: 122605,
|
|
42560
|
+
networkId: 122605,
|
|
42561
|
+
explorers: [
|
|
42562
|
+
{
|
|
42563
|
+
name: 'SWSS Chain Scan',
|
|
42564
|
+
url: 'https://swssscan.swss.io',
|
|
42565
|
+
standard: 'EIP3091'
|
|
42566
|
+
}
|
|
42567
|
+
]
|
|
42568
|
+
},
|
|
42508
42569
|
{
|
|
42509
42570
|
name: 'Gemchain',
|
|
42510
42571
|
chain: 'Gemchain',
|
|
@@ -48870,6 +48931,26 @@ const chainArray = [
|
|
|
48870
48931
|
}
|
|
48871
48932
|
]
|
|
48872
48933
|
},
|
|
48934
|
+
{
|
|
48935
|
+
name: 'GGCHAIN Mainnet',
|
|
48936
|
+
chain: 'GGCHAIN',
|
|
48937
|
+
icon: 'ggchain',
|
|
48938
|
+
rpc: [ 'https://rpc.gghyper.net' ],
|
|
48939
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
48940
|
+
faucets: [ 'https://gghyper.net/faucet' ],
|
|
48941
|
+
nativeCurrency: { name: 'GG', symbol: 'GG', decimals: 18 },
|
|
48942
|
+
infoURL: 'https://gghyper.net',
|
|
48943
|
+
shortName: 'ggchain',
|
|
48944
|
+
chainId: 2121217,
|
|
48945
|
+
networkId: 2121217,
|
|
48946
|
+
explorers: [
|
|
48947
|
+
{
|
|
48948
|
+
name: 'GGCHAIN Explorer',
|
|
48949
|
+
url: 'https://explorer.gghyper.net',
|
|
48950
|
+
standard: 'EIP3091'
|
|
48951
|
+
}
|
|
48952
|
+
]
|
|
48953
|
+
},
|
|
48873
48954
|
{
|
|
48874
48955
|
name: 'PlatON Dev Testnet Deprecated',
|
|
48875
48956
|
chain: 'PlatON',
|