eth-chainlist 0.0.741 → 0.0.742
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 +115 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.742 (2026-03-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.741 ([ce116fa](https://github.com/poowf/eth-chainlist/commit/ce116fa3fdd23024609f9f1961c94fee0084bace))
|
|
9
|
+
* update chain data ([2d2c0c9](https://github.com/poowf/eth-chainlist/commit/2d2c0c9b013339195719f2c99ce4cfc10399aed9))
|
|
10
|
+
|
|
3
11
|
### 0.0.741 (2026-03-24)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -8690,6 +8690,29 @@ const chainArray = [
|
|
|
8690
8690
|
}
|
|
8691
8691
|
]
|
|
8692
8692
|
},
|
|
8693
|
+
{
|
|
8694
|
+
name: 'Bitasset Chain Mainnet',
|
|
8695
|
+
chain: 'BAC',
|
|
8696
|
+
rpc: [ 'https://rpc.bitassetchain.io' ],
|
|
8697
|
+
faucets: [],
|
|
8698
|
+
nativeCurrency: {
|
|
8699
|
+
name: 'Bitasset Chain Native Token',
|
|
8700
|
+
symbol: 'BAC',
|
|
8701
|
+
decimals: 18
|
|
8702
|
+
},
|
|
8703
|
+
infoURL: 'https://bitassetchain.io',
|
|
8704
|
+
shortName: 'bac',
|
|
8705
|
+
chainId: 723,
|
|
8706
|
+
networkId: 723,
|
|
8707
|
+
icon: 'bac',
|
|
8708
|
+
explorers: [
|
|
8709
|
+
{
|
|
8710
|
+
name: 'bacscan',
|
|
8711
|
+
url: 'https://bacscan.net',
|
|
8712
|
+
standard: 'EIP3091'
|
|
8713
|
+
}
|
|
8714
|
+
]
|
|
8715
|
+
},
|
|
8693
8716
|
{
|
|
8694
8717
|
name: 'Blucrates',
|
|
8695
8718
|
chain: 'BLU',
|
|
@@ -35212,6 +35235,53 @@ const chainArray = [
|
|
|
35212
35235
|
],
|
|
35213
35236
|
parent: { type: 'L2', chain: 'eip155-42161', bridges: [] }
|
|
35214
35237
|
},
|
|
35238
|
+
{
|
|
35239
|
+
name: 'DUST Testnet',
|
|
35240
|
+
chain: 'ETH',
|
|
35241
|
+
rpc: [
|
|
35242
|
+
'https://rpc.testnet.dustproject.org',
|
|
35243
|
+
'wss://rpc.testnet.dustproject.org'
|
|
35244
|
+
],
|
|
35245
|
+
faucets: [],
|
|
35246
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
35247
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
35248
|
+
infoURL: 'https://dustproject.org',
|
|
35249
|
+
shortName: 'dust-testnet',
|
|
35250
|
+
chainId: 55377,
|
|
35251
|
+
networkId: 55377,
|
|
35252
|
+
icon: 'dust',
|
|
35253
|
+
explorers: [
|
|
35254
|
+
{
|
|
35255
|
+
name: 'blockscout',
|
|
35256
|
+
url: 'https://explorer.testnet.dustproject.org',
|
|
35257
|
+
icon: 'blockscout',
|
|
35258
|
+
standard: 'EIP3091'
|
|
35259
|
+
}
|
|
35260
|
+
],
|
|
35261
|
+
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] }
|
|
35262
|
+
},
|
|
35263
|
+
{
|
|
35264
|
+
name: 'DUST Mainnet',
|
|
35265
|
+
chain: 'ETH',
|
|
35266
|
+
rpc: [ 'https://rpc.dustproject.org', 'wss://rpc.dustproject.org' ],
|
|
35267
|
+
faucets: [],
|
|
35268
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
35269
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
35270
|
+
infoURL: 'https://dustproject.org',
|
|
35271
|
+
shortName: 'dust-mainnet',
|
|
35272
|
+
chainId: 55378,
|
|
35273
|
+
networkId: 55378,
|
|
35274
|
+
icon: 'dust',
|
|
35275
|
+
explorers: [
|
|
35276
|
+
{
|
|
35277
|
+
name: 'blockscout',
|
|
35278
|
+
url: 'https://explorer.dustproject.org',
|
|
35279
|
+
icon: 'blockscout',
|
|
35280
|
+
standard: 'EIP3091'
|
|
35281
|
+
}
|
|
35282
|
+
],
|
|
35283
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [] }
|
|
35284
|
+
},
|
|
35215
35285
|
{
|
|
35216
35286
|
name: 'Photon Aurora Testnet',
|
|
35217
35287
|
chain: 'Photon',
|
|
@@ -36517,6 +36587,29 @@ const chainArray = [
|
|
|
36517
36587
|
}
|
|
36518
36588
|
]
|
|
36519
36589
|
},
|
|
36590
|
+
{
|
|
36591
|
+
name: 'Bitasset Chain Testnet Ploutos',
|
|
36592
|
+
chain: 'BAC',
|
|
36593
|
+
rpc: [ 'https://ploutos-rpc.bitassetchain.io' ],
|
|
36594
|
+
faucets: [],
|
|
36595
|
+
nativeCurrency: {
|
|
36596
|
+
name: 'Bitasset Chain Native Token',
|
|
36597
|
+
symbol: 'BAC',
|
|
36598
|
+
decimals: 18
|
|
36599
|
+
},
|
|
36600
|
+
infoURL: 'https://bitassetchain.io',
|
|
36601
|
+
shortName: 'bac-ploutos',
|
|
36602
|
+
chainId: 66666,
|
|
36603
|
+
networkId: 66666,
|
|
36604
|
+
icon: 'bac',
|
|
36605
|
+
explorers: [
|
|
36606
|
+
{
|
|
36607
|
+
name: 'bacscan-ploutos',
|
|
36608
|
+
url: 'https://ploutos.bacscan.net',
|
|
36609
|
+
standard: 'EIP3091'
|
|
36610
|
+
}
|
|
36611
|
+
]
|
|
36612
|
+
},
|
|
36520
36613
|
{
|
|
36521
36614
|
name: 'Janus Testnet',
|
|
36522
36615
|
chain: 'JanusNetwork',
|
|
@@ -49472,6 +49565,28 @@ const chainArray = [
|
|
|
49472
49565
|
bridges: [ { url: 'https://bridge.gelato.network/bridge/reya-cronos' } ]
|
|
49473
49566
|
}
|
|
49474
49567
|
},
|
|
49568
|
+
{
|
|
49569
|
+
name: 'MST Testnet',
|
|
49570
|
+
chain: 'MST',
|
|
49571
|
+
rpc: [
|
|
49572
|
+
'https://testnetrpc.mstblockchain.com',
|
|
49573
|
+
'wss://testnetrpc.mstblockchain.com'
|
|
49574
|
+
],
|
|
49575
|
+
faucets: [ 'https://faucet.mstblockchain.com' ],
|
|
49576
|
+
nativeCurrency: { name: 'MST Native Coin', symbol: 'tMSTC', decimals: 18 },
|
|
49577
|
+
infoURL: 'https://mstblockchain.com',
|
|
49578
|
+
shortName: 'mst-testnet',
|
|
49579
|
+
chainId: 91562037,
|
|
49580
|
+
networkId: 91562037,
|
|
49581
|
+
icon: 'mst',
|
|
49582
|
+
explorers: [
|
|
49583
|
+
{
|
|
49584
|
+
name: 'mstscan',
|
|
49585
|
+
url: 'https://testnet.mstscan.com',
|
|
49586
|
+
standard: 'EIP3091'
|
|
49587
|
+
}
|
|
49588
|
+
]
|
|
49589
|
+
},
|
|
49475
49590
|
{
|
|
49476
49591
|
name: 'Polygon Blackberry',
|
|
49477
49592
|
title: 'Polygon Blackberry Testnet',
|