@nktkas/hyperliquid 0.16.0 → 0.17.1
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/README.md +58 -106
- package/esm/src/clients/event.d.ts.map +1 -1
- package/esm/src/clients/event.js +0 -1
- package/esm/src/clients/public.d.ts +4 -4
- package/esm/src/clients/public.d.ts.map +1 -1
- package/esm/src/clients/public.js +4 -7
- package/esm/src/clients/wallet.d.ts +129 -132
- package/esm/src/clients/wallet.d.ts.map +1 -1
- package/esm/src/clients/wallet.js +290 -268
- package/esm/src/signing.d.ts +149 -32
- package/esm/src/signing.d.ts.map +1 -1
- package/esm/src/signing.js +123 -15
- package/esm/src/transports/http/http_transport.d.ts +14 -24
- package/esm/src/transports/http/http_transport.d.ts.map +1 -1
- package/esm/src/transports/http/http_transport.js +20 -15
- package/esm/src/transports/websocket/websocket_transport.d.ts +6 -2
- package/esm/src/transports/websocket/websocket_transport.d.ts.map +1 -1
- package/esm/src/types/exchange/requests.d.ts +52 -38
- package/esm/src/types/exchange/requests.d.ts.map +1 -1
- package/esm/src/types/info/accounts.d.ts +4 -0
- package/esm/src/types/info/accounts.d.ts.map +1 -1
- package/esm/src/types/info/assets.d.ts +4 -6
- package/esm/src/types/info/assets.d.ts.map +1 -1
- package/esm/src/types/info/orders.d.ts +28 -20
- package/esm/src/types/info/orders.d.ts.map +1 -1
- package/esm/src/types/info/requests.d.ts +8 -8
- package/esm/src/types/info/requests.d.ts.map +1 -1
- package/esm/src/types/info/vaults.d.ts +2 -0
- package/esm/src/types/info/vaults.d.ts.map +1 -1
- package/esm/src/types/mod.d.ts +21 -0
- package/esm/src/types/mod.d.ts.map +1 -1
- package/esm/src/types/mod.js +21 -0
- package/esm/src/types/subscriptions/requests.d.ts +5 -14
- package/esm/src/types/subscriptions/requests.d.ts.map +1 -1
- package/package.json +4 -1
- package/script/src/clients/event.d.ts.map +1 -1
- package/script/src/clients/event.js +0 -1
- package/script/src/clients/public.d.ts +4 -4
- package/script/src/clients/public.d.ts.map +1 -1
- package/script/src/clients/public.js +4 -7
- package/script/src/clients/wallet.d.ts +129 -132
- package/script/src/clients/wallet.d.ts.map +1 -1
- package/script/src/clients/wallet.js +290 -268
- package/script/src/signing.d.ts +149 -32
- package/script/src/signing.d.ts.map +1 -1
- package/script/src/signing.js +124 -16
- package/script/src/transports/http/http_transport.d.ts +14 -24
- package/script/src/transports/http/http_transport.d.ts.map +1 -1
- package/script/src/transports/http/http_transport.js +20 -15
- package/script/src/transports/websocket/websocket_transport.d.ts +6 -2
- package/script/src/transports/websocket/websocket_transport.d.ts.map +1 -1
- package/script/src/types/exchange/requests.d.ts +52 -38
- package/script/src/types/exchange/requests.d.ts.map +1 -1
- package/script/src/types/info/accounts.d.ts +4 -0
- package/script/src/types/info/accounts.d.ts.map +1 -1
- package/script/src/types/info/assets.d.ts +4 -6
- package/script/src/types/info/assets.d.ts.map +1 -1
- package/script/src/types/info/orders.d.ts +28 -20
- package/script/src/types/info/orders.d.ts.map +1 -1
- package/script/src/types/info/requests.d.ts +8 -8
- package/script/src/types/info/requests.d.ts.map +1 -1
- package/script/src/types/info/vaults.d.ts +2 -0
- package/script/src/types/info/vaults.d.ts.map +1 -1
- package/script/src/types/mod.d.ts +21 -0
- package/script/src/types/mod.d.ts.map +1 -1
- package/script/src/types/mod.js +21 -0
- package/script/src/types/subscriptions/requests.d.ts +5 -14
- package/script/src/types/subscriptions/requests.d.ts.map +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type Hex, HyperliquidError, type IRequestTransport, type MaybePromise } from "../base.js";
|
|
2
|
-
import type { ApproveAgentRequest, ApproveBuilderFeeRequest, BatchModifyRequest, CancelByCloidRequest, CancelRequest, CDepositRequest,
|
|
2
|
+
import type { ApproveAgentRequest, ApproveBuilderFeeRequest, BatchModifyRequest, CancelByCloidRequest, CancelRequest, CDepositRequest, CreateSubAccountRequest, CreateVaultRequest, CWithdrawRequest, EvmUserModifyRequest, ModifyRequest, OrderRequest, ReserveRequestWeightRequest, ScheduleCancelRequest, SetDisplayNameRequest, SetReferrerRequest, SpotDeployRequest_Genesis, SpotDeployRequest_RegisterHyperliquidity, SpotDeployRequest_RegisterSpot, SpotDeployRequest_RegisterToken2, SpotDeployRequest_UserGenesis, SpotSendRequest, SpotUserRequest, SubAccountSpotTransferRequest, SubAccountTransferRequest, TokenDelegateRequest, TwapCancelRequest, TwapOrderRequest, UpdateIsolatedMarginRequest, UpdateLeverageRequest, UsdClassTransferRequest, UsdSendRequest, VaultDistributeRequest, VaultModifyRequest, VaultTransferRequest, Withdraw3Request } from "../types/exchange/requests.js";
|
|
3
3
|
import type { BaseExchangeResponse, CancelResponse, CreateSubAccountResponse, CreateVaultResponse, ErrorResponse, OrderResponse, SuccessResponse, TwapCancelResponse, TwapOrderResponse } from "../types/exchange/responses.js";
|
|
4
4
|
import { type AbstractEthersSigner, type AbstractEthersV5Signer, type AbstractExtendedViemWalletClient, type AbstractViemWalletClient, type AbstractWindowEthereum } from "../signing.js";
|
|
5
5
|
/** Parameters for the {@linkcode WalletClient} constructor. */
|
|
6
|
-
export interface WalletClientParameters<T extends IRequestTransport = IRequestTransport, W extends AbstractEthersSigner | AbstractEthersV5Signer | AbstractExtendedViemWalletClient |
|
|
6
|
+
export interface WalletClientParameters<T extends IRequestTransport = IRequestTransport, W extends AbstractViemWalletClient | AbstractEthersSigner | AbstractEthersV5Signer | AbstractExtendedViemWalletClient | AbstractWindowEthereum = AbstractViemWalletClient | AbstractEthersSigner | AbstractEthersV5Signer | AbstractExtendedViemWalletClient | AbstractWindowEthereum> {
|
|
7
7
|
/** The transport used to connect to the Hyperliquid API. */
|
|
8
8
|
transport: T;
|
|
9
9
|
/** The `viem`, `ethers.js`, or `window.ethereum` wallet used for signing transactions. */
|
|
@@ -23,81 +23,87 @@ export interface WalletClientParameters<T extends IRequestTransport = IRequestTr
|
|
|
23
23
|
* Defaults to trying to get the current wallet network. Otherwise `0xa4b1` for `isTestnet = false` or `0x66eee` for `isTestnet = true` will be used.
|
|
24
24
|
*/
|
|
25
25
|
signatureChainId?: Hex | (() => MaybePromise<Hex>);
|
|
26
|
+
/**
|
|
27
|
+
* Function to get the next nonce for signing transactions.
|
|
28
|
+
*
|
|
29
|
+
* Defaults to a function that returns the current timestamp or, if duplicated, increments the last nonce.
|
|
30
|
+
*/
|
|
31
|
+
nonceManager?: () => MaybePromise<number>;
|
|
26
32
|
}
|
|
27
33
|
/** Parameters for the {@linkcode WalletClient.approveAgent} method. */
|
|
28
|
-
export type ApproveAgentParameters = Omit<ApproveAgentRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"
|
|
34
|
+
export type ApproveAgentParameters = Omit<ApproveAgentRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce">;
|
|
29
35
|
/** Parameters for the {@linkcode WalletClient.approveBuilderFee} method. */
|
|
30
|
-
export type ApproveBuilderFeeParameters = Omit<ApproveBuilderFeeRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"
|
|
36
|
+
export type ApproveBuilderFeeParameters = Omit<ApproveBuilderFeeRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce">;
|
|
31
37
|
/** Parameters for the {@linkcode WalletClient.batchModify} method. */
|
|
32
|
-
export type BatchModifyParameters = Omit<BatchModifyRequest["action"], "type"> & Partial<Pick<BatchModifyRequest, "vaultAddress"
|
|
38
|
+
export type BatchModifyParameters = Omit<BatchModifyRequest["action"], "type"> & Partial<Pick<BatchModifyRequest, "vaultAddress">>;
|
|
33
39
|
/** Parameters for the {@linkcode WalletClient.cancel} method. */
|
|
34
|
-
export type CancelParameters = Omit<CancelRequest["action"], "type"> & Partial<Pick<CancelRequest, "vaultAddress"
|
|
35
|
-
/** Parameters for the {@linkcode WalletClient.cDeposit} method. */
|
|
36
|
-
export type CDepositParameters = Omit<CDepositRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"> & Partial<Pick<CDepositRequest["action"], "nonce">>;
|
|
37
|
-
/** Parameters for the {@linkcode WalletClient.claimRewards} method. */
|
|
38
|
-
export type ClaimRewardsParameters = Omit<ClaimRewardsRequest["action"], "type"> & Partial<Pick<ClaimRewardsRequest, "nonce">>;
|
|
40
|
+
export type CancelParameters = Omit<CancelRequest["action"], "type"> & Partial<Pick<CancelRequest, "vaultAddress">>;
|
|
39
41
|
/** Parameters for the {@linkcode WalletClient.cancelByCloid} method. */
|
|
40
|
-
export type CancelByCloidParameters = Omit<CancelByCloidRequest["action"], "type"> & Partial<Pick<CancelByCloidRequest, "vaultAddress"
|
|
41
|
-
/** Parameters for the {@linkcode WalletClient.
|
|
42
|
-
export type
|
|
43
|
-
/** Parameters for the {@linkcode WalletClient.evmUserModify} method. */
|
|
44
|
-
export type EvmUserModifyParameters = Omit<EvmUserModifyRequest["action"], "type"> & Partial<Pick<EvmUserModifyRequest, "nonce">>;
|
|
42
|
+
export type CancelByCloidParameters = Omit<CancelByCloidRequest["action"], "type"> & Partial<Pick<CancelByCloidRequest, "vaultAddress">>;
|
|
43
|
+
/** Parameters for the {@linkcode WalletClient.cDeposit} method. */
|
|
44
|
+
export type CDepositParameters = Omit<CDepositRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce">;
|
|
45
45
|
/** Parameters for the {@linkcode WalletClient.createSubAccount} method. */
|
|
46
|
-
export type CreateSubAccountParameters = Omit<CreateSubAccountRequest["action"], "type"
|
|
46
|
+
export type CreateSubAccountParameters = Omit<CreateSubAccountRequest["action"], "type">;
|
|
47
47
|
/** Parameters for the {@linkcode WalletClient.createVault} method. */
|
|
48
|
-
export type CreateVaultParameters = Omit<CreateVaultRequest["action"], "type" | "nonce"
|
|
48
|
+
export type CreateVaultParameters = Omit<CreateVaultRequest["action"], "type" | "nonce">;
|
|
49
|
+
/** Parameters for the {@linkcode WalletClient.cWithdraw} method. */
|
|
50
|
+
export type CWithdrawParameters = Omit<CWithdrawRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce">;
|
|
51
|
+
/** Parameters for the {@linkcode WalletClient.evmUserModify} method. */
|
|
52
|
+
export type EvmUserModifyParameters = Omit<EvmUserModifyRequest["action"], "type">;
|
|
49
53
|
/** Parameters for the {@linkcode WalletClient.modify} method. */
|
|
50
|
-
export type ModifyParameters = Omit<ModifyRequest["action"], "type"> & Partial<Pick<ModifyRequest, "vaultAddress"
|
|
54
|
+
export type ModifyParameters = Omit<ModifyRequest["action"], "type"> & Partial<Pick<ModifyRequest, "vaultAddress">>;
|
|
51
55
|
/** Parameters for the {@linkcode WalletClient.order} method. */
|
|
52
|
-
export type OrderParameters = Omit<OrderRequest["action"], "type"> & Partial<Pick<OrderRequest, "vaultAddress"
|
|
56
|
+
export type OrderParameters = Omit<OrderRequest["action"], "type"> & Partial<Pick<OrderRequest, "vaultAddress">>;
|
|
57
|
+
/** Parameters for the {@linkcode WalletClient.reserveRequestWeight} method. */
|
|
58
|
+
export type ReserveRequestWeightParameters = Omit<ReserveRequestWeightRequest["action"], "type">;
|
|
53
59
|
/** Parameters for the {@linkcode WalletClient.scheduleCancel} method. */
|
|
54
|
-
export type ScheduleCancelParameters = Omit<ScheduleCancelRequest["action"], "type"> & Partial<Pick<ScheduleCancelRequest, "vaultAddress"
|
|
60
|
+
export type ScheduleCancelParameters = Omit<ScheduleCancelRequest["action"], "type"> & Partial<Pick<ScheduleCancelRequest, "vaultAddress">>;
|
|
55
61
|
/** Parameters for the {@linkcode WalletClient.setDisplayName} method. */
|
|
56
|
-
export type SetDisplayNameParameters = Omit<SetDisplayNameRequest["action"], "type"
|
|
62
|
+
export type SetDisplayNameParameters = Omit<SetDisplayNameRequest["action"], "type">;
|
|
57
63
|
/** Parameters for the {@linkcode WalletClient.setReferrer} method. */
|
|
58
|
-
export type SetReferrerParameters = Omit<SetReferrerRequest["action"], "type"
|
|
64
|
+
export type SetReferrerParameters = Omit<SetReferrerRequest["action"], "type">;
|
|
59
65
|
/** Parameters for the {@linkcode WalletClient.spotDeploy} method. */
|
|
60
66
|
export type SpotDeployParameters = SpotDeployParameters_RegisterToken2 | SpotDeployParameters_UserGenesis | SpotDeployParameters_Genesis | SpotDeployParameters_RegisterSpot | SpotDeployParameters_RegisterHyperliquidity;
|
|
61
67
|
/** One of the parameters for the {@linkcode WalletClient.spotDeploy} method. */
|
|
62
|
-
export type SpotDeployParameters_RegisterToken2 = Omit<SpotDeployRequest_RegisterToken2["action"], "type"
|
|
68
|
+
export type SpotDeployParameters_RegisterToken2 = Omit<SpotDeployRequest_RegisterToken2["action"], "type">;
|
|
63
69
|
/** One of the parameters for the {@linkcode WalletClient.spotDeploy} method. */
|
|
64
|
-
export type SpotDeployParameters_UserGenesis = Omit<SpotDeployRequest_UserGenesis["action"], "type"
|
|
70
|
+
export type SpotDeployParameters_UserGenesis = Omit<SpotDeployRequest_UserGenesis["action"], "type">;
|
|
65
71
|
/** One of the parameters for the {@linkcode WalletClient.spotDeploy} method. */
|
|
66
|
-
export type SpotDeployParameters_Genesis = Omit<SpotDeployRequest_Genesis["action"], "type"
|
|
72
|
+
export type SpotDeployParameters_Genesis = Omit<SpotDeployRequest_Genesis["action"], "type">;
|
|
67
73
|
/** One of the parameters for the {@linkcode WalletClient.spotDeploy} method. */
|
|
68
|
-
export type SpotDeployParameters_RegisterSpot = Omit<SpotDeployRequest_RegisterSpot["action"], "type"
|
|
74
|
+
export type SpotDeployParameters_RegisterSpot = Omit<SpotDeployRequest_RegisterSpot["action"], "type">;
|
|
69
75
|
/** One of the parameters for the {@linkcode WalletClient.spotDeploy} method. */
|
|
70
|
-
export type SpotDeployParameters_RegisterHyperliquidity = Omit<SpotDeployRequest_RegisterHyperliquidity["action"], "type"
|
|
76
|
+
export type SpotDeployParameters_RegisterHyperliquidity = Omit<SpotDeployRequest_RegisterHyperliquidity["action"], "type">;
|
|
71
77
|
/** Parameters for the {@linkcode WalletClient.spotSend} method. */
|
|
72
|
-
export type SpotSendParameters = Omit<SpotSendRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "time"
|
|
78
|
+
export type SpotSendParameters = Omit<SpotSendRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "time">;
|
|
73
79
|
/** Parameters for the {@linkcode WalletClient.spotUser} method. */
|
|
74
|
-
export type SpotUserParameters = Omit<SpotUserRequest["action"], "type"
|
|
80
|
+
export type SpotUserParameters = Omit<SpotUserRequest["action"], "type">;
|
|
75
81
|
/** Parameters for the {@linkcode WalletClient.subAccountSpotTransfer} method. */
|
|
76
|
-
export type SubAccountSpotTransferParameters = Omit<SubAccountSpotTransferRequest["action"], "type"
|
|
82
|
+
export type SubAccountSpotTransferParameters = Omit<SubAccountSpotTransferRequest["action"], "type">;
|
|
77
83
|
/** Parameters for the {@linkcode WalletClient.subAccountTransfer} method. */
|
|
78
|
-
export type SubAccountTransferParameters = Omit<SubAccountTransferRequest["action"], "type"
|
|
84
|
+
export type SubAccountTransferParameters = Omit<SubAccountTransferRequest["action"], "type">;
|
|
79
85
|
/** Parameters for the {@linkcode WalletClient.tokenDelegate} method. */
|
|
80
|
-
export type TokenDelegateParameters = Omit<TokenDelegateRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"
|
|
86
|
+
export type TokenDelegateParameters = Omit<TokenDelegateRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce">;
|
|
81
87
|
/** Parameters for the {@linkcode WalletClient.twapCancel} method. */
|
|
82
|
-
export type TwapCancelParameters = Omit<TwapCancelRequest["action"], "type"> & Partial<Pick<TwapCancelRequest, "vaultAddress"
|
|
88
|
+
export type TwapCancelParameters = Omit<TwapCancelRequest["action"], "type"> & Partial<Pick<TwapCancelRequest, "vaultAddress">>;
|
|
83
89
|
/** Parameters for the {@linkcode WalletClient.twapOrder} method. */
|
|
84
|
-
export type TwapOrderParameters = TwapOrderRequest["action"]["twap"] & Partial<Pick<TwapOrderRequest, "vaultAddress"
|
|
90
|
+
export type TwapOrderParameters = TwapOrderRequest["action"]["twap"] & Partial<Pick<TwapOrderRequest, "vaultAddress">>;
|
|
85
91
|
/** Parameters for the {@linkcode WalletClient.updateIsolatedMargin} method. */
|
|
86
|
-
export type UpdateIsolatedMarginParameters = Omit<UpdateIsolatedMarginRequest["action"], "type"> & Partial<Pick<UpdateIsolatedMarginRequest, "vaultAddress"
|
|
92
|
+
export type UpdateIsolatedMarginParameters = Omit<UpdateIsolatedMarginRequest["action"], "type"> & Partial<Pick<UpdateIsolatedMarginRequest, "vaultAddress">>;
|
|
87
93
|
/** Parameters for the {@linkcode WalletClient.updateLeverage} method. */
|
|
88
|
-
export type UpdateLeverageParameters = Omit<UpdateLeverageRequest["action"], "type"> & Partial<Pick<UpdateLeverageRequest, "vaultAddress"
|
|
94
|
+
export type UpdateLeverageParameters = Omit<UpdateLeverageRequest["action"], "type"> & Partial<Pick<UpdateLeverageRequest, "vaultAddress">>;
|
|
89
95
|
/** Parameters for the {@linkcode WalletClient.usdClassTransfer} method. */
|
|
90
|
-
export type UsdClassTransferParameters = Omit<UsdClassTransferRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce"
|
|
96
|
+
export type UsdClassTransferParameters = Omit<UsdClassTransferRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "nonce">;
|
|
91
97
|
/** Parameters for the {@linkcode WalletClient.usdSend} method. */
|
|
92
|
-
export type UsdSendParameters = Omit<UsdSendRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "time"
|
|
98
|
+
export type UsdSendParameters = Omit<UsdSendRequest["action"], "type" | "hyperliquidChain" | "signatureChainId" | "time">;
|
|
93
99
|
/** Parameters for the {@linkcode WalletClient.vaultDistribute} method. */
|
|
94
|
-
export type VaultDistributeParameters = Omit<VaultDistributeRequest["action"], "type"
|
|
100
|
+
export type VaultDistributeParameters = Omit<VaultDistributeRequest["action"], "type">;
|
|
95
101
|
/** Parameters for the {@linkcode WalletClient.vaultModify} method. */
|
|
96
|
-
export type VaultModifyParameters = Omit<VaultModifyRequest["action"], "type"
|
|
102
|
+
export type VaultModifyParameters = Omit<VaultModifyRequest["action"], "type">;
|
|
97
103
|
/** Parameters for the {@linkcode WalletClient.vaultTransfer} method. */
|
|
98
|
-
export type VaultTransferParameters = Omit<VaultTransferRequest["action"], "type"
|
|
104
|
+
export type VaultTransferParameters = Omit<VaultTransferRequest["action"], "type">;
|
|
99
105
|
/** Parameters for the {@linkcode WalletClient.withdraw3} method. */
|
|
100
|
-
export type Withdraw3Parameters = Omit<Withdraw3Request["action"], "type" | "hyperliquidChain" | "signatureChainId" | "time"
|
|
106
|
+
export type Withdraw3Parameters = Omit<Withdraw3Request["action"], "type" | "hyperliquidChain" | "signatureChainId" | "time">;
|
|
101
107
|
/** Successful variant of {@linkcode CancelResponse} without error statuses. */
|
|
102
108
|
export type CancelResponseSuccess = CancelResponse & {
|
|
103
109
|
response: {
|
|
@@ -148,7 +154,7 @@ export declare class ApiRequestError extends HyperliquidError {
|
|
|
148
154
|
* @typeParam T The transport used to connect to the Hyperliquid API.
|
|
149
155
|
* @typeParam W The WalletClient/Account ([viem](https://viem.sh/docs/clients/wallet)) or Signer ([ethers.js](https://docs.ethers.io/v6/api/providers/#Signer)) used for signing transactions.
|
|
150
156
|
*/
|
|
151
|
-
export declare class WalletClient<T extends IRequestTransport = IRequestTransport, W extends AbstractEthersSigner | AbstractEthersV5Signer | AbstractExtendedViemWalletClient | AbstractViemWalletClient |
|
|
157
|
+
export declare class WalletClient<T extends IRequestTransport = IRequestTransport, W extends AbstractViemWalletClient | AbstractEthersSigner | AbstractEthersV5Signer | AbstractExtendedViemWalletClient | AbstractWindowEthereum = AbstractViemWalletClient | AbstractEthersSigner | AbstractEthersV5Signer | AbstractExtendedViemWalletClient | AbstractWindowEthereum> {
|
|
152
158
|
/** The transport used to connect to the Hyperliquid API. */
|
|
153
159
|
transport: T;
|
|
154
160
|
/** The `viem`, `ethers.js`, or `window.ethereum` wallet used for signing transactions. */
|
|
@@ -162,10 +168,8 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
162
168
|
* Must match the network of the {@link wallet}.
|
|
163
169
|
*/
|
|
164
170
|
signatureChainId: Hex | (() => MaybePromise<Hex>);
|
|
165
|
-
/**
|
|
166
|
-
|
|
167
|
-
/** Gets the next nonce for signing transactions. */
|
|
168
|
-
protected get _nonce(): number;
|
|
171
|
+
/** Function to get the next nonce for signing transactions. */
|
|
172
|
+
nonceManager: () => MaybePromise<number>;
|
|
169
173
|
/**
|
|
170
174
|
* Initialises a new instance.
|
|
171
175
|
* @param args - The parameters for the client.
|
|
@@ -230,10 +234,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
230
234
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
231
235
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
232
236
|
*
|
|
233
|
-
* const result = await client.approveAgent({
|
|
234
|
-
* agentAddress: "0x...",
|
|
235
|
-
* agentName: "agentName",
|
|
236
|
-
* });
|
|
237
|
+
* const result = await client.approveAgent({ agentAddress: "0x...", agentName: "agentName" });
|
|
237
238
|
* ```
|
|
238
239
|
*/
|
|
239
240
|
approveAgent(args: ApproveAgentParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -254,10 +255,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
254
255
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
255
256
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
256
257
|
*
|
|
257
|
-
* const result = await client.approveBuilderFee({
|
|
258
|
-
* maxFeeRate: "0.01%",
|
|
259
|
-
* builder: "0x...",
|
|
260
|
-
* });
|
|
258
|
+
* const result = await client.approveBuilderFee({ maxFeeRate: "0.01%", builder: "0x..." });
|
|
261
259
|
* ```
|
|
262
260
|
*/
|
|
263
261
|
approveBuilderFee(args: ApproveBuilderFeeParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -280,7 +278,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
280
278
|
*
|
|
281
279
|
* const result = await client.batchModify({
|
|
282
280
|
* modifies: [{
|
|
283
|
-
* oid: 123,
|
|
281
|
+
* oid: 123,
|
|
284
282
|
* order: {
|
|
285
283
|
* a: 0, // Asset index
|
|
286
284
|
* b: true, // Buy order
|
|
@@ -326,13 +324,13 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
326
324
|
*/
|
|
327
325
|
cancel(args: CancelParameters, signal?: AbortSignal): Promise<CancelResponseSuccess>;
|
|
328
326
|
/**
|
|
329
|
-
*
|
|
327
|
+
* Cancel order(s) by cloid.
|
|
330
328
|
* @param args - The parameters for the request.
|
|
331
329
|
* @param signal - An optional abort signal.
|
|
332
|
-
* @returns Successful
|
|
330
|
+
* @returns Successful variant of {@link CancelResponse} without error statuses.
|
|
333
331
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
334
332
|
*
|
|
335
|
-
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#
|
|
333
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#cancel-order-s-by-cloid
|
|
336
334
|
* @example
|
|
337
335
|
* ```ts
|
|
338
336
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -342,18 +340,22 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
342
340
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
343
341
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
344
342
|
*
|
|
345
|
-
* const result = await client.
|
|
343
|
+
* const result = await client.cancelByCloid({
|
|
344
|
+
* cancels: [
|
|
345
|
+
* { asset: 0, cloid: "0x..." },
|
|
346
|
+
* ],
|
|
347
|
+
* });
|
|
346
348
|
* ```
|
|
347
349
|
*/
|
|
348
|
-
|
|
350
|
+
cancelByCloid(args: CancelByCloidParameters, signal?: AbortSignal): Promise<CancelResponseSuccess>;
|
|
349
351
|
/**
|
|
350
|
-
*
|
|
352
|
+
* Deposit into staking balance.
|
|
351
353
|
* @param args - The parameters for the request.
|
|
352
354
|
* @param signal - An optional abort signal.
|
|
353
355
|
* @returns Successful response without specific data.
|
|
354
356
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
355
357
|
*
|
|
356
|
-
* @see
|
|
358
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#deposit-into-staking
|
|
357
359
|
* @example
|
|
358
360
|
* ```ts
|
|
359
361
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -363,18 +365,18 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
363
365
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
364
366
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
365
367
|
*
|
|
366
|
-
* const result = await client.
|
|
368
|
+
* const result = await client.cDeposit({ wei: 1 * 1e8 });
|
|
367
369
|
* ```
|
|
368
370
|
*/
|
|
369
|
-
|
|
371
|
+
cDeposit(args: CDepositParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
370
372
|
/**
|
|
371
|
-
*
|
|
373
|
+
* Claim rewards from referral program.
|
|
372
374
|
* @param args - The parameters for the request.
|
|
373
375
|
* @param signal - An optional abort signal.
|
|
374
|
-
* @returns Successful
|
|
376
|
+
* @returns Successful response without specific data.
|
|
375
377
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
376
378
|
*
|
|
377
|
-
* @see
|
|
379
|
+
* @see null - no documentation
|
|
378
380
|
* @example
|
|
379
381
|
* ```ts
|
|
380
382
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -384,23 +386,18 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
384
386
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
385
387
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
386
388
|
*
|
|
387
|
-
* const result = await client.
|
|
388
|
-
* cancels: [{
|
|
389
|
-
* asset: 0,
|
|
390
|
-
* cloid: "0x...", // Client Order ID
|
|
391
|
-
* }],
|
|
392
|
-
* });
|
|
389
|
+
* const result = await client.claimRewards();
|
|
393
390
|
* ```
|
|
394
391
|
*/
|
|
395
|
-
|
|
392
|
+
claimRewards(signal?: AbortSignal): Promise<SuccessResponse>;
|
|
396
393
|
/**
|
|
397
|
-
*
|
|
394
|
+
* Create a sub-account.
|
|
398
395
|
* @param args - The parameters for the request.
|
|
399
396
|
* @param signal - An optional abort signal.
|
|
400
|
-
* @returns
|
|
397
|
+
* @returns Response for creating a sub-account.
|
|
401
398
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
402
399
|
*
|
|
403
|
-
* @see
|
|
400
|
+
* @see null - no documentation
|
|
404
401
|
* @example
|
|
405
402
|
* ```ts
|
|
406
403
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -410,18 +407,18 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
410
407
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
411
408
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
412
409
|
*
|
|
413
|
-
* const result = await client.
|
|
410
|
+
* const result = await client.createSubAccount({ name: "subAccountName" });
|
|
414
411
|
* ```
|
|
415
412
|
*/
|
|
416
|
-
|
|
413
|
+
createSubAccount(args: CreateSubAccountParameters, signal?: AbortSignal): Promise<CreateSubAccountResponse>;
|
|
417
414
|
/**
|
|
418
|
-
*
|
|
415
|
+
* Create a vault.
|
|
419
416
|
* @param args - The parameters for the request.
|
|
420
417
|
* @param signal - An optional abort signal.
|
|
421
|
-
* @returns Response for creating a
|
|
418
|
+
* @returns Response for creating a vault.
|
|
422
419
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
423
420
|
*
|
|
424
|
-
* @see
|
|
421
|
+
* @see null - no documentation
|
|
425
422
|
* @example
|
|
426
423
|
* ```ts
|
|
427
424
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -431,18 +428,22 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
431
428
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
432
429
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
433
430
|
*
|
|
434
|
-
* const result = await client.
|
|
431
|
+
* const result = await client.createVault({
|
|
432
|
+
* name: "VaultName",
|
|
433
|
+
* description: "This is an example of a vault description",
|
|
434
|
+
* initialUsd: 100 * 1e6,
|
|
435
|
+
* });
|
|
435
436
|
* ```
|
|
436
437
|
*/
|
|
437
|
-
|
|
438
|
+
createVault(args: CreateVaultParameters, signal?: AbortSignal): Promise<CreateVaultResponse>;
|
|
438
439
|
/**
|
|
439
|
-
*
|
|
440
|
+
* Withdraw from staking balance.
|
|
440
441
|
* @param args - The parameters for the request.
|
|
441
442
|
* @param signal - An optional abort signal.
|
|
442
|
-
* @returns
|
|
443
|
+
* @returns Successful response without specific data.
|
|
443
444
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
444
445
|
*
|
|
445
|
-
* @see
|
|
446
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#withdraw-from-staking
|
|
446
447
|
* @example
|
|
447
448
|
* ```ts
|
|
448
449
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -452,18 +453,18 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
452
453
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
453
454
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
454
455
|
*
|
|
455
|
-
* const result = await client.
|
|
456
|
+
* const result = await client.cWithdraw({ wei: 1 * 1e8 });
|
|
456
457
|
* ```
|
|
457
458
|
*/
|
|
458
|
-
|
|
459
|
+
cWithdraw(args: CWithdrawParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
459
460
|
/**
|
|
460
|
-
*
|
|
461
|
+
* Configure block type for EVM transactions.
|
|
461
462
|
* @param args - The parameters for the request.
|
|
462
463
|
* @param signal - An optional abort signal.
|
|
463
|
-
* @returns Response for creating a
|
|
464
|
+
* @returns Response for creating a sub-account.
|
|
464
465
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
465
466
|
*
|
|
466
|
-
* @see
|
|
467
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/evm/dual-block-architecture
|
|
467
468
|
* @example
|
|
468
469
|
* ```ts
|
|
469
470
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -473,14 +474,10 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
473
474
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
474
475
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
475
476
|
*
|
|
476
|
-
* const result = await client.
|
|
477
|
-
* name: "VaultName",
|
|
478
|
-
* description: "This is an example of a vault description",
|
|
479
|
-
* initialUsd: 100 * 1e6,
|
|
480
|
-
* });
|
|
477
|
+
* const result = await client.evmUserModify({ usingBigBlocks: true });
|
|
481
478
|
* ```
|
|
482
479
|
*/
|
|
483
|
-
|
|
480
|
+
evmUserModify(args: EvmUserModifyParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
484
481
|
/**
|
|
485
482
|
* Modify an order.
|
|
486
483
|
* @param args - The parameters for the request.
|
|
@@ -499,7 +496,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
499
496
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
500
497
|
*
|
|
501
498
|
* const result = await client.modify({
|
|
502
|
-
* oid: 123,
|
|
499
|
+
* oid: 123,
|
|
503
500
|
* order: {
|
|
504
501
|
* a: 0, // Asset index
|
|
505
502
|
* b: true, // Buy order
|
|
@@ -553,6 +550,27 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
553
550
|
* ```
|
|
554
551
|
*/
|
|
555
552
|
order(args: OrderParameters, signal?: AbortSignal): Promise<OrderResponseSuccess>;
|
|
553
|
+
/**
|
|
554
|
+
* Reserve additional rate-limited actions for a fee.
|
|
555
|
+
* @param args - The parameters for the request.
|
|
556
|
+
* @param signal - An optional abort signal.
|
|
557
|
+
* @returns Successful response indicating the weight reservation.
|
|
558
|
+
* @throws {ApiRequestError} When the API returns an error response.
|
|
559
|
+
*
|
|
560
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#reserve-additional-actions
|
|
561
|
+
* @example
|
|
562
|
+
* ```ts
|
|
563
|
+
* import * as hl from "@nktkas/hyperliquid";
|
|
564
|
+
* import { privateKeyToAccount } from "viem/accounts";
|
|
565
|
+
*
|
|
566
|
+
* const wallet = privateKeyToAccount("0x...");
|
|
567
|
+
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
568
|
+
* const client = new hl.WalletClient({ wallet, transport });
|
|
569
|
+
*
|
|
570
|
+
* const result = await client.reserveRequestWeight({ weight: 10 });
|
|
571
|
+
* ```
|
|
572
|
+
*/
|
|
573
|
+
reserveRequestWeight(args: ReserveRequestWeightParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
556
574
|
/**
|
|
557
575
|
* Schedule a time to cancel all open orders.
|
|
558
576
|
* @param args - The parameters for the request.
|
|
@@ -634,7 +652,6 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
634
652
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
635
653
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
636
654
|
*
|
|
637
|
-
* // Unknown what the successful response will be
|
|
638
655
|
* const result = await client.spotDeploy({
|
|
639
656
|
* registerToken2: {
|
|
640
657
|
* spec: {
|
|
@@ -656,7 +673,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
656
673
|
* @returns Successful response without specific data.
|
|
657
674
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
658
675
|
*
|
|
659
|
-
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#
|
|
676
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#core-spot-transfer
|
|
660
677
|
* @example
|
|
661
678
|
* ```ts
|
|
662
679
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -691,9 +708,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
691
708
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
692
709
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
693
710
|
*
|
|
694
|
-
* const result = await client.spotUser({
|
|
695
|
-
* toggleSpotDusting: { optOut: false },
|
|
696
|
-
* });
|
|
711
|
+
* const result = await client.spotUser({ toggleSpotDusting: { optOut: false } });
|
|
697
712
|
* ```
|
|
698
713
|
*/
|
|
699
714
|
spotUser(args: SpotUserParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -842,11 +857,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
842
857
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
843
858
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
844
859
|
*
|
|
845
|
-
* const result = await client.updateIsolatedMargin({
|
|
846
|
-
* asset: 0,
|
|
847
|
-
* isBuy: true, // Add to long position
|
|
848
|
-
* ntli: 1, // Add 1 USD margin (integer only)
|
|
849
|
-
* });
|
|
860
|
+
* const result = await client.updateIsolatedMargin({ asset: 0, isBuy: true, ntli: 1 * 1e6 });
|
|
850
861
|
* ```
|
|
851
862
|
*/
|
|
852
863
|
updateIsolatedMargin(args: UpdateIsolatedMarginParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -867,11 +878,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
867
878
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
868
879
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
869
880
|
*
|
|
870
|
-
* const result = await client.updateLeverage({
|
|
871
|
-
* asset: 0,
|
|
872
|
-
* isCross: true,
|
|
873
|
-
* leverage: 5,
|
|
874
|
-
* });
|
|
881
|
+
* const result = await client.updateLeverage({ asset: 0, isCross: true, leverage: 5 });
|
|
875
882
|
* ```
|
|
876
883
|
*/
|
|
877
884
|
updateLeverage(args: UpdateLeverageParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -892,10 +899,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
892
899
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
893
900
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
894
901
|
*
|
|
895
|
-
* const result = await client.usdClassTransfer({
|
|
896
|
-
* amount: "1",
|
|
897
|
-
* toPerp: true, // Transfer from Spot to Perp
|
|
898
|
-
* });
|
|
902
|
+
* const result = await client.usdClassTransfer({ amount: "1", toPerp: true });
|
|
899
903
|
* ```
|
|
900
904
|
*/
|
|
901
905
|
usdClassTransfer(args: UsdClassTransferParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -906,7 +910,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
906
910
|
* @returns Successful response without specific data.
|
|
907
911
|
* @throws {ApiRequestError} When the API returns an error response.
|
|
908
912
|
*
|
|
909
|
-
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#
|
|
913
|
+
* @see https://hyperliquid.gitbook.io/hyperliquid-docs/for-developers/api/exchange-endpoint#core-usdc-transfer
|
|
910
914
|
* @example
|
|
911
915
|
* ```ts
|
|
912
916
|
* import * as hl from "@nktkas/hyperliquid";
|
|
@@ -916,10 +920,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
916
920
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
917
921
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
918
922
|
*
|
|
919
|
-
* const result = await client.usdSend({
|
|
920
|
-
* destination: "0x...",
|
|
921
|
-
* amount: "1",
|
|
922
|
-
* });
|
|
923
|
+
* const result = await client.usdSend({ destination: "0x...", amount: "1" });
|
|
923
924
|
* ```
|
|
924
925
|
*/
|
|
925
926
|
usdSend(args: UsdSendParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -940,10 +941,7 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
940
941
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
941
942
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
942
943
|
*
|
|
943
|
-
* const result = await client.vaultDistribute({
|
|
944
|
-
* vaultAddress: "0x...",
|
|
945
|
-
* usd: 10 * 1e6,
|
|
946
|
-
* });
|
|
944
|
+
* const result = await client.vaultDistribute({ vaultAddress: "0x...", usd: 10 * 1e6 });
|
|
947
945
|
* ```
|
|
948
946
|
*/
|
|
949
947
|
vaultDistribute(args: VaultDistributeParameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
@@ -1014,15 +1012,14 @@ export declare class WalletClient<T extends IRequestTransport = IRequestTranspor
|
|
|
1014
1012
|
* const transport = new hl.HttpTransport(); // or WebSocketTransport
|
|
1015
1013
|
* const client = new hl.WalletClient({ wallet, transport });
|
|
1016
1014
|
*
|
|
1017
|
-
* const result = await client.withdraw3({
|
|
1018
|
-
* destination: "0x...",
|
|
1019
|
-
* amount: "1",
|
|
1020
|
-
* });
|
|
1015
|
+
* const result = await client.withdraw3({ destination: "0x...", amount: "1" });
|
|
1021
1016
|
* ```
|
|
1022
1017
|
*/
|
|
1023
1018
|
withdraw3(args: Withdraw3Parameters, signal?: AbortSignal): Promise<SuccessResponse>;
|
|
1024
1019
|
/** Formats a decimal number as a string, removing trailing zeros. */
|
|
1025
1020
|
protected _formatDecimal(numStr: string): string;
|
|
1021
|
+
/** Guesses the chain ID based on the wallet type or the isTestnet flag. */
|
|
1022
|
+
protected _guessSignatureChainId(): Promise<Hex>;
|
|
1026
1023
|
/** Validate a response from the API. */
|
|
1027
1024
|
protected _validateResponse(response: SuccessResponse | ErrorResponse | CancelResponse | CreateSubAccountResponse | CreateVaultResponse | OrderResponse | TwapOrderResponse | TwapCancelResponse): asserts response is SuccessResponse | CancelResponseSuccess | CreateSubAccountResponse | CreateVaultResponse | OrderResponseSuccess | TwapOrderResponseSuccess | TwapCancelResponseSuccess;
|
|
1028
1025
|
}
|
|
@@ -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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"}
|