@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,5 +1,5 @@
|
|
|
1
1
|
import type { Hex } from "../types/common.js";
|
|
2
|
-
import type { ApproveAgentRequest, ApproveBuilderFeeRequest, BatchModifyRequest, CancelByCloidRequest, CancelRequest, CreateSubAccountRequest, ModifyRequest, OrderRequest, ScheduleCancelRequest, SetReferrerRequest, SpotSendRequest, SubAccountTransferRequest, TwapCancelRequest, TwapOrderRequest, UpdateIsolatedMarginRequest, UpdateLeverageRequest, UsdClassTransferRequest, UsdSendRequest, VaultTransferRequest, Withdraw3Request } from "../types/exchange/requests.js";
|
|
2
|
+
import type { ApproveAgentRequest, ApproveBuilderFeeRequest, BatchModifyRequest, CancelByCloidRequest, CancelRequest, CDepositRequest, CreateSubAccountRequest, CWithdrawRequest, ModifyRequest, OrderRequest, ScheduleCancelRequest, SetReferrerRequest, SpotSendRequest, SubAccountTransferRequest, TokenDelegateRequest, TwapCancelRequest, TwapOrderRequest, UpdateIsolatedMarginRequest, UpdateLeverageRequest, UsdClassTransferRequest, UsdSendRequest, VaultTransferRequest, Withdraw3Request } from "../types/exchange/requests.js";
|
|
3
3
|
import type { CancelResponse, CreateSubAccountResponse, ErrorResponse, OrderResponse, SuccessResponse, TwapCancelResponse, TwapOrderResponse } from "../types/exchange/responses.js";
|
|
4
4
|
import type { IRequestTransport } from "../transports/base.js";
|
|
5
5
|
import { type AbstractEthersSigner, type AbstractEthersV5Signer, type AbstractViemWalletClient } from "../utils/signing.js";
|
|
@@ -22,8 +22,12 @@ export type ApproveBuilderFeeParameters = Omit<ApproveBuilderFeeRequest["action"
|
|
|
22
22
|
export type BatchModifyParameters = Omit<BatchModifyRequest["action"], "type"> & Partial<Pick<BatchModifyRequest, "vaultAddress" | "nonce">>;
|
|
23
23
|
/** Parameters for the {@linkcode WalletClient.cancel} method. */
|
|
24
24
|
export type CancelParameters = Omit<CancelRequest["action"], "type"> & Partial<Pick<CancelRequest, "vaultAddress" | "nonce">>;
|
|
25
|
+
/** Parameters for the {@linkcode WalletClient.cDeposit} method. */
|
|
26
|
+
export type CDepositParameters = Omit<CDepositRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"> & Partial<Pick<CDepositRequest["action"], "signatureChainId" | "nonce">>;
|
|
25
27
|
/** Parameters for the {@linkcode WalletClient.cancelByCloid} method. */
|
|
26
28
|
export type CancelByCloidParameters = Omit<CancelByCloidRequest["action"], "type"> & Partial<Pick<CancelByCloidRequest, "vaultAddress" | "nonce">>;
|
|
29
|
+
/** Parameters for the {@linkcode WalletClient.cWithdraw} method. */
|
|
30
|
+
export type CWithdrawParameters = Omit<CWithdrawRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"> & Partial<Pick<CWithdrawRequest["action"], "signatureChainId" | "nonce">>;
|
|
27
31
|
/** Parameters for the {@linkcode WalletClient.createSubAccount} method. */
|
|
28
32
|
export type CreateSubAccountParameters = Omit<CreateSubAccountRequest["action"], "type"> & Partial<Pick<CreateSubAccountRequest, "nonce">>;
|
|
29
33
|
/** Parameters for the {@linkcode WalletClient.modify} method. */
|
|
@@ -38,6 +42,8 @@ export type SetReferrerParameters = Omit<SetReferrerRequest["action"], "type"> &
|
|
|
38
42
|
export type SpotSendParameters = Omit<SpotSendRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "time"> & Partial<Pick<SpotSendRequest["action"], "signatureChainId" | "time">>;
|
|
39
43
|
/** Parameters for the {@linkcode WalletClient.subAccountTransfer} method. */
|
|
40
44
|
export type SubAccountTransferParameters = Omit<SubAccountTransferRequest["action"], "type"> & Partial<Pick<SubAccountTransferRequest, "nonce">>;
|
|
45
|
+
/** Parameters for the {@linkcode WalletClient.tokenDelegate} method. */
|
|
46
|
+
export type TokenDelegateParameters = Omit<TokenDelegateRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"> & Partial<Pick<TokenDelegateRequest["action"], "signatureChainId" | "nonce">>;
|
|
41
47
|
/** Parameters for the {@linkcode WalletClient.twapCancel} method. */
|
|
42
48
|
export type TwapCancelParameters = Omit<TwapCancelRequest["action"], "type"> & Partial<Pick<TwapCancelRequest, "vaultAddress" | "nonce">>;
|
|
43
49
|
/** Parameters for the {@linkcode WalletClient.twapOrder} method. */
|
|
@@ -143,10 +149,9 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
143
149
|
* ```ts
|
|
144
150
|
* import * as hl from "@nktkas/hyperliquid";
|
|
145
151
|
* import { createWalletClient, custom } from "viem";
|
|
146
|
-
* import { arbitrum } from "viem/chains";
|
|
147
152
|
*
|
|
148
153
|
* const [account] = await window.ethereum.request({ method: "eth_requestAccounts" });
|
|
149
|
-
* const wallet = createWalletClient({ account,
|
|
154
|
+
* const wallet = createWalletClient({ account, transport: custom(window.ethereum) });
|
|
150
155
|
*
|
|
151
156
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
152
157
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
@@ -157,10 +162,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
157
162
|
* Approve an agent to sign on behalf of the master or sub-accounts.
|
|
158
163
|
* @param args - The parameters for the request.
|
|
159
164
|
* @param signal - An optional abort signal
|
|
160
|
-
* @returns
|
|
165
|
+
* @returns Successful response without specific data.
|
|
161
166
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
162
167
|
*
|
|
163
|
-
* @see
|
|
168
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#approve-an-api-wallet
|
|
164
169
|
* @example
|
|
165
170
|
* ```ts
|
|
166
171
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -180,10 +185,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
180
185
|
* Approve a max fee rate for a builder address.
|
|
181
186
|
* @param args - The parameters for the request.
|
|
182
187
|
* @param signal - An optional abort signal.
|
|
183
|
-
* @returns
|
|
188
|
+
* @returns Successful response without specific data.
|
|
184
189
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
185
190
|
*
|
|
186
|
-
* @see
|
|
191
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#approve-a-builder-fee
|
|
187
192
|
* @example
|
|
188
193
|
* ```ts
|
|
189
194
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -203,10 +208,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
203
208
|
* Modify multiple orders.
|
|
204
209
|
* @param args - The parameters for the request.
|
|
205
210
|
* @param signal - An optional abort signal.
|
|
206
|
-
* @returns
|
|
211
|
+
* @returns Successful variant of {@link OrderResponse} without error statuses.
|
|
207
212
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
208
213
|
*
|
|
209
|
-
* @see
|
|
214
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#modify-multiple-orders
|
|
210
215
|
* @example
|
|
211
216
|
* ```ts
|
|
212
217
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -241,10 +246,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
241
246
|
* Cancel order(s).
|
|
242
247
|
* @param args - The parameters for the request.
|
|
243
248
|
* @param signal - An optional abort signal.
|
|
244
|
-
* @returns
|
|
249
|
+
* @returns Successful variant of {@link CancelResponse} without error statuses.
|
|
245
250
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
246
251
|
*
|
|
247
|
-
* @see
|
|
252
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s
|
|
248
253
|
* @example
|
|
249
254
|
* ```ts
|
|
250
255
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -264,13 +269,34 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
264
269
|
*/
|
|
265
270
|
cancel(args: CancelParameters, signal?: AbortSignal): Promise<CancelResponseSuccess>;
|
|
266
271
|
/**
|
|
267
|
-
*
|
|
272
|
+
* Deposit into staking balance.
|
|
268
273
|
* @param args - The parameters for the request.
|
|
269
274
|
* @param signal - An optional abort signal.
|
|
270
|
-
* @returns
|
|
275
|
+
* @returns Successful response without specific data.
|
|
271
276
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
272
277
|
*
|
|
273
|
-
* @see
|
|
278
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#deposit-into-staking
|
|
279
|
+
* @example
|
|
280
|
+
* ```ts
|
|
281
|
+
* import * as hl from "@nktkas/hyperliquid";
|
|
282
|
+
* import { privateKeyToAccount } from "viem/accounts";
|
|
283
|
+
*
|
|
284
|
+
* const wallet = privateKeyToAccount("0x...");
|
|
285
|
+
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
286
|
+
* const client = new hl.WalletClient({ wallet, transport });
|
|
287
|
+
*
|
|
288
|
+
* const result = await client.cDeposit({ wei: 100000000 });
|
|
289
|
+
* ```
|
|
290
|
+
*/
|
|
291
|
+
cDeposit(args: CDepositParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
292
|
+
/**
|
|
293
|
+
* Cancel order(s) by cloid.
|
|
294
|
+
* @param args - The parameters for the request.
|
|
295
|
+
* @param signal - An optional abort signal.
|
|
296
|
+
* @returns Successful variant of {@link CancelResponse} without error statuses.
|
|
297
|
+
* @throws {ApiRequestError} When the API returns an error response.
|
|
298
|
+
*
|
|
299
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s-by-cloid
|
|
274
300
|
* @example
|
|
275
301
|
* ```ts
|
|
276
302
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -289,13 +315,35 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
289
315
|
* ```
|
|
290
316
|
*/
|
|
291
317
|
cancelByCloid(args: CancelByCloidParameters, signal?: AbortSignal): Promise<CancelResponseSuccess>;
|
|
318
|
+
/**
|
|
319
|
+
* Withdraw from staking balance.
|
|
320
|
+
* @param args - The parameters for the request.
|
|
321
|
+
* @param signal - An optional abort signal.
|
|
322
|
+
* @returns Successful response without specific data.
|
|
323
|
+
* @throws {ApiRequestError} When the API returns an error response.
|
|
324
|
+
*
|
|
325
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#withdraw-from-staking
|
|
326
|
+
* @example
|
|
327
|
+
* ```ts
|
|
328
|
+
* import * as hl from "@nktkas/hyperliquid";
|
|
329
|
+
* import { privateKeyToAccount } from "viem/accounts";
|
|
330
|
+
*
|
|
331
|
+
* const wallet = privateKeyToAccount("0x...");
|
|
332
|
+
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
333
|
+
* const client = new hl.WalletClient({ wallet, transport });
|
|
334
|
+
*
|
|
335
|
+
* const result = await client.cWithdraw({ wei: 100000000 });
|
|
336
|
+
* ```
|
|
337
|
+
*/
|
|
338
|
+
cWithdraw(args: CWithdrawParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
292
339
|
/**
|
|
293
340
|
* Create a sub-account.
|
|
294
341
|
* @param args - The parameters for the request.
|
|
295
342
|
* @param signal - An optional abort signal.
|
|
296
|
-
* @returns
|
|
343
|
+
* @returns Response for creating a sub-account.
|
|
297
344
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
298
345
|
*
|
|
346
|
+
* @see null - no documentation
|
|
299
347
|
* @example
|
|
300
348
|
* ```ts
|
|
301
349
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -305,9 +353,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
305
353
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
306
354
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
307
355
|
*
|
|
308
|
-
* const result = await client.createSubAccount({
|
|
309
|
-
* name: "subAccountName",
|
|
310
|
-
* });
|
|
356
|
+
* const result = await client.createSubAccount({ name: "subAccountName" });
|
|
311
357
|
* ```
|
|
312
358
|
*/
|
|
313
359
|
createSubAccount(args: CreateSubAccountParameters, signal?: AbortSignal): Promise<CreateSubAccountResponse>;
|
|
@@ -315,10 +361,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
315
361
|
* Modify an order.
|
|
316
362
|
* @param args - The parameters for the request.
|
|
317
363
|
* @param signal - An optional abort signal.
|
|
318
|
-
* @returns
|
|
364
|
+
* @returns Successful response without specific data.
|
|
319
365
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
320
366
|
*
|
|
321
|
-
* @see
|
|
367
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#modify-an-order
|
|
322
368
|
* @example
|
|
323
369
|
* ```ts
|
|
324
370
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -351,10 +397,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
351
397
|
* Place an order(s).
|
|
352
398
|
* @param args - The parameters for the request.
|
|
353
399
|
* @param signal - An optional abort signal.
|
|
354
|
-
* @returns
|
|
400
|
+
* @returns Successful variant of {@link OrderResponse} without error statuses.
|
|
355
401
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
356
402
|
*
|
|
357
|
-
* @see
|
|
403
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#place-an-order
|
|
358
404
|
* @example
|
|
359
405
|
* ```ts
|
|
360
406
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -387,10 +433,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
387
433
|
* Schedule a time to cancel all open orders.
|
|
388
434
|
* @param args - The parameters for the request.
|
|
389
435
|
* @param signal - An optional abort signal.
|
|
390
|
-
* @returns
|
|
436
|
+
* @returns Successful response without specific data.
|
|
391
437
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
392
438
|
*
|
|
393
|
-
* @see
|
|
439
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#schedule-cancel-dead-mans-switch
|
|
394
440
|
* @example
|
|
395
441
|
* ```ts
|
|
396
442
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -400,9 +446,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
400
446
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
401
447
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
402
448
|
*
|
|
403
|
-
* const result = await client.scheduleCancel({
|
|
404
|
-
* time: Date.now() + 3600000, // Schedule cancellation 1 hour from now
|
|
405
|
-
* });
|
|
449
|
+
* const result = await client.scheduleCancel({ time: Date.now() + 3600000 });
|
|
406
450
|
* ```
|
|
407
451
|
*/
|
|
408
452
|
scheduleCancel(args?: ScheduleCancelParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -410,9 +454,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
410
454
|
* Set a referral code.
|
|
411
455
|
* @param args - The parameters for the request.
|
|
412
456
|
* @param signal - An optional abort signal.
|
|
413
|
-
* @returns
|
|
457
|
+
* @returns Successful response without specific data.
|
|
414
458
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
415
459
|
*
|
|
460
|
+
* @see null - no documentation
|
|
416
461
|
* @example
|
|
417
462
|
* ```ts
|
|
418
463
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -422,9 +467,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
422
467
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
423
468
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
424
469
|
*
|
|
425
|
-
* const result = await client.setReferrer({
|
|
426
|
-
* code: "TEST",
|
|
427
|
-
* });
|
|
470
|
+
* const result = await client.setReferrer({ code: "TEST" });
|
|
428
471
|
* ```
|
|
429
472
|
*/
|
|
430
473
|
setReferrer(args: SetReferrerParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -432,10 +475,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
432
475
|
* Transfer a spot asset on L1 to another address.
|
|
433
476
|
* @param args - The parameters for the request.
|
|
434
477
|
* @param signal - An optional abort signal.
|
|
435
|
-
* @returns
|
|
478
|
+
* @returns Successful response without specific data.
|
|
436
479
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
437
480
|
*
|
|
438
|
-
* @see
|
|
481
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#l1-spot-transfer
|
|
439
482
|
* @example
|
|
440
483
|
* ```ts
|
|
441
484
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -457,9 +500,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
457
500
|
* Transfer between sub-accounts.
|
|
458
501
|
* @param args - The parameters for the request.
|
|
459
502
|
* @param signal - An optional abort signal.
|
|
460
|
-
* @returns
|
|
503
|
+
* @returns Successful response without specific data.
|
|
461
504
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
462
505
|
*
|
|
506
|
+
* @see null - no documentation
|
|
463
507
|
* @example
|
|
464
508
|
* ```ts
|
|
465
509
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -477,14 +521,39 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
477
521
|
* ```
|
|
478
522
|
*/
|
|
479
523
|
subAccountTransfer(args: SubAccountTransferParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
524
|
+
/**
|
|
525
|
+
* Delegate or undelegate stake from a validator.
|
|
526
|
+
* @param args - The parameters for the request.
|
|
527
|
+
* @param signal - An optional abort signal.
|
|
528
|
+
* @returns Successful response without specific data.
|
|
529
|
+
* @throws {ApiRequestError} When the API returns an error response.
|
|
530
|
+
*
|
|
531
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#delegate-or-undelegate-stake-from-validator
|
|
532
|
+
* @example
|
|
533
|
+
* ```ts
|
|
534
|
+
* import * as hl from "@nktkas/hyperliquid";
|
|
535
|
+
* import { privateKeyToAccount } from "viem/accounts";
|
|
536
|
+
*
|
|
537
|
+
* const wallet = privateKeyToAccount("0x...");
|
|
538
|
+
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
539
|
+
* const client = new hl.WalletClient({ wallet, transport });
|
|
540
|
+
*
|
|
541
|
+
* const result = await client.tokenDelegate({
|
|
542
|
+
* validator: "0x...",
|
|
543
|
+
* isUndelegate: true,
|
|
544
|
+
* wei: 100000000,
|
|
545
|
+
* });
|
|
546
|
+
* ```
|
|
547
|
+
*/
|
|
548
|
+
tokenDelegate(args: TokenDelegateParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
480
549
|
/**
|
|
481
550
|
* Cancel a TWAP order.
|
|
482
551
|
* @param args - The parameters for the request.
|
|
483
552
|
* @param signal - An optional abort signal.
|
|
484
|
-
* @returns
|
|
553
|
+
* @returns Successful variant of {@link TwapCancelResponse} without error status.
|
|
485
554
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
486
555
|
*
|
|
487
|
-
* @see
|
|
556
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-a-twap-order
|
|
488
557
|
* @example
|
|
489
558
|
* ```ts
|
|
490
559
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -505,10 +574,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
505
574
|
* Place a TWAP order.
|
|
506
575
|
* @param args - The parameters for the request.
|
|
507
576
|
* @param signal - An optional abort signal.
|
|
508
|
-
* @returns
|
|
577
|
+
* @returns Successful variant of {@link TwapOrderResponse} without error status.
|
|
509
578
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
510
579
|
*
|
|
511
|
-
* @see
|
|
580
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#place-a-twap-order
|
|
512
581
|
* @example
|
|
513
582
|
* ```ts
|
|
514
583
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -533,10 +602,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
533
602
|
* Update isolated margin for a position.
|
|
534
603
|
* @param args - The parameters for the request.
|
|
535
604
|
* @param signal - An optional abort signal.
|
|
536
|
-
* @returns
|
|
605
|
+
* @returns Successful response without specific data.
|
|
537
606
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
538
607
|
*
|
|
539
|
-
* @see
|
|
608
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#update-isolated-margin
|
|
540
609
|
* @example
|
|
541
610
|
* ```ts
|
|
542
611
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -558,10 +627,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
558
627
|
* Update leverage for cross or isolated margin.
|
|
559
628
|
* @param args - The parameters for the request.
|
|
560
629
|
* @param signal - An optional abort signal.
|
|
561
|
-
* @returns
|
|
630
|
+
* @returns Successful response without specific data.
|
|
562
631
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
563
632
|
*
|
|
564
|
-
* @see
|
|
633
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#update-leverage
|
|
565
634
|
* @example
|
|
566
635
|
* ```ts
|
|
567
636
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -583,10 +652,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
583
652
|
* Transfer funds between Spot and Perp accounts.
|
|
584
653
|
* @param args - The parameters for the request.
|
|
585
654
|
* @param signal - An optional abort signal.
|
|
586
|
-
* @returns
|
|
655
|
+
* @returns Successful response without specific data.
|
|
587
656
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
588
657
|
*
|
|
589
|
-
* @see
|
|
658
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#transfer-from-spot-account-to-perp-account-and-vice-versa
|
|
590
659
|
* @example
|
|
591
660
|
* ```ts
|
|
592
661
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -607,10 +676,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
607
676
|
* Transfer USDC on L1 to another address.
|
|
608
677
|
* @param args - The parameters for the request.
|
|
609
678
|
* @param signal - An optional abort signal.
|
|
610
|
-
* @returns
|
|
679
|
+
* @returns Successful response without specific data.
|
|
611
680
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
612
681
|
*
|
|
613
|
-
* @see
|
|
682
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#l1-usdc-transfer
|
|
614
683
|
* @example
|
|
615
684
|
* ```ts
|
|
616
685
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -628,13 +697,13 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
628
697
|
*/
|
|
629
698
|
usdSend(args: UsdSendParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
630
699
|
/**
|
|
631
|
-
*
|
|
700
|
+
* Add or remove funds from a vault.
|
|
632
701
|
* @param args - The parameters for the request.
|
|
633
702
|
* @param signal - An optional abort signal.
|
|
634
|
-
* @returns
|
|
703
|
+
* @returns Successful response without specific data.
|
|
635
704
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
636
705
|
*
|
|
637
|
-
* @see
|
|
706
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#deposit-or-withdraw-from-a-vault
|
|
638
707
|
* @example
|
|
639
708
|
* ```ts
|
|
640
709
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -656,10 +725,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
656
725
|
* Initiate a withdrawal request.
|
|
657
726
|
* @param args - The parameters for the request.
|
|
658
727
|
* @param signal - An optional abort signal.
|
|
659
|
-
* @returns
|
|
728
|
+
* @returns Successful response without specific data.
|
|
660
729
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
661
730
|
*
|
|
662
|
-
* @see
|
|
731
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#initiate-a-withdrawal-request
|
|
663
732
|
* @example
|
|
664
733
|
* ```ts
|
|
665
734
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../../src/src/clients/wallet.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"wallet.d.ts","sourceRoot":"","sources":["../../../src/src/clients/wallet.ts"],"names":[],"mappings":"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"}
|