eth-chainlist 0.0.219 → 0.0.220
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 +4 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.220 (2023-08-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.219 ([eecc0ea](https://github.com/poowf/eth-chainlist/commit/eecc0ea5e7e57de60b37f89c3d99004016efed4e))
|
9
|
+
* update chain data ([e26c83b](https://github.com/poowf/eth-chainlist/commit/e26c83b752ba67d0da02abe2cf050919b03baaa5))
|
10
|
+
|
3
11
|
### 0.0.219 (2023-08-26)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -11853,7 +11853,8 @@ const chainArray = [
|
|
11853
11853
|
'https://mainnet.base.org/',
|
11854
11854
|
'https://developer-access-mainnet.base.org/',
|
11855
11855
|
'https://base.gateway.tenderly.co',
|
11856
|
-
'wss://base.gateway.tenderly.co'
|
11856
|
+
'wss://base.gateway.tenderly.co',
|
11857
|
+
'https://base.publicnode.com'
|
11857
11858
|
],
|
11858
11859
|
faucets: [],
|
11859
11860
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
@@ -15926,7 +15927,8 @@ const chainArray = [
|
|
15926
15927
|
rpc: [
|
15927
15928
|
'https://goerli.base.org',
|
15928
15929
|
'https://base-goerli.gateway.tenderly.co',
|
15929
|
-
'wss://base-goerli.gateway.tenderly.co'
|
15930
|
+
'wss://base-goerli.gateway.tenderly.co',
|
15931
|
+
'https://base-goerli.publicnode.com'
|
15930
15932
|
],
|
15931
15933
|
faucets: [ 'https://www.coinbase.com/faucets/base-ethereum-goerli-faucet' ],
|
15932
15934
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|