@rabby-wallet/hyperliquid-sdk 1.1.4-beta.2 → 1.1.4-beta.3
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/types/index.d.ts +2 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -139,6 +139,7 @@ export interface WsClearinghouseState {
|
|
|
139
139
|
}
|
|
140
140
|
export interface WsAllClearinghouseStates {
|
|
141
141
|
clearinghouseStates: [string, ClearinghouseState][];
|
|
142
|
+
user: string;
|
|
142
143
|
}
|
|
143
144
|
export interface ClearinghouseState {
|
|
144
145
|
assetPositions: AssetPosition[];
|
|
@@ -368,7 +369,7 @@ export interface WsActiveAssetCtx {
|
|
|
368
369
|
};
|
|
369
370
|
}
|
|
370
371
|
export interface WsAllDexsAssetCtxs {
|
|
371
|
-
ctxs: [string, AssetCtx][];
|
|
372
|
+
ctxs: [string, AssetCtx[]][];
|
|
372
373
|
}
|
|
373
374
|
export interface WsAllClearinghouseStates {
|
|
374
375
|
clearinghouseStates: [string, ClearinghouseState][];
|
package/package.json
CHANGED