@pear-protocol/hyperliquid-sdk 0.0.60-beta → 0.0.60-beta.2

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.d.ts CHANGED
@@ -9,6 +9,8 @@ interface PearHyperliquidContextType {
9
9
  lastError: string | null;
10
10
  nativeIsConnected: boolean;
11
11
  nativeLastError: string | null;
12
+ setAddress: (address: string) => void;
13
+ address: string | null;
12
14
  }
13
15
  interface PearHyperliquidProviderProps {
14
16
  children: ReactNode;
package/dist/index.js CHANGED
@@ -7061,6 +7061,7 @@ function useAuth() {
7061
7061
  return;
7062
7062
  }
7063
7063
  }
7064
+ setIsReady(true);
7064
7065
  }, [
7065
7066
  setAccessToken,
7066
7067
  setRefreshToken,
@@ -7,6 +7,8 @@ export interface PearHyperliquidContextType {
7
7
  lastError: string | null;
8
8
  nativeIsConnected: boolean;
9
9
  nativeLastError: string | null;
10
+ setAddress: (address: string) => void;
11
+ address: string | null;
10
12
  }
11
13
  export declare const PearHyperliquidContext: React.Context<PearHyperliquidContextType | undefined>;
12
14
  interface PearHyperliquidProviderProps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pear-protocol/hyperliquid-sdk",
3
- "version": "0.0.60-beta",
3
+ "version": "0.0.60-beta.2",
4
4
  "description": "React SDK for Pear Protocol Hyperliquid API integration",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",