aftermath-ts-sdk 1.3.27 → 1.3.28

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.
Files changed (128) hide show
  1. package/dist/general/apiHelpers/objectsApiHelpers.d.ts.map +1 -1
  2. package/dist/general/apiHelpers/objectsApiHelpers.js +5 -4
  3. package/dist/general/apiHelpers/transactionsApiHelpers.d.ts +3 -0
  4. package/dist/general/apiHelpers/transactionsApiHelpers.d.ts.map +1 -1
  5. package/dist/general/apiHelpers/transactionsApiHelpers.js +14 -2
  6. package/dist/general/providers/aftermath.d.ts +19 -19
  7. package/dist/general/providers/aftermath.d.ts.map +1 -1
  8. package/dist/general/providers/aftermath.js +20 -20
  9. package/dist/general/providers/aftermathApi.d.ts +0 -5
  10. package/dist/general/providers/aftermathApi.d.ts.map +1 -1
  11. package/dist/general/providers/aftermathApi.js +0 -5
  12. package/dist/general/types/castingTypes.d.ts +2 -2
  13. package/dist/general/types/castingTypes.d.ts.map +1 -1
  14. package/dist/general/types/configTypes.d.ts +6 -10
  15. package/dist/general/types/configTypes.d.ts.map +1 -1
  16. package/dist/general/types/generalTypes.d.ts +8 -0
  17. package/dist/general/types/generalTypes.d.ts.map +1 -1
  18. package/dist/general/types/moveErrorsInterface.d.ts +1 -1
  19. package/dist/general/types/moveErrorsInterface.d.ts.map +1 -1
  20. package/dist/general/utils/caller.d.ts +34 -2
  21. package/dist/general/utils/caller.d.ts.map +1 -1
  22. package/dist/general/utils/caller.js +111 -12
  23. package/dist/general/utils/casting.d.ts +4 -5
  24. package/dist/general/utils/casting.d.ts.map +1 -1
  25. package/dist/general/utils/casting.js +4 -5
  26. package/dist/general/utils/helpers.d.ts +1 -0
  27. package/dist/general/utils/helpers.d.ts.map +1 -1
  28. package/dist/general/utils/helpers.js +40 -9
  29. package/dist/general/wallet/wallet.d.ts +1 -1
  30. package/dist/general/wallet/wallet.d.ts.map +1 -1
  31. package/dist/packages/coin/coin.d.ts +5 -1
  32. package/dist/packages/coin/coin.d.ts.map +1 -1
  33. package/dist/packages/coin/coin.js +7 -1
  34. package/dist/packages/farms/api/farmsApiCasting.js +27 -27
  35. package/dist/packages/farms/farms.d.ts +1 -1
  36. package/dist/packages/farms/farms.d.ts.map +1 -1
  37. package/dist/packages/farms/farmsStakedPosition.d.ts +1 -1
  38. package/dist/packages/farms/farmsStakedPosition.d.ts.map +1 -1
  39. package/dist/packages/farms/farmsStakingPool.d.ts +1 -1
  40. package/dist/packages/farms/farmsStakingPool.d.ts.map +1 -1
  41. package/dist/packages/faucet/api/faucetApi.d.ts +9 -17
  42. package/dist/packages/faucet/api/faucetApi.d.ts.map +1 -1
  43. package/dist/packages/faucet/api/faucetApi.js +44 -49
  44. package/dist/packages/faucet/api/faucetApiCasting.d.ts.map +1 -1
  45. package/dist/packages/faucet/api/faucetApiCasting.js +10 -7
  46. package/dist/packages/faucet/api/faucetApiCastingTypes.d.ts +1 -4
  47. package/dist/packages/faucet/api/faucetApiCastingTypes.d.ts.map +1 -1
  48. package/dist/packages/faucet/faucet.d.ts +1 -1
  49. package/dist/packages/faucet/faucet.d.ts.map +1 -1
  50. package/dist/packages/faucet/faucet.js +1 -1
  51. package/dist/packages/faucet/faucetTypes.d.ts +2 -3
  52. package/dist/packages/faucet/faucetTypes.d.ts.map +1 -1
  53. package/dist/packages/leveragedStaking/api/leveragedStakingApiCasting.js +3 -3
  54. package/dist/packages/multisig/multisig.d.ts +1 -1
  55. package/dist/packages/multisig/multisig.d.ts.map +1 -1
  56. package/dist/packages/nftAmm/nftAmm.d.ts +1 -1
  57. package/dist/packages/nftAmm/nftAmm.d.ts.map +1 -1
  58. package/dist/packages/perpetuals/api/perpetualsApi.d.ts +12 -203
  59. package/dist/packages/perpetuals/api/perpetualsApi.d.ts.map +1 -1
  60. package/dist/packages/perpetuals/api/perpetualsApi.js +926 -615
  61. package/dist/packages/perpetuals/api/perpetualsApiCasting.d.ts +10 -21
  62. package/dist/packages/perpetuals/api/perpetualsApiCasting.d.ts.map +1 -1
  63. package/dist/packages/perpetuals/api/perpetualsApiCasting.js +260 -238
  64. package/dist/packages/perpetuals/index.d.ts +1 -0
  65. package/dist/packages/perpetuals/index.d.ts.map +1 -1
  66. package/dist/packages/perpetuals/index.js +1 -0
  67. package/dist/packages/perpetuals/perpetuals.d.ts +830 -28
  68. package/dist/packages/perpetuals/perpetuals.d.ts.map +1 -1
  69. package/dist/packages/perpetuals/perpetuals.js +1013 -70
  70. package/dist/packages/perpetuals/perpetualsAccount.d.ts +754 -170
  71. package/dist/packages/perpetuals/perpetualsAccount.d.ts.map +1 -1
  72. package/dist/packages/perpetuals/perpetualsAccount.js +1270 -312
  73. package/dist/packages/perpetuals/perpetualsCastingTypes.d.ts +82 -149
  74. package/dist/packages/perpetuals/perpetualsCastingTypes.d.ts.map +1 -1
  75. package/dist/packages/perpetuals/perpetualsMarket.d.ts +327 -27
  76. package/dist/packages/perpetuals/perpetualsMarket.d.ts.map +1 -1
  77. package/dist/packages/perpetuals/perpetualsMarket.js +392 -79
  78. package/dist/packages/perpetuals/perpetualsTypes.d.ts +2662 -318
  79. package/dist/packages/perpetuals/perpetualsTypes.d.ts.map +1 -1
  80. package/dist/packages/perpetuals/perpetualsTypes.js +92 -82
  81. package/dist/packages/perpetuals/perpetualsVault.d.ts +438 -0
  82. package/dist/packages/perpetuals/perpetualsVault.d.ts.map +1 -0
  83. package/dist/packages/perpetuals/perpetualsVault.js +601 -0
  84. package/dist/packages/pools/api/poolsApiCasting.js +3 -3
  85. package/dist/packages/pools/pool.d.ts +1 -1
  86. package/dist/packages/pools/pool.d.ts.map +1 -1
  87. package/dist/packages/pools/pools.d.ts +1 -1
  88. package/dist/packages/pools/pools.d.ts.map +1 -1
  89. package/dist/packages/rewards/index.d.ts +2 -0
  90. package/dist/packages/rewards/index.d.ts.map +1 -0
  91. package/dist/packages/rewards/index.js +17 -0
  92. package/dist/packages/rewards/rewards.d.ts +21 -0
  93. package/dist/packages/rewards/rewards.d.ts.map +1 -0
  94. package/dist/packages/rewards/rewards.js +65 -0
  95. package/dist/packages/rewards/rewardsTypes.d.ts +169 -0
  96. package/dist/packages/rewards/rewardsTypes.d.ts.map +1 -0
  97. package/dist/packages/router/api/routerApiCasting.js +1 -1
  98. package/dist/packages/staking/api/stakingApiCasting.js +3 -3
  99. package/dist/packages/staking/staking.d.ts +1 -1
  100. package/dist/packages/staking/staking.d.ts.map +1 -1
  101. package/dist/packages/sui/sui.d.ts +1 -1
  102. package/dist/packages/sui/sui.d.ts.map +1 -1
  103. package/dist/packages/suiFrens/api/suiFrensApiCasting.js +4 -4
  104. package/dist/packages/suiFrens/stakedSuiFren.d.ts +1 -1
  105. package/dist/packages/suiFrens/stakedSuiFren.d.ts.map +1 -1
  106. package/dist/packages/suiFrens/suiFren.d.ts +1 -1
  107. package/dist/packages/suiFrens/suiFren.d.ts.map +1 -1
  108. package/dist/packages/suiFrens/suiFrens.d.ts +1 -1
  109. package/dist/packages/suiFrens/suiFrens.d.ts.map +1 -1
  110. package/dist/types.d.ts +1 -1
  111. package/dist/types.d.ts.map +1 -1
  112. package/dist/types.js +1 -1
  113. package/package.json +1 -1
  114. package/dist/packages/oracle/api/oracleApi.d.ts +0 -21
  115. package/dist/packages/oracle/api/oracleApi.d.ts.map +0 -1
  116. package/dist/packages/oracle/api/oracleApi.js +0 -76
  117. package/dist/packages/oracle/api/oracleApiCasting.d.ts +0 -6
  118. package/dist/packages/oracle/api/oracleApiCasting.d.ts.map +0 -1
  119. package/dist/packages/oracle/api/oracleApiCasting.js +0 -25
  120. package/dist/packages/oracle/oracle.d.ts +0 -15
  121. package/dist/packages/oracle/oracle.d.ts.map +0 -1
  122. package/dist/packages/oracle/oracle.js +0 -46
  123. package/dist/packages/oracle/oracleCastingTypes.d.ts +0 -11
  124. package/dist/packages/oracle/oracleCastingTypes.d.ts.map +0 -1
  125. package/dist/packages/oracle/oracleTypes.d.ts +0 -10
  126. package/dist/packages/oracle/oracleTypes.d.ts.map +0 -1
  127. package/dist/packages/oracle/oracleTypes.js +0 -2
  128. /package/dist/packages/{oracle/oracleCastingTypes.js → rewards/rewardsTypes.js} +0 -0
