eth-chainlist 0.0.776 → 0.0.777
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 +40 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.777 (2026-05-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.776 ([c7300ce](https://github.com/poowf/eth-chainlist/commit/c7300ceefb8a5fc696fdc4fee39cddb171ad3126))
|
|
9
|
+
* update chain data ([fb2e014](https://github.com/poowf/eth-chainlist/commit/fb2e0141a7ac501a3d2ecff741092f25912e4bef))
|
|
10
|
+
|
|
3
11
|
### 0.0.776 (2026-05-20)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -6551,6 +6551,26 @@ const chainArray = [
|
|
|
6551
6551
|
}
|
|
6552
6552
|
]
|
|
6553
6553
|
},
|
|
6554
|
+
{
|
|
6555
|
+
name: 'LunaroChain Mainnet',
|
|
6556
|
+
chain: 'LNR',
|
|
6557
|
+
rpc: [ 'https://rpc.lunaro.network' ],
|
|
6558
|
+
faucets: [],
|
|
6559
|
+
nativeCurrency: { name: 'Lunaro', symbol: 'LNR', decimals: 18 },
|
|
6560
|
+
features: [ { name: 'EIP155' } ],
|
|
6561
|
+
infoURL: 'https://lunaro.network',
|
|
6562
|
+
shortName: 'lnr',
|
|
6563
|
+
chainId: 389,
|
|
6564
|
+
networkId: 389,
|
|
6565
|
+
icon: 'lunaro',
|
|
6566
|
+
explorers: [
|
|
6567
|
+
{
|
|
6568
|
+
name: 'LunaroScan',
|
|
6569
|
+
url: 'https://scan.lunaro.network',
|
|
6570
|
+
standard: 'EIP3091'
|
|
6571
|
+
}
|
|
6572
|
+
]
|
|
6573
|
+
},
|
|
6554
6574
|
{
|
|
6555
6575
|
name: 'CamDL Testnet',
|
|
6556
6576
|
chain: 'CADL',
|
|
@@ -42272,6 +42292,26 @@ const chainArray = [
|
|
|
42272
42292
|
bridges: [ { url: 'https://sepolia-op-bridge.form.network' } ]
|
|
42273
42293
|
}
|
|
42274
42294
|
},
|
|
42295
|
+
{
|
|
42296
|
+
name: 'BEXChain',
|
|
42297
|
+
chain: 'BEX',
|
|
42298
|
+
rpc: [ 'https://rpc.bexchain.com' ],
|
|
42299
|
+
faucets: [],
|
|
42300
|
+
nativeCurrency: { name: 'BEX', symbol: 'BEX', decimals: 18 },
|
|
42301
|
+
infoURL: 'https://bexchain.com',
|
|
42302
|
+
shortName: 'bexchain',
|
|
42303
|
+
chainId: 140586,
|
|
42304
|
+
networkId: 140586,
|
|
42305
|
+
slip44: 60,
|
|
42306
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
42307
|
+
explorers: [
|
|
42308
|
+
{
|
|
42309
|
+
name: 'BEXChain Scan',
|
|
42310
|
+
url: 'https://scan.bexchain.com',
|
|
42311
|
+
standard: 'EIP3091'
|
|
42312
|
+
}
|
|
42313
|
+
]
|
|
42314
|
+
},
|
|
42275
42315
|
{
|
|
42276
42316
|
name: 'MagApe Testnet',
|
|
42277
42317
|
title: 'MagApeChain',
|