@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.
Files changed (2) hide show
  1. package/dist/index.js +1 -2
  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
- // Only show HL and XYZ for now as other are using USDH collateral and need more work
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) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pear-protocol/hyperliquid-sdk",
3
- "version": "0.0.59",
3
+ "version": "0.0.60",
4
4
  "description": "React SDK for Pear Protocol Hyperliquid API integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",