@@ -1,58 +1,860 @@
1
1
  import { Caller } from "../../general/utils/caller";
2
- import { ApiPerpetualsCreateAccountBody, PerpetualsMarketId, ApiPerpetualsAccountsBody, PerpetualsOrderSide, CoinType, PerpetualsOrderId, FilledTakerOrderEvent, PerpetualsOrderPrice, Timestamp, ApiPerpetualsHistoricalMarketDataResponse, PerpetualsAccountCap, IFixed, CallerConfig } from "../../types";
2
+ import { PerpetualsMarketId, ApiPerpetualsOwnedAccountCapsBody, PerpetualsOrderSide, CoinType, PerpetualsOrderId, FilledTakerOrderEvent, ApiPerpetualsMarketCandleHistoryResponse, PerpetualsAccountCap, PerpetualsAccountId, CallerConfig, SuiAddress, ObjectId, ApiPerpetualsMarkets24hrStatsResponse, ApiPerpetualsAdminAccountCapsBody, Percentage, Balance, ApiPerpetualsVaultOwnedWithdrawRequestsBody, PerpetualsOrderPrice, ApiTransactionResponse, PerpetualsWsUpdatesResponseMessage, PerpetualsWsCandleResponseMessage, ApiPerpetualsCreateVaultCapBody, PerpetualsPartialVaultCap, ApiPerpetualsMarketCandleHistoryBody, ApiPerpetualsAdminAccountCapsResponse, ApiPerpetualsOwnedAccountCapsResponse, ApiPerpetualsAccountPositionsResponse, ApiPerpetualsAccountPositionsBody, ApiPerpetualsMarketsPricesResponse, ApiPerpetualsVaultLpCoinPricesResponse, ApiPerpetualsVaultLpCoinPricesBody, ApiPerpetualsVaultOwnedLpCoinsResponse, ApiPerpetualsVaultOwnedLpCoinsBody, ApiPerpetualsOwnedVaultCapsBody, ApiPerpetualsOwnedVaultCapsResponse, ApiPerpetualsVaultOwnedWithdrawRequestsResponse, SdkTransactionResponse, ApiPerpetualsBuilderCodesCreateIntegratorConfigTxBody, ApiPerpetualsBuilderCodesCreateIntegratorVaultTxBody, ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxBody, ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxResponse, ApiPerpetualsBuilderCodesIntegratorConfigBody, ApiPerpetualsBuilderCodesIntegratorConfigResponse, ApiPerpetualsBuilderCodesIntegratorVaultsBody, ApiPerpetualsBuilderCodesIntegratorVaultsResponse, ApiPerpetualsBuilderCodesRemoveIntegratorConfigTxBody } from "../../types";
3
3
  import { PerpetualsMarket } from "./perpetualsMarket";
4
4
  import { PerpetualsAccount } from "./perpetualsAccount";
5
5
  import { PerpetualsOrderUtils } from "./utils";
