@rabby-wallet/hyperliquid-sdk 1.1.2-beta.7 → 1.1.2-beta.8
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 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export interface UserHistoricalOrders {
|
|
|
28
28
|
tif: string;
|
|
29
29
|
cloid: string | null;
|
|
30
30
|
};
|
|
31
|
-
status:
|
|
31
|
+
status: string;
|
|
32
32
|
statusTimestamp: number;
|
|
33
33
|
}
|
|
34
34
|
export interface WsUserFunding {
|
|
@@ -268,7 +268,7 @@ export interface WsUserFills {
|
|
|
268
268
|
export interface WsUserHistoricalOrders {
|
|
269
269
|
isSnapshot?: boolean;
|
|
270
270
|
user: string;
|
|
271
|
-
|
|
271
|
+
orderHistory: UserHistoricalOrders[];
|
|
272
272
|
}
|
|
273
273
|
export interface WsFill {
|
|
274
274
|
coin: string;
|
package/package.json
CHANGED