eth-chainlist 0.0.336 → 0.0.337
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 +12 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.337 (2024-02-10)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.336 ([3d40e63](https://github.com/poowf/eth-chainlist/commit/3d40e636fec2b95d1176b93c5819fed3422dafd8))
|
9
|
+
* update chain data ([7b34a69](https://github.com/poowf/eth-chainlist/commit/7b34a69ff304d45a0d6e8640635f912c2e58cf73))
|
10
|
+
|
3
11
|
### 0.0.336 (2024-02-07)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -9979,6 +9979,17 @@ const chainArray = [
|
|
9979
9979
|
}
|
9980
9980
|
]
|
9981
9981
|
},
|
9982
|
+
{
|
9983
|
+
name: 'Swan Saturn Testnet',
|
9984
|
+
chain: 'SWAN',
|
9985
|
+
rpc: [ 'https://saturn-rpc.swanchain.io' ],
|
9986
|
+
faucets: [],
|
9987
|
+
nativeCurrency: { name: 'SWANETH', symbol: 'SWAN', decimals: 18 },
|
9988
|
+
infoURL: 'https://swanchain.io/',
|
9989
|
+
shortName: 'swan',
|
9990
|
+
chainId: 2024,
|
9991
|
+
networkId: 2024
|
9992
|
+
},
|
9982
9993
|
{
|
9983
9994
|
name: 'Rangers Protocol Mainnet',
|
9984
9995
|
chain: 'Rangers',
|
@@ -21159,7 +21170,7 @@ const chainArray = [
|
|
21159
21170
|
chain: 'ETH',
|
21160
21171
|
status: 'active',
|
21161
21172
|
icon: 'taiko',
|
21162
|
-
rpc: [ 'https://rpc.katla.taiko.xyz' ],
|
21173
|
+
rpc: [ 'https://rpc.katla.taiko.xyz', 'wss://rpc.katla.taiko.xyz' ],
|
21163
21174
|
faucets: [],
|
21164
21175
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
21165
21176
|
infoURL: 'https://taiko.xyz',
|