eth-chainlist 0.0.256 → 0.0.257
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 +20 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.257 (2023-10-12)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.256 ([15ba860](https://github.com/poowf/eth-chainlist/commit/15ba860c3b63194c75515621398f1509586cdf33))
|
9
|
+
* update chain data ([d5859fc](https://github.com/poowf/eth-chainlist/commit/d5859fced9e92b1da43906494709293ab4e94a04))
|
10
|
+
|
3
11
|
### 0.0.256 (2023-10-11)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -17225,6 +17225,26 @@ const chainArray = [
|
|
17225
17225
|
}
|
17226
17226
|
]
|
17227
17227
|
},
|
17228
|
+
{
|
17229
|
+
name: 'Base Sepolia Testnet',
|
17230
|
+
chain: 'ETH',
|
17231
|
+
rpc: [ 'https://sepolia.base.org' ],
|
17232
|
+
faucets: [],
|
17233
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
17234
|
+
infoURL: 'https://base.org',
|
17235
|
+
shortName: 'basesep',
|
17236
|
+
chainId: 84532,
|
17237
|
+
networkId: 84532,
|
17238
|
+
icon: 'baseTestnet',
|
17239
|
+
explorers: [
|
17240
|
+
{
|
17241
|
+
name: 'basescout',
|
17242
|
+
url: 'https://base-sepolia.blockscout.com',
|
17243
|
+
icon: 'blockscout',
|
17244
|
+
standard: 'EIP3091'
|
17245
|
+
}
|
17246
|
+
]
|
17247
|
+
},
|
17228
17248
|
{
|
17229
17249
|
name: 'Aerie Network',
|
17230
17250
|
chain: 'Aerie',
|