@pear-protocol/hyperliquid-sdk 0.0.59 → 0.0.60
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/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7135,8 +7135,7 @@ const PearHyperliquidProvider = ({ children, apiBaseUrl = 'https://hl-v2.pearpro
|
|
|
7135
7135
|
useEffect(() => {
|
|
7136
7136
|
if (perpsMetaAssets === null) {
|
|
7137
7137
|
fetchAllPerpMetas().then(res => {
|
|
7138
|
-
|
|
7139
|
-
const aggregatedPerpMetas = res.data.slice(0, 2).flatMap(item => item.universe);
|
|
7138
|
+
const aggregatedPerpMetas = res.data.flatMap(item => item.universe);
|
|
7140
7139
|
const hip3Map = new Map();
|
|
7141
7140
|
const displayToFull = new Map();
|
|
7142
7141
|
const cleanedPerpMetas = aggregatedPerpMetas.map((asset) => {
|