6
+ import { AftermathApi } from "../../general/providers";
7
+ import { Transaction, TransactionObjectArgument } from "@mysten/sui/transactions";
8
+ import { PerpetualsVault } from "./perpetualsVault";
9
+ /**
10
+ * High-level client for interacting with Aftermath Perpetuals.
11
+ *
12
+ * This class exposes a typed, ergonomic interface over the Perpetuals HTTP API
13
+ * and websocket endpoints, including:
14
+ *
15
+ * - Market discovery (`getAllMarkets`, `getMarkets`, `getMarket`)
16
+ * - Vault discovery (`getAllVaults`, `getVaults`, `getVault`)
17
+ * - Account & position data (`getAccount`, `getAccounts`, `getAccountObjects`)
18
+ * - Ownership queries (`getOwnedAccountCaps`, `getOwnedVaultCaps`)
19
+ * - Historical data & stats (`getMarketCandleHistory`, `getMarkets24hrStats`)
20
+ * - Pricing helpers (`getPrices`, `getLpCoinPrices`)
21
+ * - Transaction builders (`getCreateAccountTx`, `getCreateVaultCapTx`, `getCreateVaultTx`)
22
+ * - Websocket feeds (`openUpdatesWebsocketStream`, `openMarketCandlesWebsocketStream`)
23
+ *
24
+ * Typical usage via the root SDK:
25
+ *
26
+ * ```ts
27
+ * import { Aftermath } from "@aftermath/sdk";
28
+ *
29
+ * const afSdk = new Aftermath("MAINNET");
30
+ * await afSdk.init();
31
+ *
32
+ * const perps = afSdk.Perpetuals();
33
+ *
34
+ * // Fetch markets for a given collateral coin type
35
+ * const markets = await perps.getAllMarkets({
36
+ * collateralCoinType: "0x2::sui::SUI",
37
+ * });
38
+ *
39
+ * // Fetch account + positions for a given account cap
40
+ * const [accountCap] = await perps.getOwnedAccountCaps({
41
+ * walletAddress: "0x...",
42
+ * });
43
+ *
44
+ * const account = await perps.getAccount({ accountCap });
45
+ *
46
+ * // Build a create-account transaction (not signed or sent)
47
+ * const createAccountTx = await perps.getCreateAccountTx({
48
+ * walletAddress: "0x...",
49
+ * collateralCoinType: "0x2::sui::SUI",
50
+ * });
51
+ * ```
52
+ */
6
53
  export declare class Perpetuals extends Caller {
54
+ readonly Provider?: AftermathApi | undefined;
55
+ /**
56
+ * Helper namespace for order-specific utilities such as parsing order IDs,
57
+ * extracting price bits, etc.
58
+ *
59
+ * This is a direct alias of {@link PerpetualsOrderUtils}.
60
+ */
7
61
  static readonly OrderUtils: typeof PerpetualsOrderUtils;
8
- constructor(config?: CallerConfig);
62
+ /**
63
+ * Creates a new Perpetuals client.
64
+ *
65
+ * @param config - Optional caller configuration (network, auth token, etc.).
66
+ * @param Provider - Optional shared {@link AftermathApi} provider instance. When
67
+ * provided, transaction-building helpers can derive serialized `txKind`
68
+ * from a {@link Transaction} object via `Provider.Transactions().fetchBase64TxKindFromTx`.
69
+ *
70
+ * @remarks
71
+ * This class extends {@link Caller} with the `"perpetuals"` route prefix, meaning:
72
+ * - HTTP calls resolve under `/perpetuals/...`
73
+ * - Websocket calls resolve under `/perpetuals/ws/...`
74
+ */
75
+ constructor(config?: CallerConfig, Provider?: AftermathApi | undefined);
76
+ /**
77
+ * Fetch all perpetual markets for a given collateral coin type.
78
+ *
79
+ * This method returns *wrapped* {@link PerpetualsMarket} instances, not the raw
80
+ * market structs. Each instance provides additional helpers for pricing, margin,
81
+ * and order parsing.
82
+ *
83
+ * @param inputs.collateralCoinType - Coin type used as collateral, e.g. `"0x2::sui::SUI"`.
84
+ * @returns Object containing `markets`.
85
+ *
86
+ * @example
87
+ * ```ts
88
+ * const { markets } = await perps.getAllMarkets({
89
+ * collateralCoinType: "0x2::sui::SUI",
90
+ * });
91
+ * ```
92
+ */
9
93
  getAllMarkets(inputs: {
10
94
  collateralCoinType: CoinType;
11
- }): Promise<PerpetualsMarket[]>;
95
+ }): Promise<{
96
+ markets: PerpetualsMarket[];
97
+ }>;
98
+ /**
99
+ * Fetch a single market by ID.
100
+ *
101
+ * Internally calls {@link getMarkets} and returns the first entry.
102
+ *
103
+ * @param inputs.marketId - The market (clearing house) object ID.
104
+ * @returns Object containing `market`.
105
+ *
106
+ * @throws If the backend returns an empty list for the given `marketId`,
107
+ * this will still attempt to return `markets[0]` (which would be `undefined`).
108
+ * Callers may want to validate the result.
109
+ *
110
+ * @example
111
+ * ```ts
112
+ * const { market } = await perps.getMarket({ marketId: "0x..." });
113
+ * ```
114
+ */
12
115
  getMarket(inputs: {
13
116
  marketId: PerpetualsMarketId;
14
- collateralCoinType: CoinType;
15
- }): Promise<PerpetualsMarket>;
117
+ }): Promise<{
118
+ market: PerpetualsMarket;
119
+ }>;
120
+ /**
121
+ * Fetch multiple markets by ID.
122
+ *
123
+ * Backend note:
124
+ * - The API supports returning orderbooks. This SDK currently constructs
125
+ * {@link PerpetualsMarket} from the returned `marketDatas[].market`.
126
+ *
127
+ * @param inputs.marketIds - Array of market object IDs to fetch.
128
+ * @returns Object containing `markets` in the same order as `marketIds`.
129
+ *
130
+ * @example
131
+ * ```ts
132
+ * const { markets } = await perps.getMarkets({
133
+ * marketIds: ["0x..A", "0x..B"],
134
+ * });
135
+ * ```
136
+ */
16
137
  getMarkets(inputs: {
17
138
  marketIds: PerpetualsMarketId[];
18
- collateralCoinType: CoinType;
19
- }): Promise<PerpetualsMarket[]>;
139
+ }): Promise<{
140
+ markets: PerpetualsMarket[];
141
+ }>;
142
+ /**
143
+ * Fetch all vaults on the current network.
144
+ *
145
+ * Vaults are managed accounts that can hold positions; LPs deposit collateral
146
+ * and receive an LP coin (see pricing helpers like {@link getLpCoinPrices}).
147
+ *
148
+ * @returns Object containing `vaults`.
149
+ *
150
+ * @example
151
+ * ```ts
152
+ * const { vaults } = await perps.getAllVaults();
153
+ * ```
154
+ */
155
+ getAllVaults(): Promise<{
156
+ vaults: PerpetualsVault[];
157
+ }>;
158
+ /**
159
+ * Fetch a single vault by ID.
160
+ *
161
+ * Internally calls {@link getVaults} and returns the first entry.
162
+ *
163
+ * @param inputs.vaultId - Vault object ID.
164
+ * @returns Object containing `vault`.
165
+ */
166
+ getVault(inputs: {
167
+ vaultId: ObjectId;
168
+ }): Promise<{
169
+ vault: PerpetualsVault;
170
+ }>;
171
+ /**
172
+ * Fetch multiple vaults by ID.
173
+ *
174
+ * @param inputs.vaultIds - Array of vault object IDs.
175
+ * @returns Object containing `vaults` in the same order as `vaultIds`.
176
+ */
177
+ getVaults(inputs: {
178
+ vaultIds: ObjectId[];
179
+ }): Promise<{
180
+ vaults: PerpetualsVault[];
181
+ }>;
182
+ /**
183
+ * Convenience helper to fetch a single account (positions + account object) from an account cap.
184
+ *
185
+ * Internally calls {@link getAccounts} and returns the first entry.
186
+ *
187
+ * @param inputs.accountCap - Account cap or partial vault cap object to derive account metadata from.
188
+ * @param inputs.marketIds - Optional list of markets to filter positions by.
189
+ * @returns Object containing `account`.
190
+ *
191
+ * @example
192
+ * ```ts
193
+ * const [accountCap] = await perps.getOwnedAccountCaps({ walletAddress: "0x..." });
194
+ * const { account } = await perps.getAccount({ accountCap });
195
+ * ```
196
+ */
20
197
  getAccount(inputs: {
21
- accountCap: PerpetualsAccountCap;
22
- }): Promise<PerpetualsAccount>;
23
- getUserAccountCaps(inputs: ApiPerpetualsAccountsBody & {
198
+ accountCap: PerpetualsAccountCap | PerpetualsPartialVaultCap;
199
+ marketIds?: PerpetualsMarketId[];
200
+ }): Promise<{
201
+ account: PerpetualsAccount;
202
+ }>;
203
+ /**
204
+ * Fetch one or more accounts (positions + account objects) from account caps.
205
+ *
206
+ * This composes:
207
+ * 1) {@link getAccountObjects} to fetch {@link PerpetualsAccountObject}s by account ID
208
+ * 2) Local pairing of returned account objects with `accountCaps`
209
+ *
210
+ * The returned {@link PerpetualsAccount} instances encapsulate:
211
+ * - The account snapshot (positions, balances, etc.)
212
+ * - The ownership/cap metadata (accountId, collateral type, vaultId, etc.)
213
+ *
214
+ * @param inputs.accountCaps - Array of account caps or partial vault cap objects.
215
+ * @param inputs.marketIds - Optional list of market IDs to filter positions by.
216
+ * @returns Object containing `accounts` in the same order as `accountCaps`.
217
+ *
218
+ * @remarks
219
+ * If `accountCaps` is empty, this returns `{ accounts: [] }` without making an API call.
220
+ */
221
+ getAccounts(inputs: {
222
+ accountCaps: (PerpetualsAccountCap | PerpetualsPartialVaultCap)[];
223
+ marketIds?: PerpetualsMarketId[];
224
+ }): Promise<{
225
+ accounts: PerpetualsAccount[];
226
+ }>;
227
+ /**
228
+ * Fetch raw account objects (including positions) for one or more account IDs.
229
+ *
230
+ * This is the lower-level primitive used by {@link getAccounts}.
231
+ *
232
+ * @param inputs.accountIds - List of account IDs to query.
233
+ * @param inputs.marketIds - Optional list of market IDs to filter positions by.
234
+ *
235
+ * @returns {@link ApiPerpetualsAccountPositionsResponse} containing `accounts`.
236
+ *
237
+ * @remarks
238
+ * If `accountIds` is empty, this returns `{ accounts: [] }` without making an API call.
239
+ */
240
+ getAccountObjects(inputs: ApiPerpetualsAccountPositionsBody): Promise<ApiPerpetualsAccountPositionsResponse>;
241
+ /**
242
+ * Fetch all account caps (perpetuals accounts) owned by a wallet, optionally
243
+ * filtered by collateral coin types.
244
+ *
245
+ * Returned values are “caps” (ownership objects), not full account snapshots.
246
+ * To fetch account positions, use {@link getAccount} or {@link getAccounts}.
247
+ *
248
+ * @param inputs.walletAddress - Owner wallet address.
249
+ * @param inputs.collateralCoinTypes - Optional list of collateral coin types to filter by.
250
+ * @returns {@link ApiPerpetualsOwnedAccountCapsResponse} containing `accounts`.
251
+ *
252
+ * @example
253
+ * ```ts
254
+ * const { accounts } = await perps.getOwnedAccountCaps({
255
+ * walletAddress: "0x...",
256
+ * collateralCoinTypes: ["0x2::sui::SUI"],
257
+ * });
258
+ * ```
259
+ */
260
+ getOwnedAccountCaps(inputs: ApiPerpetualsOwnedAccountCapsBody): Promise<ApiPerpetualsOwnedAccountCapsResponse>;
261
+ /**
262
+ * Fetch all vault caps owned by a wallet.
263
+ *
264
+ * Vault caps represent ownership/administrative authority over a vault.
265
+ *
266
+ * @param inputs.walletAddress - Owner wallet address.
267
+ * @returns {@link ApiPerpetualsOwnedVaultCapsResponse} containing vault caps.
268
+ */
269
+ getOwnedVaultCaps(inputs: ApiPerpetualsOwnedVaultCapsBody): Promise<ApiPerpetualsOwnedVaultCapsResponse>;
270
+ /**
271
+ * Fetch all pending vault withdrawal requests created by a given wallet.
272
+ *
273
+ * Withdraw requests are typically created when LPs request to exit a vault
274
+ * and may be subject to lock periods / delays depending on vault configuration.
275
+ *
276
+ * @param inputs.walletAddress - Wallet address that created the withdraw requests.
277
+ * @returns {@link ApiPerpetualsVaultOwnedWithdrawRequestsResponse} containing requests.
278
+ */
279
+ getOwnedVaultWithdrawRequests(inputs: ApiPerpetualsVaultOwnedWithdrawRequestsBody): Promise<ApiPerpetualsVaultOwnedWithdrawRequestsResponse>;
280
+ /**
281
+ * Fetch all Perpetuals vault LP coins owned by a wallet.
282
+ *
283
+ * This returns coin objects (or summaries) representing LP token holdings.
284
+ * Use {@link getLpCoinPrices} to value them in collateral units.
285
+ *
286
+ * @param inputs - {@link ApiPerpetualsVaultOwnedLpCoinsBody}.
287
+ * @returns {@link ApiPerpetualsVaultOwnedLpCoinsResponse}.
288
+ */
289
+ getOwnedVaultLpCoins(inputs: ApiPerpetualsVaultOwnedLpCoinsBody): Promise<ApiPerpetualsVaultOwnedLpCoinsResponse>;
290
+ /**
291
+ * Fetch account caps by their account IDs.
292
+ *
293
+ * @param inputs.accountCapIds - List of account IDs.
294
+ * @returns {@link ApiPerpetualsAccountCapsResponse} containing caps.
295
+ */
296
+ getAdminAccountCaps(inputs: ApiPerpetualsAdminAccountCapsBody): Promise<ApiPerpetualsAdminAccountCapsResponse>;
297
+ /**
298
+ * Fetch historical OHLCV candle data for a single market.
299
+ *
300
+ * @param inputs.marketId - Market ID to query.
301
+ * @param inputs.fromTimestamp - Start timestamp (inclusive).
302
+ * @param inputs.toTimestamp - End timestamp (exclusive).
303
+ * @param inputs.intervalMs - Candle interval in milliseconds.
304
+ *
305
+ * @returns {@link ApiPerpetualsMarketCandleHistoryResponse} containing candle points.
306
+ *
307
+ * @remarks
308
+ * This is currently implemented on the Perpetuals root client, but it may be
309
+ * relocated to {@link PerpetualsMarket} in the future.
310
+ */
311
+ getMarketCandleHistory(inputs: ApiPerpetualsMarketCandleHistoryBody): Promise<ApiPerpetualsMarketCandleHistoryResponse>;
312
+ /**
313
+ * Fetch 24-hour volume and price change stats for multiple markets.
314
+ *
315
+ * Returns volume, price change, and the latest base, collateral,
316
+ * mid, and mark prices for each requested market.
317
+ *
318
+ * @param inputs.marketIds - Market IDs to query.
319
+ * @returns {@link ApiPerpetualsMarkets24hrStatsResponse}.
320
+ */
321
+ getMarkets24hrStats(inputs: {
322
+ marketIds: PerpetualsMarketId[];
323
+ }): Promise<ApiPerpetualsMarkets24hrStatsResponse>;
324
+ /**
325
+ * Fetch the latest prices for one or more markets.
326
+ *
327
+ * Returns base, collateral, order book mid, and mark prices for each
328
+ * requested market.
329
+ *
330
+ * @param inputs.marketIds - List of market IDs to query.
331
+ * @returns {@link ApiPerpetualsMarketsPricesResponse} containing `marketsPrices`.
332
+ *
333
+ * @remarks
334
+ * If `marketIds` is empty, returns `{ marketsPrices: [] }` without making an API call.
335
+ */
336
+ getPrices(inputs: {
337
+ marketIds: ObjectId[];
338
+ }): Promise<ApiPerpetualsMarketsPricesResponse>;
339
+ /**
340
+ * Fetch LP coin prices (in collateral units) for a set of vaults.
341
+ *
342
+ * @param inputs.vaultIds - List of vault IDs to query.
343
+ * @returns {@link ApiPerpetualsVaultLpCoinPricesResponse} containing `lpCoinPrices`.
344
+ *
345
+ * @remarks
346
+ * If `vaultIds` is empty, returns `{ lpCoinPrices: [] }` without making an API call.
347
+ */
348
+ getLpCoinPrices(inputs: ApiPerpetualsVaultLpCoinPricesBody): Promise<ApiPerpetualsVaultLpCoinPricesResponse>;
349
+ /**
350
+ * Build a `transfer-cap` transaction that transfers a Perpetuals capability object (cap)
351
+ * to another wallet.
352
+ *
353
+ * Provide the `capObjectId` of the capability you want to transfer (e.g., an account cap
354
+ * or vault cap) and the `recipientAddress` that should receive it.
355
+ *
356
+ * This endpoint builds a transaction only; it does not submit it on-chain.
357
+ *
358
+ * @param inputs.recipientAddress - Recipient wallet address that should receive the cap.
359
+ * @param inputs.capObjectId - Object ID of the capability to transfer.
360
+ * @param inputs.tx - Optional transaction to extend.
361
+ *
362
+ * @returns Transaction response containing a `tx`.
363
+ */
364
+ getTransferCapTx(inputs: {
365
+ recipientAddress: SuiAddress;
366
+ capObjectId: ObjectId;
367
+ tx?: Transaction;
368
+ }): Promise<Omit<ApiTransactionResponse, "txKind"> & {
369
+ tx: Transaction;
370
+ }>;
371
+ /**
372
+ * Build a `create-account` transaction for Aftermath Perpetuals.
373
+ *
374
+ * @param inputs.walletAddress - Wallet address that will own the new account.
375
+ * @param inputs.collateralCoinType - Collateral coin type used by the account.
376
+ * @param inputs.tx - Optional {@link Transaction} to extend; if provided, the
377
+ * create-account commands are appended to this transaction.
378
+ *
379
+ * @returns {@link SdkTransactionResponse} with `tx`.
380
+ */
381
+ getCreateAccountTx(inputs: {
382
+ walletAddress: SuiAddress;
24
383
  collateralCoinType: CoinType;
25
- }): Promise<PerpetualsAccountCap[]>;
26
- getMarketHistoricalData(inputs: {
384
+ tx?: Transaction;
385
+ }): Promise<SdkTransactionResponse>;
386
+ /**
387
+ * Build a `create-vault-cap` transaction.
388
+ *
389
+ * A vault cap is an ownership/admin object for interacting with vault management
390
+ * flows. This method returns a transaction kind that mints/creates that cap.
391
+ *
392
+ * @param inputs - {@link ApiPerpetualsCreateVaultCapBody}.
393
+ * @returns {@link SdkTransactionResponse} with `tx`.
394
+ */
395
+ getCreateVaultCapTx(inputs: ApiPerpetualsCreateVaultCapBody): Promise<Omit<ApiTransactionResponse, "txKind"> & {
396
+ tx: Transaction;
397
+ }>;
398
+ /**
399
+ * Build a `create-vault` transaction.
400
+ *
401
+ * This creates a new vault plus its on-chain metadata and initial LP supply
402
+ * seeded by the initial deposit.
403
+ *
404
+ * Deposit input:
405
+ * - Use `initialDepositAmount` to have the API select/merge coins as needed, OR
406
+ * - Use `initialDepositCoinArg` if you already have a coin argument in a larger tx.
407
+ *
408
+ * Metadata:
409
+ * - Stored on-chain (or in a referenced object) as part of vault creation.
410
+ * - `extraFields` allows forward-compatible additions (e.g. social links).
411
+ *
412
+ * @param inputs.walletAddress - Address of vault owner/curator.
413
+ * @param inputs.metadata - Vault display metadata (name, description, curator info).
414
+ * @param inputs.metadata - Vault display metadata (name, description, curator info).
415
+ * @param inputs.coinMetadataId - Coin metadata object id obtained from create vault cap tx
416
+ * @param inputs.treasuryCapId - Treasury cap object id obtained from create vault cap tx
417
+ * @param inputs.collateralCoinType - Collateral coin type for deposits.
418
+ * @param inputs.lockPeriodMs - Lock-in period for deposits in milliseconds.
419
+ * @param inputs.performanceFeePercentage - Fraction of profits taken as curator fee.
420
+ * @param inputs.forceWithdrawDelayMs - Delay before forced withdrawals can be processed.
421
+ * @param inputs.isSponsoredTx - Whether this tx is sponsored (gas paid by another party).
422
+ * @param inputs.initialDepositAmount - Initial deposit amount (mutually exclusive with `initialDepositCoinArg`).
423
+ * @param inputs.initialDepositCoinArg - Transaction object argument referencing the deposit coin.
424
+ * @param inputs.tx - Optional {@link Transaction} to extend.
425
+ *
426
+ * @returns {@link SdkTransactionResponse} with `tx`.
427
+ */
428
+ getCreateVaultTx(inputs: {
429
+ walletAddress: SuiAddress;
430
+ metadata: {
431
+ /** A human-readable name for the `Vault`. */
432
+ name: string;
433
+ /** A verbose description of the `Vault`. */
434
+ description: string;
435
+ /** The `Vault` curator's name. */
436
+ curatorName?: string;
437
+ /** A url for the `Vault`'s curator. Ideally their website. */
438
+ curatorUrl?: string;
439
+ /** An image url for the `Vault`'s curator. Ideally their logo. */
440
+ curatorLogoUrl?: string;
441
+ /**
442
+ * Extra / optional fields for future extensibility.
443
+ * Recommended keys include: `twitter_url`.
444
+ */
445
+ extraFields?: Record<string, string>;
446
+ };
447
+ coinMetadataId: ObjectId;
448
+ treasuryCapId: ObjectId;
27
449
  collateralCoinType: CoinType;
28
- marketId: PerpetualsMarketId;
29
- fromTimestamp: Timestamp;
30
- toTimestamp: Timestamp;
31
- intervalMs: number;
32
- }): Promise<ApiPerpetualsHistoricalMarketDataResponse>;
33
- getCreateAccountTx(inputs: ApiPerpetualsCreateAccountBody): Promise<import("@mysten/sui/transactions").Transaction>;
450
+ lockPeriodMs: bigint;
451
+ performanceFeePercentage: Percentage;
452
+ forceWithdrawDelayMs: bigint;
453
+ tx?: Transaction;
454
+ isSponsoredTx?: boolean;
455
+ } & ({
456
+ initialDepositAmount: Balance;
457
+ } | {
458
+ initialDepositCoinArg: TransactionObjectArgument;
459
+ })): Promise<Omit<ApiTransactionResponse, "txKind"> & {
460
+ tx: Transaction;
461
+ }>;
462
+ /**
463
+ * Build a transaction to create an integrator configuration.
464
+ *
465
+ * This endpoint creates a transaction that allows a user to grant permission to an
466
+ * integrator to receive fees on orders placed on their behalf. The user specifies
467
+ * a maximum taker fee that the integrator can charge. The integrator can then
468
+ * include their address and fee (up to the maximum) when placing orders for the user.
469
+ *
470
+ * The resulting transaction must be signed by the account owner and executed on-chain.
471
+ *
472
+ * @param inputs - {@link ApiPerpetualsBuilderCodesCreateIntegratorConfigTxBody}.
473
+ * @returns {@link SdkTransactionResponse} with `tx`.
474
+ *
475
+ * @example
476
+ * ```ts
477
+ * const tx = await perps.getCreateBuilderCodeIntegratorConfigTx({
478
+ * accountId: 123n,
479
+ * integratorAddress: "0x...",
480
+ * maxTakerFee: 0.001, // 0.1% max fee
481
+ * });
482
+ * ```
483
+ */
484
+ getCreateBuilderCodeIntegratorConfigTx(inputs: ApiPerpetualsBuilderCodesCreateIntegratorConfigTxBody): Promise<Omit<ApiTransactionResponse, "txKind"> & {
485
+ tx: Transaction;
486
+ }>;
487
+ /**
488
+ * Build a transaction to remove an integrator configuration.
489
+ *
490
+ * This endpoint creates a transaction that removes an integrator's approval to
491
+ * collect fees on orders placed on behalf of the user. Once revoked, the integrator
492
+ * will no longer be able to submit orders with integrator fees for this account.
493
+ * The user can re-approve the integrator at any time by calling
494
+ * {@link getCreateIntegratorConfigTx} again.
495
+ *
496
+ * The resulting transaction must be signed by the account owner and executed on-chain.
497
+ *
498
+ * @param inputs - {@link ApiPerpetualsBuilderCodesRemoveIntegratorConfigTxBody}.
499
+ * @returns {@link SdkTransactionResponse} with `tx`.
500
+ *
501
+ * @example
502
+ * ```ts
503
+ * const tx = await perps.getRemoveBuilderCodeIntegratorConfigTx({
504
+ * accountId: 123n,
505
+ * integratorAddress: "0x...",
506
+ * });
507
+ * ```
508
+ */
509
+ getRemoveBuilderCodeIntegratorConfigTx(inputs: ApiPerpetualsBuilderCodesRemoveIntegratorConfigTxBody): Promise<Omit<ApiTransactionResponse, "txKind"> & {
510
+ tx: Transaction;
511
+ }>;
512
+ /**
513
+ * Build a transaction to initialize an integrator fee vault for a specific market.
514
+ *
515
+ * This endpoint creates a transaction that initializes a vault where an integrator's
516
+ * fees will accumulate for a specific market (clearing house). This is a one-time
517
+ * setup operation that must be performed before the integrator can claim fees from
518
+ * that market. Once created, the vault will automatically collect fees as the
519
+ * integrator submits orders on behalf of users in that market.
520
+ *
521
+ * The resulting transaction must be signed by the integrator and executed on-chain.
522
+ *
523
+ * @param inputs - {@link ApiPerpetualsBuilderCodesCreateIntegratorVaultTxBody}.
524
+ * @returns {@link SdkTransactionResponse} with `tx`.
525
+ *
526
+ * @example
527
+ * ```ts
528
+ * const tx = await perps.getCreateBuilderCodeIntegratorVaultTx({
529
+ * marketId: "0x...",
530
+ * integratorAddress: "0x...",
531
+ * });
532
+ * ```
533
+ */
534
+ getCreateBuilderCodeIntegratorVaultTx(inputs: ApiPerpetualsBuilderCodesCreateIntegratorVaultTxBody): Promise<Omit<ApiTransactionResponse, "txKind"> & {
535
+ tx: Transaction;
536
+ }>;
537
+ /**
538
+ * Build a transaction to claim accumulated integrator fees from a vault.
539
+ *
540
+ * This endpoint creates a transaction that allows an integrator to claim the fees
541
+ * they have earned from orders placed on behalf of users. Fees accumulate in a vault
542
+ * specific to each market (clearing house) and can be claimed at any moment by the
543
+ * integrator. The fees are proportional to the taker volume generated by the users'
544
+ * orders that the integrator submitted.
545
+ *
546
+ * If a `recipientAddress` is provided, the claimed fees will be automatically
547
+ * transferred to that address. Otherwise, the coin output is exposed as a transaction
548
+ * argument for further use in the transaction.
549
+ *
550
+ * The resulting transaction must be signed by the integrator and executed on-chain.
551
+ *
552
+ * @param inputs - {@link ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxBody}.
553
+ * @returns {@link ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxResponse} containing
554
+ * `txKind` and optionally `coinOutArg`.
555
+ *
556
+ * @example
557
+ * ```ts
558
+ * // Claim with automatic transfer to recipient
559
+ * const response = await perps.getClaimBuilderCodeIntegratorVaultFeesTx({
560
+ * marketId: "0x...",
561
+ * integratorAddress: "0x...",
562
+ * recipientAddress: "0x...",
563
+ * });
564
+ *
565
+ * // Claim with coin output for further use
566
+ * const response = await perps.getClaimBuilderCodeIntegratorVaultFeesTx({
567
+ * marketId: "0x...",
568
+ * integratorAddress: "0x...",
569
+ * });
570
+ * // response.coinOutArg can be used in subsequent transaction commands
571
+ * ```
572
+ */
573
+ getClaimBuilderCodeIntegratorVaultFeesTx(inputs: ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxBody): Promise<Omit<ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxResponse, "txKind"> & {
574
+ tx: Transaction;
575
+ }>;
576
+ /**
577
+ * Fetch integrator configuration for a specific account and integrator.
578
+ *
579
+ * This endpoint queries whether an integrator has been approved by an account to collect
580
+ * fees on orders placed on behalf of the account. If approved, it returns the maximum
581
+ * taker fee the integrator is authorized to charge. This information is useful for:
582
+ * - Verifying integrator permissions before placing orders
583
+ * - Displaying authorized integrators and their fee limits in UIs
584
+ * - Validating that an integrator's requested fee doesn't exceed the approved maximum
585
+ *
586
+ * @param inputs - {@link ApiPerpetualsBuilderCodesIntegratorConfigBody}.
587
+ * @returns {@link ApiPerpetualsBuilderCodesIntegratorConfigResponse} containing
588
+ * `maxTakerFee` and `exists` flag.
589
+ *
590
+ * @example
591
+ * ```ts
592
+ * const config = await perps.getBuilderCodeIntegratorConfig({
593
+ * accountId: 123n,
594
+ * integratorAddress: "0x...",
595
+ * });
596
+ *
597
+ * if (config.exists) {
598
+ * console.log(`Integrator is approved with max fee: ${config.maxTakerFee}`);
599
+ * } else {
600
+ * console.log("Integrator is not approved for this account");
601
+ * }
602
+ * ```
603
+ */
604
+ getBuilderCodeIntegratorConfig(inputs: ApiPerpetualsBuilderCodesIntegratorConfigBody): Promise<ApiPerpetualsBuilderCodesIntegratorConfigResponse>;
605
+ /**
606
+ * Fetch accumulated integrator vault fees across multiple markets.
607
+ *
608
+ * This endpoint queries the total fees an integrator has earned and accumulated in their
609
+ * vaults across one or more markets (clearing houses). Integrators earn fees proportional
610
+ * to the taker volume generated by orders they submit on behalf of users. These fees
611
+ * accumulate in per-market vaults and can be claimed at any time using
612
+ * {@link getClaimIntegratorVaultFeesTx}.
613
+ *
614
+ * This information is useful for:
615
+ * - Displaying total claimable fees to integrators in dashboards
616
+ * - Monitoring fee accrual across different markets
617
+ * - Determining which markets have fees ready to be claimed
618
+ *
619
+ * @param inputs - {@link ApiPerpetualsBuilderCodesIntegratorVaultsBody}.
620
+ * @returns {@link ApiPerpetualsBuilderCodesIntegratorVaultsResponse} containing
621
+ * a vector of market vault data with accumulated fees.
622
+ *
623
+ * @example
624
+ * ```ts
625
+ * const vaultFees = await perps.getBuilderCodeIntegratorVaults({
626
+ * marketIds: ["0x...BTCUSD", "0x...SUIUSD"],
627
+ * integratorAddress: "0x...",
628
+ * });
629
+ *
630
+ * for (const vault of vaultFees.integratorVaults) {
631
+ * console.log(`Market ${vault.marketId}: ${vault.fees} collateral units claimable`);
632
+ * }
633
+ *
634
+ * const totalFees = vaultFees.integratorVaults.reduce((sum, vault) => sum + vault.fees, 0);
635
+ * console.log(`Total claimable: ${totalFees}`);
636
+ * ```
637
+ */
638
+ getBuilderCodeIntegratorVaults(inputs: ApiPerpetualsBuilderCodesIntegratorVaultsBody): Promise<ApiPerpetualsBuilderCodesIntegratorVaultsResponse>;
639
+ /**
640
+ * Determine the logical order side (Bid/Ask) from a signed base asset amount.
641
+ *
642
+ * @param inputs.baseAssetAmount - Position base size. Positive/zero => Bid (long), negative => Ask (short).
643
+ * @returns {@link PerpetualsOrderSide}.
644
+ */
34
645
  static positionSide(inputs: {
35
- baseAssetAmount: IFixed;
646
+ baseAssetAmount: number;
36
647
  }): PerpetualsOrderSide;
