@nktkas/hyperliquid 0.13.1 → 0.13.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/LICENSE +20 -20
- package/README.md +33 -17
- package/esm/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts +9 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/bytes/1.0.5/_types.js +2 -0
- package/esm/deps/jsr.io/@std/bytes/{1.0.4 → 1.0.5}/concat.d.ts +3 -1
- package/esm/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/bytes/{1.0.4 → 1.0.5}/concat.js +1 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts +9 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/1.0.7/_types.js +2 -0
- package/esm/deps/jsr.io/@std/encoding/{1.0.6 → 1.0.7}/_validate_binary_like.d.ts.map +1 -1
- package/esm/deps/jsr.io/@std/encoding/{1.0.6 → 1.0.7}/_validate_binary_like.js +1 -1
- package/{script/deps/jsr.io/@std/encoding/1.0.6 → esm/deps/jsr.io/@std/encoding/1.0.7}/hex.d.ts +3 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.7/hex.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/encoding/{1.0.6 → 1.0.7}/hex.js +1 -1
- package/esm/deps/jsr.io/@std/msgpack/1.0.3/_types.d.ts +9 -0
- package/esm/deps/jsr.io/@std/msgpack/1.0.3/_types.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/msgpack/1.0.3/_types.js +2 -0
- package/esm/deps/jsr.io/@std/msgpack/{1.0.2 → 1.0.3}/encode.d.ts +3 -1
- package/esm/deps/jsr.io/@std/msgpack/1.0.3/encode.d.ts.map +1 -0
- package/esm/deps/jsr.io/@std/msgpack/{1.0.2 → 1.0.3}/encode.js +2 -2
- package/esm/mod.d.ts +1 -0
- package/esm/mod.d.ts.map +1 -1
- package/esm/src/clients/event.d.ts +57 -16
- package/esm/src/clients/event.d.ts.map +1 -1
- package/esm/src/clients/event.js +72 -16
- package/esm/src/clients/public.d.ts +241 -49
- package/esm/src/clients/public.d.ts.map +1 -1
- package/esm/src/clients/public.js +243 -47
- package/esm/src/clients/wallet.d.ts +120 -51
- package/esm/src/clients/wallet.d.ts.map +1 -1
- package/esm/src/clients/wallet.js +192 -58
- package/esm/src/transports/websocket/hyperliquid_event_target.d.ts +27 -21
- package/esm/src/transports/websocket/hyperliquid_event_target.d.ts.map +1 -1
- package/esm/src/transports/websocket/hyperliquid_event_target.js +37 -0
- package/esm/src/transports/websocket/websocket_request_dispatcher.js +3 -3
- package/esm/src/transports/websocket/websocket_transport.d.ts +7 -10
- package/esm/src/transports/websocket/websocket_transport.d.ts.map +1 -1
- package/esm/src/transports/websocket/websocket_transport.js +41 -35
- package/esm/src/types/exchange/common.d.ts +6 -6
- package/esm/src/types/exchange/common.d.ts.map +1 -1
- package/esm/src/types/exchange/requests.d.ts +131 -64
- package/esm/src/types/exchange/requests.d.ts.map +1 -1
- package/esm/src/types/exchange/responses.d.ts +7 -7
- package/esm/src/types/exchange/responses.d.ts.map +1 -1
- package/esm/src/types/explorer/common.d.ts +15 -15
- package/esm/src/types/explorer/common.d.ts.map +1 -1
- package/esm/src/types/explorer/requests.d.ts +19 -6
- package/esm/src/types/explorer/requests.d.ts.map +1 -1
- package/esm/src/types/explorer/responses.d.ts +9 -2
- package/esm/src/types/explorer/responses.d.ts.map +1 -1
- package/esm/src/types/info/accounts.d.ts +189 -124
- package/esm/src/types/info/accounts.d.ts.map +1 -1
- package/esm/src/types/info/assets.d.ts +82 -78
- package/esm/src/types/info/assets.d.ts.map +1 -1
- package/esm/src/types/info/delegations.d.ts +117 -0
- package/esm/src/types/info/delegations.d.ts.map +1 -0
- package/esm/src/types/info/delegations.js +1 -0
- package/esm/src/types/info/orders.d.ts +67 -67
- package/esm/src/types/info/orders.d.ts.map +1 -1
- package/esm/src/types/info/requests.d.ts +128 -63
- package/esm/src/types/info/requests.d.ts.map +1 -1
- package/esm/src/types/info/vaults.d.ts +41 -84
- package/esm/src/types/info/vaults.d.ts.map +1 -1
- package/esm/src/types/subscriptions/common.d.ts +3 -0
- package/esm/src/types/subscriptions/common.d.ts.map +1 -1
- package/esm/src/types/subscriptions/requests.d.ts +10 -0
- package/esm/src/types/subscriptions/requests.d.ts.map +1 -1
- package/esm/src/utils/key_sort.d.ts +2 -2
- package/esm/src/utils/key_sort.d.ts.map +1 -1
- package/esm/src/utils/signing.d.ts +1 -1
- package/esm/src/utils/signing.js +2 -2
- package/package.json +1 -1
- package/script/deps/jsr.io/@derzade/typescript-event-target/1.1.1/mod.js +13 -3
- package/script/deps/jsr.io/@derzade/typescript-event-target/1.1.1/src/TypedEventTarget.js +23 -13
- package/script/deps/jsr.io/@noble/hashes/1.7.1/src/_assert.js +55 -45
- package/script/deps/jsr.io/@noble/hashes/1.7.1/src/_u64.js +97 -87
- package/script/deps/jsr.io/@noble/hashes/1.7.1/src/crypto.js +14 -4
- package/script/deps/jsr.io/@noble/hashes/1.7.1/src/sha3.js +288 -278
- package/script/deps/jsr.io/@noble/hashes/1.7.1/src/utils.js +238 -228
- package/script/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts +9 -0
- package/script/deps/jsr.io/@std/bytes/1.0.5/_types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/bytes/1.0.5/_types.js +13 -0
- package/script/deps/jsr.io/@std/bytes/{1.0.4 → 1.0.5}/concat.d.ts +3 -1
- package/script/deps/jsr.io/@std/bytes/1.0.5/concat.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/bytes/1.0.5/concat.js +45 -0
- package/script/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts +9 -0
- package/script/deps/jsr.io/@std/encoding/1.0.7/_types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.7/_types.js +13 -0
- package/script/deps/jsr.io/@std/encoding/{1.0.6 → 1.0.7}/_validate_binary_like.d.ts.map +1 -1
- package/script/deps/jsr.io/@std/encoding/1.0.7/_validate_binary_like.js +39 -0
- package/{esm/deps/jsr.io/@std/encoding/1.0.6 → script/deps/jsr.io/@std/encoding/1.0.7}/hex.d.ts +3 -1
- package/script/deps/jsr.io/@std/encoding/1.0.7/hex.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/encoding/1.0.7/hex.js +123 -0
- package/script/deps/jsr.io/@std/msgpack/1.0.3/_types.d.ts +9 -0
- package/script/deps/jsr.io/@std/msgpack/1.0.3/_types.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/msgpack/1.0.3/_types.js +13 -0
- package/script/deps/jsr.io/@std/msgpack/{1.0.2 → 1.0.3}/encode.d.ts +3 -1
- package/script/deps/jsr.io/@std/msgpack/1.0.3/encode.d.ts.map +1 -0
- package/script/deps/jsr.io/@std/msgpack/1.0.3/encode.js +250 -0
- package/script/mod.d.ts +1 -0
- package/script/mod.d.ts.map +1 -1
- package/script/mod.js +23 -13
- package/script/src/clients/event.d.ts +57 -16
- package/script/src/clients/event.d.ts.map +1 -1
- package/script/src/clients/event.js +551 -485
- package/script/src/clients/public.d.ts +241 -49
- package/script/src/clients/public.d.ts.map +1 -1
- package/script/src/clients/public.js +914 -708
- package/script/src/clients/wallet.d.ts +120 -51
- package/script/src/clients/wallet.d.ts.map +1 -1
- package/script/src/clients/wallet.js +1121 -977
- package/script/src/transports/base.js +25 -15
- package/script/src/transports/http/http_transport.js +174 -164
- package/script/src/transports/websocket/hyperliquid_event_target.d.ts +27 -21
- package/script/src/transports/websocket/hyperliquid_event_target.d.ts.map +1 -1
- package/script/src/transports/websocket/hyperliquid_event_target.js +80 -33
- package/script/src/transports/websocket/reconnecting_websocket.js +364 -354
- package/script/src/transports/websocket/websocket_request_dispatcher.js +196 -186
- package/script/src/transports/websocket/websocket_transport.d.ts +7 -10
- package/script/src/transports/websocket/websocket_transport.d.ts.map +1 -1
- package/script/src/transports/websocket/websocket_transport.js +236 -220
- package/script/src/types/common.js +12 -2
- package/script/src/types/exchange/common.d.ts +6 -6
- package/script/src/types/exchange/common.d.ts.map +1 -1
- package/script/src/types/exchange/common.js +12 -2
- package/script/src/types/exchange/requests.d.ts +131 -64
- package/script/src/types/exchange/requests.d.ts.map +1 -1
- package/script/src/types/exchange/requests.js +12 -2
- package/script/src/types/exchange/responses.d.ts +7 -7
- package/script/src/types/exchange/responses.d.ts.map +1 -1
- package/script/src/types/exchange/responses.js +12 -2
- package/script/src/types/explorer/common.d.ts +15 -15
- package/script/src/types/explorer/common.d.ts.map +1 -1
- package/script/src/types/explorer/common.js +12 -2
- package/script/src/types/explorer/requests.d.ts +19 -6
- package/script/src/types/explorer/requests.d.ts.map +1 -1
- package/script/src/types/explorer/requests.js +12 -2
- package/script/src/types/explorer/responses.d.ts +9 -2
- package/script/src/types/explorer/responses.d.ts.map +1 -1
- package/script/src/types/explorer/responses.js +12 -2
- package/script/src/types/info/accounts.d.ts +189 -124
- package/script/src/types/info/accounts.d.ts.map +1 -1
- package/script/src/types/info/accounts.js +12 -2
- package/script/src/types/info/assets.d.ts +82 -78
- package/script/src/types/info/assets.d.ts.map +1 -1
- package/script/src/types/info/assets.js +12 -2
- package/script/src/types/info/delegations.d.ts +117 -0
- package/script/src/types/info/delegations.d.ts.map +1 -0
- package/script/src/types/info/delegations.js +12 -0
- package/script/src/types/info/orders.d.ts +67 -67
- package/script/src/types/info/orders.d.ts.map +1 -1
- package/script/src/types/info/orders.js +12 -2
- package/script/src/types/info/requests.d.ts +128 -63
- package/script/src/types/info/requests.d.ts.map +1 -1
- package/script/src/types/info/requests.js +12 -2
- package/script/src/types/info/vaults.d.ts +41 -84
- package/script/src/types/info/vaults.d.ts.map +1 -1
- package/script/src/types/info/vaults.js +12 -2
- package/script/src/types/subscriptions/common.d.ts +3 -0
- package/script/src/types/subscriptions/common.d.ts.map +1 -1
- package/script/src/types/subscriptions/common.js +12 -2
- package/script/src/types/subscriptions/requests.d.ts +10 -0
- package/script/src/types/subscriptions/requests.d.ts.map +1 -1
- package/script/src/types/subscriptions/requests.js +12 -2
- package/script/src/utils/key_sort.d.ts +2 -2
- package/script/src/utils/key_sort.d.ts.map +1 -1
- package/script/src/utils/key_sort.js +133 -123
- package/script/src/utils/signing.d.ts +1 -1
- package/script/src/utils/signing.js +172 -162
- package/esm/deps/jsr.io/@std/bytes/1.0.4/concat.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/encoding/1.0.6/hex.d.ts.map +0 -1
- package/esm/deps/jsr.io/@std/msgpack/1.0.2/encode.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/bytes/1.0.4/concat.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/bytes/1.0.4/concat.js +0 -35
- package/script/deps/jsr.io/@std/encoding/1.0.6/_validate_binary_like.js +0 -29
- package/script/deps/jsr.io/@std/encoding/1.0.6/hex.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/encoding/1.0.6/hex.js +0 -113
- package/script/deps/jsr.io/@std/msgpack/1.0.2/encode.d.ts.map +0 -1
- package/script/deps/jsr.io/@std/msgpack/1.0.2/encode.js +0 -240
- /package/esm/deps/jsr.io/@std/encoding/{1.0.6 → 1.0.7}/_validate_binary_like.d.ts +0 -0
- /package/script/deps/jsr.io/@std/encoding/{1.0.6 → 1.0.7}/_validate_binary_like.d.ts +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { Hex } from "../common.js";
|
|
2
|
-
/**
|
|
2
|
+
/** Mapping of coin symbols to mid prices. */
|
|
3
3
|
export interface AllMids {
|
|
4
|
-
/**
|
|
4
|
+
/** Mid prices mapped by coin symbol. */
|
|
5
5
|
[coin: string]: string;
|
|
6
6
|
}
|
|
7
|
-
/** Context
|
|
7
|
+
/** Context for a perpetual asset. */
|
|
8
8
|
export interface PerpsAssetCtx extends SharedAssetCtx {
|
|
9
9
|
/** Funding rate. */
|
|
10
10
|
funding: string;
|
|
@@ -14,23 +14,23 @@ export interface PerpsAssetCtx extends SharedAssetCtx {
|
|
|
14
14
|
premium: string | null;
|
|
15
15
|
/** Oracle price. */
|
|
16
16
|
oraclePx: string;
|
|
17
|
-
/**
|
|
17
|
+
/** Array of impact prices. */
|
|
18
18
|
impactPxs: string[] | null;
|
|
19
19
|
/** Daily volume in base currency. */
|
|
20
20
|
dayBaseVlm: string;
|
|
21
21
|
}
|
|
22
|
-
/**
|
|
22
|
+
/** Shared context for assets. */
|
|
23
23
|
export interface SharedAssetCtx {
|
|
24
24
|
/** Previous day's closing price. */
|
|
25
25
|
prevDayPx: string;
|
|
26
|
-
/** Daily volume. */
|
|
26
|
+
/** Daily notional volume. */
|
|
27
27
|
dayNtlVlm: string;
|
|
28
28
|
/** Mark price. */
|
|
29
29
|
markPx: string;
|
|
30
|
-
/**
|
|
30
|
+
/** Mid price. */
|
|
31
31
|
midPx: string | null;
|
|
32
32
|
}
|
|
33
|
-
/** Context
|
|
33
|
+
/** Context for a spot asset. */
|
|
34
34
|
export interface SpotAssetCtx extends SharedAssetCtx {
|
|
35
35
|
/** Circulating supply. */
|
|
36
36
|
circulatingSupply: string;
|
|
@@ -43,139 +43,139 @@ export interface SpotAssetCtx extends SharedAssetCtx {
|
|
|
43
43
|
}
|
|
44
44
|
/** Metadata for perpetual assets. */
|
|
45
45
|
export interface PerpsMeta {
|
|
46
|
-
/**
|
|
46
|
+
/** Trading universes available for perpetual trading. */
|
|
47
47
|
universe: PerpsUniverse[];
|
|
48
48
|
}
|
|
49
49
|
/** Metadata for spot assets. */
|
|
50
50
|
export interface SpotMeta {
|
|
51
|
-
/**
|
|
51
|
+
/** Trading universes available for spot trading. */
|
|
52
52
|
universe: SpotUniverse[];
|
|
53
|
-
/** Tokens available for trading. */
|
|
53
|
+
/** Tokens available for spot trading. */
|
|
54
54
|
tokens: SpotToken[];
|
|
55
55
|
}
|
|
56
|
-
/** Trading universe
|
|
56
|
+
/** Trading universe parameters for perpetual assets. */
|
|
57
57
|
export interface PerpsUniverse {
|
|
58
58
|
/** Minimum decimal places for order sizes. */
|
|
59
59
|
szDecimals: number;
|
|
60
60
|
/**
|
|
61
61
|
* Name of the universe.
|
|
62
62
|
*
|
|
63
|
-
* Note:
|
|
63
|
+
* Note: Maximum length 6 characters. No uniqueness constraints.
|
|
64
64
|
*/
|
|
65
65
|
name: string;
|
|
66
66
|
/** Maximum allowed leverage. */
|
|
67
67
|
maxLeverage: number;
|
|
68
|
-
/**
|
|
68
|
+
/** Indicates if only isolated margin trading is allowed. */
|
|
69
69
|
onlyIsolated?: true;
|
|
70
|
-
/**
|
|
70
|
+
/** Indicates if the universe is delisted. */
|
|
71
71
|
isDelisted?: true;
|
|
72
72
|
}
|
|
73
|
-
/** Trading universe
|
|
73
|
+
/** Trading universe parameters for spot assets. */
|
|
74
74
|
export interface SpotUniverse {
|
|
75
75
|
/** Token indices included in this universe. */
|
|
76
76
|
tokens: number[];
|
|
77
77
|
/**
|
|
78
78
|
* Name of the universe.
|
|
79
79
|
*
|
|
80
|
-
* Note:
|
|
80
|
+
* Note: Maximum length 6 characters. No uniqueness constraints.
|
|
81
81
|
*/
|
|
82
82
|
name: string;
|
|
83
|
-
/** Unique identifier. */
|
|
83
|
+
/** Unique identifier of the universe. */
|
|
84
84
|
index: number;
|
|
85
|
-
/**
|
|
85
|
+
/** Indicates if the token is the primary representation in the system. */
|
|
86
86
|
isCanonical: boolean;
|
|
87
87
|
}
|
|
88
|
-
/**
|
|
88
|
+
/** Details for a trading token in spot markets. */
|
|
89
89
|
export interface SpotToken {
|
|
90
90
|
/**
|
|
91
91
|
* Name of the token.
|
|
92
92
|
*
|
|
93
|
-
* Note:
|
|
93
|
+
* Note: Maximum length 6 characters. No uniqueness constraints.
|
|
94
94
|
*/
|
|
95
95
|
name: string;
|
|
96
96
|
/** Minimum decimal places for order sizes. */
|
|
97
97
|
szDecimals: number;
|
|
98
|
-
/** Number of decimals
|
|
98
|
+
/** Number of decimals for the token's smallest unit. */
|
|
99
99
|
weiDecimals: number;
|
|
100
100
|
/** Unique identifier for the token. */
|
|
101
101
|
index: number;
|
|
102
102
|
/** Token ID. */
|
|
103
103
|
tokenId: Hex;
|
|
104
|
-
/**
|
|
104
|
+
/** Indicates if the token is the primary representation in the system. */
|
|
105
105
|
isCanonical: boolean;
|
|
106
|
-
/**
|
|
106
|
+
/** EVM contract details. */
|
|
107
107
|
evmContract: {
|
|
108
|
-
/**
|
|
108
|
+
/** Contract address. */
|
|
109
109
|
address: Hex;
|
|
110
110
|
/** Extra decimals in the token's smallest unit. */
|
|
111
111
|
evm_extra_wei_decimals: number;
|
|
112
112
|
} | null;
|
|
113
113
|
/** Full display name of the token. */
|
|
114
114
|
fullName: string | null;
|
|
115
|
-
/**
|
|
115
|
+
/** Deployer trading fee share for the token. */
|
|
116
116
|
deployerTradingFeeShare: string;
|
|
117
117
|
}
|
|
118
|
-
/**
|
|
118
|
+
/** Details of a token. */
|
|
119
119
|
export interface TokenDetails {
|
|
120
|
-
/**
|
|
120
|
+
/** Name of the token. */
|
|
121
121
|
name: string;
|
|
122
|
-
/**
|
|
122
|
+
/** Maximum supply of the token. */
|
|
123
123
|
maxSupply: string;
|
|
124
|
-
/**
|
|
124
|
+
/** Total supply of the token. */
|
|
125
125
|
totalSupply: string;
|
|
126
|
-
/**
|
|
126
|
+
/** Circulating supply of the token. */
|
|
127
127
|
circulatingSupply: string;
|
|
128
|
-
/**
|
|
128
|
+
/** Decimal places for the minimum tradable unit. */
|
|
129
129
|
szDecimals: number;
|
|
130
|
-
/**
|
|
130
|
+
/** Decimal places for the token's smallest unit. */
|
|
131
131
|
weiDecimals: number;
|
|
132
|
-
/**
|
|
132
|
+
/** Mid price of the token. */
|
|
133
133
|
midPx: string;
|
|
134
|
-
/**
|
|
134
|
+
/** Mark price of the token. */
|
|
135
135
|
markPx: string;
|
|
136
|
-
/**
|
|
136
|
+
/** Previous day's price of the token. */
|
|
137
137
|
prevDayPx: string;
|
|
138
|
-
/**
|
|
138
|
+
/** Genesis data for the token. */
|
|
139
139
|
genesis: {
|
|
140
|
-
/**
|
|
140
|
+
/** User balances. */
|
|
141
141
|
userBalances: [Hex, string][];
|
|
142
|
-
/**
|
|
142
|
+
/** Existing token balances. */
|
|
143
143
|
existingTokenBalances: [number, string][];
|
|
144
|
-
/**
|
|
144
|
+
/** Blacklisted users. */
|
|
145
145
|
blacklistUsers: Hex[];
|
|
146
146
|
} | null;
|
|
147
|
-
/**
|
|
147
|
+
/** Deployer address. */
|
|
148
148
|
deployer: Hex | null;
|
|
149
|
-
/**
|
|
149
|
+
/** Gas used during token deployment. */
|
|
150
150
|
deployGas: string | null;
|
|
151
|
-
/**
|
|
151
|
+
/** Deployment time. */
|
|
152
152
|
deployTime: string | null;
|
|
153
|
-
/**
|
|
153
|
+
/** Seeded USDC amount for the token. */
|
|
154
154
|
seededUsdc: string;
|
|
155
|
-
/**
|
|
155
|
+
/** Non-circulating user balances of the token. */
|
|
156
156
|
nonCirculatingUserBalances: [Hex, string][];
|
|
157
|
-
/**
|
|
157
|
+
/** Future emissions amount. */
|
|
158
158
|
futureEmissions: string;
|
|
159
159
|
}
|
|
160
|
-
/** Metadata and context
|
|
160
|
+
/** Metadata and context for perpetual assets. */
|
|
161
161
|
export type PerpsMetaAndAssetCtxs = [
|
|
162
162
|
/** Metadata for assets. */
|
|
163
163
|
PerpsMeta,
|
|
164
|
-
/** Context
|
|
164
|
+
/** Context for each perpetual asset. */
|
|
165
165
|
PerpsAssetCtx[]
|
|
166
166
|
];
|
|
167
|
-
/** Metadata and context
|
|
167
|
+
/** Metadata and context for spot assets. */
|
|
168
168
|
export type SpotMetaAndAssetCtxs = [
|
|
169
169
|
/** Metadata for assets. */
|
|
170
170
|
SpotMeta,
|
|
171
|
-
/** Context
|
|
171
|
+
/** Context for each spot asset. */
|
|
172
172
|
SpotAssetCtx[]
|
|
173
173
|
];
|
|
174
174
|
/** Candlestick data point. */
|
|
175
175
|
export interface Candle {
|
|
176
|
-
/** Opening timestamp (
|
|
176
|
+
/** Opening timestamp (ms since epoch). */
|
|
177
177
|
t: number;
|
|
178
|
-
/** Closing timestamp (
|
|
178
|
+
/** Closing timestamp (ms since epoch). */
|
|
179
179
|
T: number;
|
|
180
180
|
/** Asset symbol. */
|
|
181
181
|
s: string;
|
|
@@ -189,12 +189,12 @@ export interface Candle {
|
|
|
189
189
|
h: string;
|
|
190
190
|
/** Lowest price. */
|
|
191
191
|
l: string;
|
|
192
|
-
/** Total volume traded
|
|
192
|
+
/** Total volume traded in base currency. */
|
|
193
193
|
v: string;
|
|
194
194
|
/** Number of trades executed. */
|
|
195
195
|
n: number;
|
|
196
196
|
}
|
|
197
|
-
/** Historical funding rate
|
|
197
|
+
/** Historical funding rate record for an asset. */
|
|
198
198
|
export interface FundingHistory {
|
|
199
199
|
/** Asset symbol. */
|
|
200
200
|
coin: string;
|
|
@@ -202,14 +202,18 @@ export interface FundingHistory {
|
|
|
202
202
|
fundingRate: string;
|
|
203
203
|
/** Premium price. */
|
|
204
204
|
premium: string;
|
|
205
|
-
/**
|
|
205
|
+
/** Funding record timestamp (ms since epoch). */
|
|
206
206
|
time: number;
|
|
207
207
|
}
|
|
208
|
-
/**
|
|
208
|
+
/**
|
|
209
|
+
* Predicted funding data.
|
|
210
|
+
*
|
|
211
|
+
* The first element is the asset symbol and the second element is an array of predicted funding data for each exchange.
|
|
212
|
+
*/
|
|
209
213
|
export type PredictedFunding = [
|
|
210
214
|
/** Asset symbol. */
|
|
211
215
|
string,
|
|
212
|
-
/**
|
|
216
|
+
/** Array of predicted funding data for each exchange. */
|
|
213
217
|
[
|
|
214
218
|
/** Exchange symbol. */
|
|
215
219
|
string,
|
|
@@ -217,54 +221,54 @@ export type PredictedFunding = [
|
|
|
217
221
|
{
|
|
218
222
|
/** Predicted funding rate. */
|
|
219
223
|
fundingRate: string;
|
|
220
|
-
/** Next funding time (
|
|
224
|
+
/** Next funding time (ms since epoch). */
|
|
221
225
|
nextFundingTime: number;
|
|
222
226
|
} | null
|
|
223
227
|
][]
|
|
224
228
|
];
|
|
225
|
-
/**
|
|
229
|
+
/** Deploy state for spot tokens. */
|
|
226
230
|
export interface SpotDeployState {
|
|
227
|
-
/**
|
|
231
|
+
/** Array of deploy states for tokens. */
|
|
228
232
|
states: {
|
|
229
|
-
/**
|
|
233
|
+
/** Token ID. */
|
|
230
234
|
token: number;
|
|
231
|
-
/**
|
|
235
|
+
/** Token specification. */
|
|
232
236
|
spec: {
|
|
233
|
-
/**
|
|
237
|
+
/** Name of the token. */
|
|
234
238
|
name: string;
|
|
235
|
-
/**
|
|
239
|
+
/** Minimum decimal places for order sizes. */
|
|
236
240
|
szDecimals: number;
|
|
237
|
-
/**
|
|
241
|
+
/** Number of decimals for the token's smallest unit. */
|
|
238
242
|
weiDecimals: number;
|
|
239
243
|
};
|
|
240
|
-
/**
|
|
244
|
+
/** Full name of the token. */
|
|
241
245
|
fullName: string | null;
|
|
242
|
-
/**
|
|
246
|
+
/** Deployer trading fee share for the token. */
|
|
243
247
|
deployerTradingFeeShare: string;
|
|
244
|
-
/**
|
|
248
|
+
/** Spot indices for the token. */
|
|
245
249
|
spots: number[];
|
|
246
|
-
/**
|
|
250
|
+
/** Maximum supply of the token. */
|
|
247
251
|
maxSupply: string | null;
|
|
248
|
-
/**
|
|
252
|
+
/** Hyperliquidity genesis balance of the token. */
|
|
249
253
|
hyperliquidityGenesisBalance: string;
|
|
250
|
-
/**
|
|
254
|
+
/** Total genesis balance (in Wei) for the token. */
|
|
251
255
|
totalGenesisBalanceWei: string;
|
|
252
|
-
/**
|
|
256
|
+
/** User genesis balances for the token. */
|
|
253
257
|
userGenesisBalances: [Hex, string][];
|
|
254
|
-
/**
|
|
258
|
+
/** Existing token genesis balances for the token. */
|
|
255
259
|
existingTokenGenesisBalances: [number, string][];
|
|
256
260
|
}[];
|
|
257
|
-
/**
|
|
261
|
+
/** Gas auction details. */
|
|
258
262
|
gasAuction: {
|
|
259
263
|
/** Current gas. */
|
|
260
264
|
currentGas: string | null;
|
|
261
|
-
/** Duration
|
|
265
|
+
/** Duration in seconds. */
|
|
262
266
|
durationSeconds: number;
|
|
263
|
-
/**
|
|
267
|
+
/** Ending gas. */
|
|
264
268
|
endGas: string | null;
|
|
265
|
-
/**
|
|
269
|
+
/** Starting gas. */
|
|
266
270
|
startGas: string;
|
|
267
|
-
/**
|
|
271
|
+
/** Auction start time (seconds since epoch). */
|
|
268
272
|
startTimeSeconds: number;
|
|
269
273
|
};
|
|
270
274
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"assets.d.ts","sourceRoot":"","sources":["../../../../src/src/types/info/assets.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AAExC,
|
|
1
|
+
{"version":3,"file":"assets.d.ts","sourceRoot":"","sources":["../../../../src/src/types/info/assets.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
import type { Hex } from "../common.js";
|
|
2
|
+
/** User delegation to a validator. */
|
|
3
|
+
export interface Delegation {
|
|
4
|
+
/** Validator address. */
|
|
5
|
+
validator: Hex;
|
|
6
|
+
/** Amount of tokens delegated to the validator. */
|
|
7
|
+
amount: string;
|
|
8
|
+
/** Locked until timestamp (in ms since epoch). */
|
|
9
|
+
lockedUntilTimestamp: number;
|
|
10
|
+
}
|
|
11
|
+
/** Reward received from staking activities. */
|
|
12
|
+
export interface DelegatorReward {
|
|
13
|
+
/** Timestamp when the reward was received (in ms since epoch). */
|
|
14
|
+
time: number;
|
|
15
|
+
/** Source of the reward. */
|
|
16
|
+
source: "delegation" | "commission";
|
|
17
|
+
/** Total reward amount. */
|
|
18
|
+
totalAmount: string;
|
|
19
|
+
}
|
|
20
|
+
/** Record of a staking event by a delegator. */
|
|
21
|
+
export interface DelegatorUpdate {
|
|
22
|
+
/** Timestamp of the delegation event (in ms since epoch). */
|
|
23
|
+
time: number;
|
|
24
|
+
/** Transaction hash of the delegation event. */
|
|
25
|
+
hash: Hex;
|
|
26
|
+
/** Details of the update. */
|
|
27
|
+
delta: DelegatorUpdateDelegate | DelegatorUpdateDeposit | DelegatorUpdateWithdrawal;
|
|
28
|
+
}
|
|
29
|
+
/** Delegation operation in a delegator update. */
|
|
30
|
+
export interface DelegatorUpdateDelegate {
|
|
31
|
+
/** Delegation operation details. */
|
|
32
|
+
delegate: {
|
|
33
|
+
/** Address of the validator receiving or losing delegation. */
|
|
34
|
+
validator: Hex;
|
|
35
|
+
/** Amount of tokens being delegated or undelegated. */
|
|
36
|
+
amount: string;
|
|
37
|
+
/** Whether this is an undelegation operation. */
|
|
38
|
+
isUndelegate: boolean;
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
/** Deposit operation in a delegator update. */
|
|
42
|
+
export interface DelegatorUpdateDeposit {
|
|
43
|
+
/** Deposit details. */
|
|
44
|
+
cDeposit: {
|
|
45
|
+
/** Amount of tokens being deposited. */
|
|
46
|
+
amount: string;
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
/** Withdrawal operation in a delegator update. */
|
|
50
|
+
export interface DelegatorUpdateWithdrawal {
|
|
51
|
+
/** Withdrawal details. */
|
|
52
|
+
withdrawal: {
|
|
53
|
+
/** Amount of tokens being withdrawn. */
|
|
54
|
+
amount: string;
|
|
55
|
+
/** Phase of the withdrawal process. */
|
|
56
|
+
phase: "initiated" | "finalized";
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
/** Summary of a user's staking. */
|
|
60
|
+
export interface DelegatorSummary {
|
|
61
|
+
/** Total amount of delegated tokens. */
|
|
62
|
+
delegated: string;
|
|
63
|
+
/** Total amount of undelegated tokens. */
|
|
64
|
+
undelegated: string;
|
|
65
|
+
/** Total amount of tokens pending withdrawal. */
|
|
66
|
+
totalPendingWithdrawal: string;
|
|
67
|
+
/** Number of pending withdrawals. */
|
|
68
|
+
nPendingWithdrawals: number;
|
|
69
|
+
}
|
|
70
|
+
/** Summary of a validator's status and performance. */
|
|
71
|
+
export interface ValidatorSummary {
|
|
72
|
+
/** Address of the validator. */
|
|
73
|
+
validator: Hex;
|
|
74
|
+
/** Address of the validator's signer. */
|
|
75
|
+
signer: Hex;
|
|
76
|
+
/** Name of the validator. */
|
|
77
|
+
name: string;
|
|
78
|
+
/** Description of the validator. */
|
|
79
|
+
description: string;
|
|
80
|
+
/** Number of blocks produced recently. */
|
|
81
|
+
nRecentBlocks: number;
|
|
82
|
+
/** Total amount of tokens staked. */
|
|
83
|
+
stake: number;
|
|
84
|
+
/** Whether the validator is currently jailed. */
|
|
85
|
+
isJailed: boolean;
|
|
86
|
+
/** Timestamp when the validator can be unjailed (in ms since epoch). */
|
|
87
|
+
unjailableAfter: number | null;
|
|
88
|
+
/** Whether the validator is currently active. */
|
|
89
|
+
isActive: boolean;
|
|
90
|
+
/** Commission rate charged by the validator. */
|
|
91
|
+
commission: string;
|
|
92
|
+
/** Performance statistics over different time periods. */
|
|
93
|
+
stats: [
|
|
94
|
+
[
|
|
95
|
+
"day",
|
|
96
|
+
ValidatorStats
|
|
97
|
+
],
|
|
98
|
+
[
|
|
99
|
+
"week",
|
|
100
|
+
ValidatorStats
|
|
101
|
+
],
|
|
102
|
+
[
|
|
103
|
+
"month",
|
|
104
|
+
ValidatorStats
|
|
105
|
+
]
|
|
106
|
+
];
|
|
107
|
+
}
|
|
108
|
+
/** Statistics for validator performance over a time period. */
|
|
109
|
+
export interface ValidatorStats {
|
|
110
|
+
/** Fraction of time the validator was online. */
|
|
111
|
+
uptimeFraction: string;
|
|
112
|
+
/** Predicted annual percentage rate of returns. */
|
|
113
|
+
predictedApr: string;
|
|
114
|
+
/** Number of samples used for statistics calculation. */
|
|
115
|
+
nSamples: number;
|
|
116
|
+
}
|
|
117
|
+
//# sourceMappingURL=delegations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"delegations.d.ts","sourceRoot":"","sources":["../../../../src/src/types/info/delegations.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AAExC,sCAAsC;AACtC,MAAM,WAAW,UAAU;IACvB,yBAAyB;IACzB,SAAS,EAAE,GAAG,CAAC;IACf,mDAAmD;IACnD,MAAM,EAAE,MAAM,CAAC;IACf,kDAAkD;IAClD,oBAAoB,EAAE,MAAM,CAAC;CAChC;AAED,+CAA+C;AAC/C,MAAM,WAAW,eAAe;IAC5B,kEAAkE;IAClE,IAAI,EAAE,MAAM,CAAC;IACb,4BAA4B;IAC5B,MAAM,EAAE,YAAY,GAAG,YAAY,CAAC;IACpC,2BAA2B;IAC3B,WAAW,EAAE,MAAM,CAAC;CACvB;AAED,gDAAgD;AAChD,MAAM,WAAW,eAAe;IAC5B,6DAA6D;IAC7D,IAAI,EAAE,MAAM,CAAC;IACb,gDAAgD;IAChD,IAAI,EAAE,GAAG,CAAC;IACV,6BAA6B;IAC7B,KAAK,EAAE,uBAAuB,GAAG,sBAAsB,GAAG,yBAAyB,CAAC;CACvF;AAED,kDAAkD;AAClD,MAAM,WAAW,uBAAuB;IACpC,oCAAoC;IACpC,QAAQ,EAAE;QACN,+DAA+D;QAC/D,SAAS,EAAE,GAAG,CAAC;QACf,uDAAuD;QACvD,MAAM,EAAE,MAAM,CAAC;QACf,iDAAiD;QACjD,YAAY,EAAE,OAAO,CAAC;KACzB,CAAC;CACL;AAED,+CAA+C;AAC/C,MAAM,WAAW,sBAAsB;IACnC,uBAAuB;IACvB,QAAQ,EAAE;QACN,wCAAwC;QACxC,MAAM,EAAE,MAAM,CAAC;KAClB,CAAC;CACL;AAED,kDAAkD;AAClD,MAAM,WAAW,yBAAyB;IACtC,0BAA0B;IAC1B,UAAU,EAAE;QACR,wCAAwC;QACxC,MAAM,EAAE,MAAM,CAAC;QACf,uCAAuC;QACvC,KAAK,EAAE,WAAW,GAAG,WAAW,CAAC;KACpC,CAAC;CACL;AAED,mCAAmC;AACnC,MAAM,WAAW,gBAAgB;IAC7B,wCAAwC;IACxC,SAAS,EAAE,MAAM,CAAC;IAClB,0CAA0C;IAC1C,WAAW,EAAE,MAAM,CAAC;IACpB,iDAAiD;IACjD,sBAAsB,EAAE,MAAM,CAAC;IAC/B,qCAAqC;IACrC,mBAAmB,EAAE,MAAM,CAAC;CAC/B;AAED,uDAAuD;AACvD,MAAM,WAAW,gBAAgB;IAC7B,gCAAgC;IAChC,SAAS,EAAE,GAAG,CAAC;IACf,yCAAyC;IACzC,MAAM,EAAE,GAAG,CAAC;IACZ,6BAA6B;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,oCAAoC;IACpC,WAAW,EAAE,MAAM,CAAC;IACpB,0CAA0C;IAC1C,aAAa,EAAE,MAAM,CAAC;IACtB,qCAAqC;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,QAAQ,EAAE,OAAO,CAAC;IAClB,wEAAwE;IACxE,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,iDAAiD;IACjD,QAAQ,EAAE,OAAO,CAAC;IAClB,gDAAgD;IAChD,UAAU,EAAE,MAAM,CAAC;IACnB,0DAA0D;IAC1D,KAAK,EAAE;QACH;YAAC,KAAK;YAAE,cAAc;SAAC;QACvB;YAAC,MAAM;YAAE,cAAc;SAAC;QACxB;YAAC,OAAO;YAAE,cAAc;SAAC;KAC5B,CAAC;CACL;AAED,+DAA+D;AAC/D,MAAM,WAAW,cAAc;IAC3B,iDAAiD;IACjD,cAAc,EAAE,MAAM,CAAC;IACvB,mDAAmD;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,yDAAyD;IACzD,QAAQ,EAAE,MAAM,CAAC;CACpB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|