37
- static orderPrice(inputs: {
648
+ /**
649
+ * Compute the effective trade price from a {@link FilledTakerOrderEvent}.
650
+ *
651
+ * Uses the ratio: `quoteAssetDelta / baseAssetDelta`.
652
+ *
653
+ * @param inputs.orderEvent - Filled taker order event.
654
+ * @returns Trade price.
655
+ */
656
+ static orderPriceFromEvent(inputs: {
38
657
  orderEvent: FilledTakerOrderEvent;
39
658
  }): number;
659
+ /**
660
+ * Extract the floating-point price from an encoded order ID.
661
+ *
662
+ * Internally uses {@link PerpetualsOrderUtils.price} and converts the fixed-point
663
+ * {@link PerpetualsOrderPrice} into a `number`.
664
+ *
665
+ * @param inputs.orderId - Encoded order ID.
666
+ * @returns Price as a `number`.
667
+ */
668
+ static orderPriceFromOrderId(inputs: {
669
+ orderId: PerpetualsOrderId;
670
+ }): number;
671
+ /**
672
+ * Convert a floating-point price into a fixed-point {@link PerpetualsOrderPrice}
673
+ * using 9 decimal places of precision.
674
+ *
675
+ * @param inputs.price - Price as a float.
676
+ * @returns Fixed-point order price.
677
+ */
40
678
  static priceToOrderPrice: (inputs: {
41
679
  price: number;
42
- lotSize: number | bigint;
43
- tickSize: number | bigint;
44
680
  }) => PerpetualsOrderPrice;
681
+ /**
682
+ * Convert a fixed-point {@link PerpetualsOrderPrice} to a float price.
683
+ *
684
+ * @param inputs.orderPrice - Fixed-point order price.
685
+ * @returns Price as a float.
686
+ */
45
687
  static orderPriceToPrice: (inputs: {
46
688
  orderPrice: PerpetualsOrderPrice;
47
- lotSize: number | bigint;
48
- tickSize: number | bigint;
49
689
  }) => number;
690
+ /**
691
+ * Convert a fixed-point lot/tick size (9 decimals) to a `number`.
692
+ *
693
+ * @param lotOrTickSize - Fixed-point size as `bigint`.
694
+ * @returns Floating-point size.
695
+ */
50
696
  static lotOrTickSizeToNumber(lotOrTickSize: bigint): number;
697
+ /**
698
+ * Convert a floating-point lot/tick size to its fixed-point representation (9 decimals).
699
+ *
700
+ * @param lotOrTickSize - Floating-point size.
701
+ * @returns Fixed-point size as `bigint`.
702
+ */
51
703
  static lotOrTickSizeToBigInt(lotOrTickSize: number): bigint;
704
+ /**
705
+ * Infer the order side from an encoded order ID.
706
+ *
707
+ * @param orderId - Encoded order ID.
708
+ * @returns {@link PerpetualsOrderSide}.
709
+ */
52
710
  static orderIdToSide: (orderId: PerpetualsOrderId) => PerpetualsOrderSide;
53
- static calcEntryPrice(inputs: {
54
- baseAssetAmount: IFixed;
55
- quoteAssetNotionalAmount: IFixed;
56
- }): number;
711
+ /**
712
+ * Construct a collateral-specialized Move event type string.
713
+ *
714
+ * Many Move events are generic over a collateral coin type. This helper appends
715
+ * `<collateralCoinType>` to a base `eventType`.
716
+ *
717
+ * @param inputs.eventType - Base event type without type parameters.
718
+ * @param inputs.collateralCoinType - Collateral coin type (e.g. `"0x2::sui::SUI"`).
719
+ * @returns Fully-qualified event type string.
720
+ */
721
+ static eventTypeForCollateral: (inputs: {
722
+ eventType: string;
723
+ collateralCoinType: CoinType;
724
+ }) => string;
725
+ /**
726
+ * Open the main updates websocket: `/perpetuals/ws/updates`.
727
+ *
728
+ * The stream emits {@link PerpetualsWsUpdatesResponseMessage} envelopes and supports
729
+ * multiple subscription types. This method returns a small controller with
730
+ * convenience subscribe/unsubscribe functions.
731
+ *
732
+ * Subscription types supported by the controller:
733
+ * - `market`: market state updates
734
+ * - `user`: user account updates (optionally including stop orders)
735
+ * - `oracle`: oracle price updates
736
+ * - `orderbook`: orderbook deltas
737
+ * - `marketOrders`: public market trades/orders
738
+ * - `userOrders`: user trade/order events
739
+ * - `userCollateralChanges`: user collateral change events
740
+ * - `topOfOrderbook`: bucketed orderbook snapshots (top of orderbook)
741
+ *
742
+ * @param args.onMessage - Handler for parsed messages from the websocket.
743
+ * @param args.onOpen - Optional handler for the `open` event.
744
+ * @param args.onError - Optional handler for the `error` event.
745
+ * @param args.onClose - Optional handler for the `close` event.
746
+ *
747
+ * @returns A controller object containing:
748
+ * - `ws`: underlying {@link WebSocket}
749
+ * - subscribe/unsubscribe helpers for each subscription type
750
+ * - `close()`: closes the websocket
751
+ */
752
+ openUpdatesWebsocketStream(args: {
753
+ onMessage: (env: PerpetualsWsUpdatesResponseMessage) => void;
754
+ onOpen?: (ev: Event) => void;
755
+ onError?: (ev: Event) => void;
756
+ onClose?: (ev: CloseEvent) => void;
757
+ }): {
758
+ ws: WebSocket;
759
+ subscribeMarket: ({ marketId, }: {
760
+ marketId: PerpetualsMarketId;
761
+ }) => void;
762
+ unsubscribeMarket: ({ marketId, }: {
763
+ marketId: PerpetualsMarketId;
764
+ }) => void;
765
+ subscribeUser: ({ accountId, withStopOrders, }: {
766
+ accountId: PerpetualsAccountId;
767
+ withStopOrders: {
768
+ walletAddress: SuiAddress;
769
+ bytes: string;
770
+ signature: string;
771
+ } | undefined;
772
+ }) => void;
773
+ unsubscribeUser: ({ accountId, withStopOrders, }: {
774
+ accountId: PerpetualsAccountId;
775
+ withStopOrders: {
776
+ walletAddress: SuiAddress;
777
+ bytes: string;
778
+ signature: string;
779
+ } | undefined;
780
+ }) => void;
781
+ subscribeOracle: ({ marketId, }: {
782
+ marketId: PerpetualsMarketId;
783
+ }) => void;
784
+ unsubscribeOracle: ({ marketId, }: {
785
+ marketId: PerpetualsMarketId;
786
+ }) => void;
787
+ subscribeOrderbook: ({ marketId, }: {
788
+ marketId: PerpetualsMarketId;
789
+ }) => void;
790
+ unsubscribeOrderbook: ({ marketId, }: {
791
+ marketId: PerpetualsMarketId;
792
+ }) => void;
793
+ subscribeMarketOrders: ({ marketId, }: {
794
+ marketId: PerpetualsMarketId;
795
+ }) => void;
796
+ unsubscribeMarketOrders: ({ marketId, }: {
797
+ marketId: PerpetualsMarketId;
798
+ }) => void;
799
+ subscribeUserOrders: ({ accountId, }: {
800
+ accountId: PerpetualsAccountId;
801
+ }) => void;
802
+ unsubscribeUserOrders: ({ accountId, }: {
803
+ accountId: PerpetualsAccountId;
804
+ }) => void;
805
+ subscribeUserCollateralChanges: ({ accountId, }: {
806
+ accountId: PerpetualsAccountId;
807
+ }) => void;
808
+ unsubscribeUserCollateralChanges: ({ accountId, }: {
809
+ accountId: PerpetualsAccountId;
810
+ }) => void;
811
+ subscribeTopOfOrderbook: ({ marketId, priceBucketSize, bucketsNumber, }: {
812
+ marketId: PerpetualsMarketId;
813
+ priceBucketSize: number;
814
+ bucketsNumber: number;
815
+ }) => void;
816
+ unsubscribeTopOfOrderbook: ({ marketId, priceBucketSize, bucketsNumber, }: {
817
+ marketId: PerpetualsMarketId;
818
+ priceBucketSize: number;
819
+ bucketsNumber: number;
820
+ }) => void;
821
+ close: () => void;
822
+ };
823
+ /**
824
+ * Open a market-candles websocket stream for a single market/interval:
825
+ * `/perpetuals/ws/market-candles/{market_id}/{interval_ms}`.
826
+ *
827
+ * The stream emits {@link PerpetualsWsCandleResponseMessage} messages,
828
+ * typically containing the latest candle for the specified interval.
829
+ *
830
+ * @param args.marketId - Market ID to subscribe to.
831
+ * @param args.intervalMs - Candle interval in milliseconds.
832
+ * @param args.onMessage - Handler for incoming candle updates.
833
+ * @param args.onOpen - Optional hook called when the websocket opens.
834
+ * @param args.onError - Optional hook called on websocket error.
835
+ * @param args.onClose - Optional hook called when the websocket closes.
836
+ *
837
+ * @returns A controller containing the raw websocket and a `close()` helper.
838
+ *
839
+ * @example
840
+ * ```ts
841
+ * const stream = perps.openMarketCandlesWebsocketStream({
842
+ * marketId: "0x...",
843
+ * intervalMs: 60_000,
844
+ * onMessage: ({ lastCandle }) => console.log(lastCandle),
845
+ * });
846
+ * ```
847
+ */
848
+ openMarketCandlesWebsocketStream(args: {
849
+ marketId: PerpetualsMarketId;
850
+ intervalMs: number;
851
+ onMessage: (msg: PerpetualsWsCandleResponseMessage) => void;
852
+ onOpen?: (ev: Event) => void;
853
+ onError?: (ev: Event) => void;
854
+ onClose?: (ev: CloseEvent) => void;
855
+ }): {
856
+ ws: WebSocket;
857
+ close: () => void;
858
+ };
57
859
  }
58
860
  //# sourceMappingURL=perpetuals.d.ts.map