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
@@ -8,152 +8,1095 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
8
8
  step((generator = generator.apply(thisArg, _arguments || [])).next());
9
9
  });
10
10
  };
11
- var _a;
11
+ var __rest = (this && this.__rest) || function (s, e) {
12
+ var t = {};
13
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
14
+ t[p] = s[p];
15
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
16
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
17
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
18
+ t[p[i]] = s[p[i]];
19
+ }
20
+ return t;
21
+ };
12
22
  Object.defineProperty(exports, "__esModule", { value: true });
13
23
  exports.Perpetuals = void 0;
14
24
  const caller_1 = require("../../general/utils/caller");
15
25
  const types_1 = require("../../types");
16
26
  const perpetualsMarket_1 = require("./perpetualsMarket");
17
27
  const perpetualsAccount_1 = require("./perpetualsAccount");
18
- const iFixedUtils_1 = require("../../general/utils/iFixedUtils");
19
28
  const fixedUtils_1 = require("../../general/utils/fixedUtils");
20
- const utils_1 = require("../../general/utils");
21
- const utils_2 = require("./utils");
29
+ const utils_1 = require("./utils");
30
+ const transactions_1 = require("@mysten/sui/transactions");
31
+ const perpetualsVault_1 = require("./perpetualsVault");
32
+ /**
33
+ * High-level client for interacting with Aftermath Perpetuals.
34
+ *
35
+ * This class exposes a typed, ergonomic interface over the Perpetuals HTTP API
36
+ * and websocket endpoints, including:
37
+ *
38
+ * - Market discovery (`getAllMarkets`, `getMarkets`, `getMarket`)
39
+ * - Vault discovery (`getAllVaults`, `getVaults`, `getVault`)
40
+ * - Account & position data (`getAccount`, `getAccounts`, `getAccountObjects`)
41
+ * - Ownership queries (`getOwnedAccountCaps`, `getOwnedVaultCaps`)
42
+ * - Historical data & stats (`getMarketCandleHistory`, `getMarkets24hrStats`)
43
+ * - Pricing helpers (`getPrices`, `getLpCoinPrices`)
44
+ * - Transaction builders (`getCreateAccountTx`, `getCreateVaultCapTx`, `getCreateVaultTx`)
45
+ * - Websocket feeds (`openUpdatesWebsocketStream`, `openMarketCandlesWebsocketStream`)
46
+ *
47
+ * Typical usage via the root SDK:
48
+ *
49
+ * ```ts
50
+ * import { Aftermath } from "@aftermath/sdk";
51
+ *
52
+ * const afSdk = new Aftermath("MAINNET");
53
+ * await afSdk.init();
54
+ *
55
+ * const perps = afSdk.Perpetuals();
56
+ *
57
+ * // Fetch markets for a given collateral coin type
58
+ * const markets = await perps.getAllMarkets({
59
+ * collateralCoinType: "0x2::sui::SUI",
60
+ * });
61
+ *
62
+ * // Fetch account + positions for a given account cap
63
+ * const [accountCap] = await perps.getOwnedAccountCaps({
64
+ * walletAddress: "0x...",
65
+ * });
66
+ *
67
+ * const account = await perps.getAccount({ accountCap });
68
+ *
69
+ * // Build a create-account transaction (not signed or sent)
70
+ * const createAccountTx = await perps.getCreateAccountTx({
71
+ * walletAddress: "0x...",
72
+ * collateralCoinType: "0x2::sui::SUI",
73
+ * });
74
+ * ```
75
+ */
22
76
  class Perpetuals extends caller_1.Caller {
23
77
  // =========================================================================
24
78
  // Constructor
25
79
  // =========================================================================
26
- constructor(config) {
80
+ /**
81
+ * Creates a new Perpetuals client.
82
+ *
83
+ * @param config - Optional caller configuration (network, auth token, etc.).
84
+ * @param Provider - Optional shared {@link AftermathApi} provider instance. When
85
+ * provided, transaction-building helpers can derive serialized `txKind`
86
+ * from a {@link Transaction} object via `Provider.Transactions().fetchBase64TxKindFromTx`.
87
+ *
88
+ * @remarks
89
+ * This class extends {@link Caller} with the `"perpetuals"` route prefix, meaning:
90
+ * - HTTP calls resolve under `/perpetuals/...`
91
+ * - Websocket calls resolve under `/perpetuals/ws/...`
92
+ */
93
+ constructor(config, Provider) {
27
94
  super(config, "perpetuals");
95
+ this.Provider = Provider;
28
96
  }
29
97
  // =========================================================================
30
- // Class Objects
98
+ // Markets
31
99
  // =========================================================================
100
+ /**
101
+ * Fetch all perpetual markets for a given collateral coin type.
102
+ *
103
+ * This method returns *wrapped* {@link PerpetualsMarket} instances, not the raw
104
+ * market structs. Each instance provides additional helpers for pricing, margin,
105
+ * and order parsing.
106
+ *
107
+ * @param inputs.collateralCoinType - Coin type used as collateral, e.g. `"0x2::sui::SUI"`.
108
+ * @returns Object containing `markets`.
109
+ *
110
+ * @example
111
+ * ```ts
112
+ * const { markets } = await perps.getAllMarkets({
113
+ * collateralCoinType: "0x2::sui::SUI",
114
+ * });
115
+ * ```
116
+ */
32
117
  getAllMarkets(inputs) {
33
118
  return __awaiter(this, void 0, void 0, function* () {
34
- const { collateralCoinType } = inputs;
35
- const marketDatas = yield this.fetchApi(`${collateralCoinType}/markets`);
36
- return marketDatas.map((marketData) => new perpetualsMarket_1.PerpetualsMarket(marketData, this.config));
119
+ const res = yield this.fetchApi("all-markets", inputs);
120
+ return {
121
+ markets: res.markets.map((marketData) => new perpetualsMarket_1.PerpetualsMarket(marketData, this.config, this.Provider)),
122
+ };
37
123
  });
38
124
  }
125
+ /**
126
+ * Fetch a single market by ID.
127
+ *
128
+ * Internally calls {@link getMarkets} and returns the first entry.
129
+ *
130
+ * @param inputs.marketId - The market (clearing house) object ID.
131
+ * @returns Object containing `market`.
132
+ *
133
+ * @throws If the backend returns an empty list for the given `marketId`,
134
+ * this will still attempt to return `markets[0]` (which would be `undefined`).
135
+ * Callers may want to validate the result.
136
+ *
137
+ * @example
138
+ * ```ts
139
+ * const { market } = await perps.getMarket({ marketId: "0x..." });
140
+ * ```
141
+ */
39
142
  getMarket(inputs) {
40
143
  return __awaiter(this, void 0, void 0, function* () {
41
- const marketData = yield this.fetchApi(`${inputs.collateralCoinType}/markets/${inputs.marketId}`);
42
- return new perpetualsMarket_1.PerpetualsMarket(marketData, this.config);
144
+ const { markets } = yield this.getMarkets({
145
+ marketIds: [inputs.marketId],
146
+ });
147
+ return {
148
+ market: markets[0],
149
+ };
43
150
  });
44
151
  }
152
+ /**
153
+ * Fetch multiple markets by ID.
154
+ *
155
+ * Backend note:
156
+ * - The API supports returning orderbooks. This SDK currently constructs
157
+ * {@link PerpetualsMarket} from the returned `marketDatas[].market`.
158
+ *
159
+ * @param inputs.marketIds - Array of market object IDs to fetch.
160
+ * @returns Object containing `markets` in the same order as `marketIds`.
161
+ *
162
+ * @example
163
+ * ```ts
164
+ * const { markets } = await perps.getMarkets({
165
+ * marketIds: ["0x..A", "0x..B"],
166
+ * });
167
+ * ```
168
+ */
45
169
  getMarkets(inputs) {
46
170
  return __awaiter(this, void 0, void 0, function* () {
47
- const { collateralCoinType } = inputs;
48
- return Promise.all(inputs.marketIds.map((marketId) => this.getMarket({
49
- marketId,
50
- collateralCoinType,
51
- })));
171
+ const res = yield this.fetchApi("markets", inputs);
172
+ return {
173
+ markets: res.marketDatas.map((marketData) => new perpetualsMarket_1.PerpetualsMarket(marketData.market, this.config, this.Provider)),
174
+ };
175
+ });
176
+ }
177
+ // =========================================================================
178
+ // Vaults
179
+ // =========================================================================
180
+ /**
181
+ * Fetch all vaults on the current network.
182
+ *
183
+ * Vaults are managed accounts that can hold positions; LPs deposit collateral
184
+ * and receive an LP coin (see pricing helpers like {@link getLpCoinPrices}).
185
+ *
186
+ * @returns Object containing `vaults`.
187
+ *
188
+ * @example
189
+ * ```ts
190
+ * const { vaults } = await perps.getAllVaults();
191
+ * ```
192
+ */
193
+ getAllVaults() {
194
+ return __awaiter(this, void 0, void 0, function* () {
195
+ const res = yield this.fetchApi("vaults", {});
196
+ return {
197
+ vaults: res.vaults.map((vaultObject) => new perpetualsVault_1.PerpetualsVault(vaultObject, this.config, this.Provider)),
198
+ };
52
199
  });
53
200
  }
201
+ /**
202
+ * Fetch a single vault by ID.
203
+ *
204
+ * Internally calls {@link getVaults} and returns the first entry.
205
+ *
206
+ * @param inputs.vaultId - Vault object ID.
207
+ * @returns Object containing `vault`.
208
+ */
209
+ getVault(inputs) {
210
+ return __awaiter(this, void 0, void 0, function* () {
211
+ const { vaults } = yield this.getVaults({
212
+ vaultIds: [inputs.vaultId],
213
+ });
214
+ return {
215
+ vault: vaults[0],
216
+ };
217
+ });
218
+ }
219
+ /**
220
+ * Fetch multiple vaults by ID.
221
+ *
222
+ * @param inputs.vaultIds - Array of vault object IDs.
223
+ * @returns Object containing `vaults` in the same order as `vaultIds`.
224
+ */
225
+ getVaults(inputs) {
226
+ return __awaiter(this, void 0, void 0, function* () {
227
+ const res = yield this.fetchApi("vaults", inputs);
228
+ return {
229
+ vaults: res.vaults.map((vaultObject) => new perpetualsVault_1.PerpetualsVault(vaultObject, this.config, this.Provider)),
230
+ };
231
+ });
232
+ }
233
+ // =========================================================================
234
+ // Accounts
235
+ // =========================================================================
236
+ /**
237
+ * Convenience helper to fetch a single account (positions + account object) from an account cap.
238
+ *
239
+ * Internally calls {@link getAccounts} and returns the first entry.
240
+ *
241
+ * @param inputs.accountCap - Account cap or partial vault cap object to derive account metadata from.
242
+ * @param inputs.marketIds - Optional list of markets to filter positions by.
243
+ * @returns Object containing `account`.
244
+ *
245
+ * @example
246
+ * ```ts
247
+ * const [accountCap] = await perps.getOwnedAccountCaps({ walletAddress: "0x..." });
248
+ * const { account } = await perps.getAccount({ accountCap });
249
+ * ```
250
+ */
251
+ // TODO: merge this with `getAccountObjects` as an option ?
54
252
  getAccount(inputs) {
55
253
  return __awaiter(this, void 0, void 0, function* () {
56
- const { accountCap } = inputs;
57
- const account = yield this.fetchApi(`${accountCap.collateralCoinType}/accounts/${accountCap.accountId}`);
58
- return new perpetualsAccount_1.PerpetualsAccount(account, accountCap, this.config);
254
+ const { accountCap, marketIds } = inputs;
255
+ return {
256
+ account: (yield this.getAccounts({
257
+ accountCaps: [accountCap],
258
+ marketIds,
259
+ })).accounts[0],
260
+ };
59
261
  });
60
262
  }
61
- getUserAccountCaps(inputs) {
263
+ /**
264
+ * Fetch one or more accounts (positions + account objects) from account caps.
265
+ *
266
+ * This composes:
267
+ * 1) {@link getAccountObjects} to fetch {@link PerpetualsAccountObject}s by account ID
268
+ * 2) Local pairing of returned account objects with `accountCaps`
269
+ *
270
+ * The returned {@link PerpetualsAccount} instances encapsulate:
271
+ * - The account snapshot (positions, balances, etc.)
272
+ * - The ownership/cap metadata (accountId, collateral type, vaultId, etc.)
273
+ *
274
+ * @param inputs.accountCaps - Array of account caps or partial vault cap objects.
275
+ * @param inputs.marketIds - Optional list of market IDs to filter positions by.
276
+ * @returns Object containing `accounts` in the same order as `accountCaps`.
277
+ *
278
+ * @remarks
279
+ * If `accountCaps` is empty, this returns `{ accounts: [] }` without making an API call.
280
+ */
281
+ getAccounts(inputs) {
62
282
  return __awaiter(this, void 0, void 0, function* () {
63
- const { collateralCoinType, walletAddress } = inputs;
64
- return this.fetchApi(`${collateralCoinType}/accounts`, {
283
+ const { accountCaps, marketIds } = inputs;
284
+ if (accountCaps.length <= 0)
285
+ return {
286
+ accounts: [],
287
+ };
288
+ const accountObjects = (yield this.getAccountObjects({
289
+ accountIds: accountCaps.map((accountCap) => accountCap.accountId),
290
+ marketIds,
291
+ })).accounts;
292
+ return {
293
+ accounts: accountObjects.map((account, index) => new perpetualsAccount_1.PerpetualsAccount(account, accountCaps[index], this.config, this.Provider)),
294
+ };
295
+ });
296
+ }
297
+ /**
298
+ * Fetch raw account objects (including positions) for one or more account IDs.
299
+ *
300
+ * This is the lower-level primitive used by {@link getAccounts}.
301
+ *
302
+ * @param inputs.accountIds - List of account IDs to query.
303
+ * @param inputs.marketIds - Optional list of market IDs to filter positions by.
304
+ *
305
+ * @returns {@link ApiPerpetualsAccountPositionsResponse} containing `accounts`.
306
+ *
307
+ * @remarks
308
+ * If `accountIds` is empty, this returns `{ accounts: [] }` without making an API call.
309
+ */
310
+ getAccountObjects(inputs) {
311
+ return __awaiter(this, void 0, void 0, function* () {
312
+ const { accountIds, marketIds } = inputs;
313
+ if (accountIds.length <= 0)
314
+ return {
315
+ accounts: [],
316
+ };
317
+ return this.fetchApi("accounts/positions", {
318
+ accountIds,
319
+ marketIds,
320
+ });
321
+ });
322
+ }
323
+ // =========================================================================
324
+ // Ownership Queries
325
+ // =========================================================================
326
+ /**
327
+ * Fetch all account caps (perpetuals accounts) owned by a wallet, optionally
328
+ * filtered by collateral coin types.
329
+ *
330
+ * Returned values are “caps” (ownership objects), not full account snapshots.
331
+ * To fetch account positions, use {@link getAccount} or {@link getAccounts}.
332
+ *
333
+ * @param inputs.walletAddress - Owner wallet address.
334
+ * @param inputs.collateralCoinTypes - Optional list of collateral coin types to filter by.
335
+ * @returns {@link ApiPerpetualsOwnedAccountCapsResponse} containing `accounts`.
336
+ *
337
+ * @example
338
+ * ```ts
339
+ * const { accounts } = await perps.getOwnedAccountCaps({
340
+ * walletAddress: "0x...",
341
+ * collateralCoinTypes: ["0x2::sui::SUI"],
342
+ * });
343
+ * ```
344
+ */
345
+ getOwnedAccountCaps(inputs) {
346
+ return __awaiter(this, void 0, void 0, function* () {
347
+ const { walletAddress, collateralCoinTypes } = inputs;
348
+ return this.fetchApi("accounts/owned", {
65
349
  walletAddress,
350
+ collateralCoinTypes,
66
351
  });
67
352
  });
68
353
  }
354
+ /**
355
+ * Fetch all vault caps owned by a wallet.
356
+ *
357
+ * Vault caps represent ownership/administrative authority over a vault.
358
+ *
359
+ * @param inputs.walletAddress - Owner wallet address.
360
+ * @returns {@link ApiPerpetualsOwnedVaultCapsResponse} containing vault caps.
361
+ */
362
+ getOwnedVaultCaps(inputs) {
363
+ return __awaiter(this, void 0, void 0, function* () {
364
+ return this.fetchApi("vaults/owned-vault-caps", inputs);
365
+ });
366
+ }
367
+ /**
368
+ * Fetch all pending vault withdrawal requests created by a given wallet.
369
+ *
370
+ * Withdraw requests are typically created when LPs request to exit a vault
371
+ * and may be subject to lock periods / delays depending on vault configuration.
372
+ *
373
+ * @param inputs.walletAddress - Wallet address that created the withdraw requests.
374
+ * @returns {@link ApiPerpetualsVaultOwnedWithdrawRequestsResponse} containing requests.
375
+ */
376
+ getOwnedVaultWithdrawRequests(inputs) {
377
+ return __awaiter(this, void 0, void 0, function* () {
378
+ return this.fetchApi("vaults/owned-withdraw-requests", Object.assign({}, inputs));
379
+ });
380
+ }
381
+ /**
382
+ * Fetch all Perpetuals vault LP coins owned by a wallet.
383
+ *
384
+ * This returns coin objects (or summaries) representing LP token holdings.
385
+ * Use {@link getLpCoinPrices} to value them in collateral units.
386
+ *
387
+ * @param inputs - {@link ApiPerpetualsVaultOwnedLpCoinsBody}.
388
+ * @returns {@link ApiPerpetualsVaultOwnedLpCoinsResponse}.
389
+ */
390
+ getOwnedVaultLpCoins(inputs) {
391
+ return __awaiter(this, void 0, void 0, function* () {
392
+ return this.fetchApi("vaults/owned-lp-coins", inputs);
393
+ });
394
+ }
395
+ /**
396
+ * Fetch account caps by their account IDs.
397
+ *
398
+ * @param inputs.accountCapIds - List of account IDs.
399
+ * @returns {@link ApiPerpetualsAccountCapsResponse} containing caps.
400
+ */
401
+ getAdminAccountCaps(inputs) {
402
+ return __awaiter(this, void 0, void 0, function* () {
403
+ return this.fetchApi("accounts", inputs);
404
+ });
405
+ }
69
406
  // =========================================================================
70
- // Data
407
+ // Historical Data & Stats
71
408
  // =========================================================================
72
- getMarketHistoricalData(inputs) {
73
- const { collateralCoinType, marketId, fromTimestamp, toTimestamp, intervalMs, } = inputs;
74
- return this.fetchApi(`${collateralCoinType}/markets/${marketId}/historical-data/${fromTimestamp}/${toTimestamp}/${intervalMs}`);
409
+ /**
410
+ * Fetch historical OHLCV candle data for a single market.
411
+ *
412
+ * @param inputs.marketId - Market ID to query.
413
+ * @param inputs.fromTimestamp - Start timestamp (inclusive).
414
+ * @param inputs.toTimestamp - End timestamp (exclusive).
415
+ * @param inputs.intervalMs - Candle interval in milliseconds.
416
+ *
417
+ * @returns {@link ApiPerpetualsMarketCandleHistoryResponse} containing candle points.
418
+ *
419
+ * @remarks
420
+ * This is currently implemented on the Perpetuals root client, but it may be
421
+ * relocated to {@link PerpetualsMarket} in the future.
422
+ */
423
+ // TODO: move to market class ?
424
+ getMarketCandleHistory(inputs) {
425
+ const { marketId, fromTimestamp, toTimestamp, intervalMs } = inputs;
426
+ return this.fetchApi("market/candle-history", {
427
+ marketId,
428
+ fromTimestamp,
429
+ toTimestamp,
430
+ intervalMs,
431
+ });
432
+ }
433
+ /**
434
+ * Fetch 24-hour volume and price change stats for multiple markets.
435
+ *
436
+ * Returns volume, price change, and the latest base, collateral,
437
+ * mid, and mark prices for each requested market.
438
+ *
439
+ * @param inputs.marketIds - Market IDs to query.
440
+ * @returns {@link ApiPerpetualsMarkets24hrStatsResponse}.
441
+ */
442
+ getMarkets24hrStats(inputs) {
443
+ return this.fetchApi("markets/24hr-stats", inputs);
444
+ }
445
+ // =========================================================================
446
+ // Prices
447
+ // =========================================================================
448
+ /**
449
+ * Fetch the latest prices for one or more markets.
450
+ *
451
+ * Returns base, collateral, order book mid, and mark prices for each
452
+ * requested market.
453
+ *
454
+ * @param inputs.marketIds - List of market IDs to query.
455
+ * @returns {@link ApiPerpetualsMarketsPricesResponse} containing `marketsPrices`.
456
+ *
457
+ * @remarks
458
+ * If `marketIds` is empty, returns `{ marketsPrices: [] }` without making an API call.
459
+ */
460
+ getPrices(inputs) {
461
+ return __awaiter(this, void 0, void 0, function* () {
462
+ if (inputs.marketIds.length <= 0)
463
+ return {
464
+ marketsPrices: [],
465
+ };
466
+ return this.fetchApi("markets/prices", inputs);
467
+ });
468
+ }
469
+ /**
470
+ * Fetch LP coin prices (in collateral units) for a set of vaults.
471
+ *
472
+ * @param inputs.vaultIds - List of vault IDs to query.
473
+ * @returns {@link ApiPerpetualsVaultLpCoinPricesResponse} containing `lpCoinPrices`.
474
+ *
475
+ * @remarks
476
+ * If `vaultIds` is empty, returns `{ lpCoinPrices: [] }` without making an API call.
477
+ */
478
+ getLpCoinPrices(inputs) {
479
+ return __awaiter(this, void 0, void 0, function* () {
480
+ if (inputs.vaultIds.length <= 0)
481
+ return {
482
+ lpCoinPrices: [],
483
+ };
484
+ return this.fetchApi("vaults/lp-coin-prices", inputs);
485
+ });
75
486
  }
76
487
  // =========================================================================
77
488
  // Transactions
78
489
  // =========================================================================
490
+ /**
491
+ * Build a `transfer-cap` transaction that transfers a Perpetuals capability object (cap)
492
+ * to another wallet.
493
+ *
494
+ * Provide the `capObjectId` of the capability you want to transfer (e.g., an account cap
495
+ * or vault cap) and the `recipientAddress` that should receive it.
496
+ *
497
+ * This endpoint builds a transaction only; it does not submit it on-chain.
498
+ *
499
+ * @param inputs.recipientAddress - Recipient wallet address that should receive the cap.
500
+ * @param inputs.capObjectId - Object ID of the capability to transfer.
501
+ * @param inputs.tx - Optional transaction to extend.
502
+ *
503
+ * @returns Transaction response containing a `tx`.
504
+ */
505
+ getTransferCapTx(inputs) {
506
+ return __awaiter(this, void 0, void 0, function* () {
507
+ var _a;
508
+ const { tx, recipientAddress, capObjectId } = inputs;
509
+ return this.fetchApiTxObject("transactions/transfer-cap", {
510
+ recipientAddress,
511
+ capObjectId,
512
+ txKind: yield ((_a = this.Provider) === null || _a === void 0 ? void 0 : _a.Transactions().fetchBase64TxKindFromTx({
513
+ tx: tx !== null && tx !== void 0 ? tx : new transactions_1.Transaction(),
514
+ })),
515
+ }, undefined, {
516
+ txKind: true,
517
+ });
518
+ });
519
+ }
520
+ /**
521
+ * Build a `create-account` transaction for Aftermath Perpetuals.
522
+ *
523
+ * @param inputs.walletAddress - Wallet address that will own the new account.
524
+ * @param inputs.collateralCoinType - Collateral coin type used by the account.
525
+ * @param inputs.tx - Optional {@link Transaction} to extend; if provided, the
526
+ * create-account commands are appended to this transaction.
527
+ *
528
+ * @returns {@link SdkTransactionResponse} with `tx`.
529
+ */
79
530
  getCreateAccountTx(inputs) {
80
531
  return __awaiter(this, void 0, void 0, function* () {
81
- return this.fetchApiTransaction("transactions/create-account", inputs);
532
+ var _a;
533
+ const { walletAddress, collateralCoinType, tx } = inputs;
534
+ return this.fetchApiTxObject("transactions/create-account", {
535
+ walletAddress,
536
+ collateralCoinType,
537
+ txKind: yield ((_a = this.Provider) === null || _a === void 0 ? void 0 : _a.Transactions().fetchBase64TxKindFromTx({ tx })),
538
+ }, undefined, {
539
+ txKind: true,
540
+ });
541
+ });
542
+ }
543
+ /**
544
+ * Build a `create-vault-cap` transaction.
545
+ *
546
+ * A vault cap is an ownership/admin object for interacting with vault management
547
+ * flows. This method returns a transaction kind that mints/creates that cap.
548
+ *
549
+ * @param inputs - {@link ApiPerpetualsCreateVaultCapBody}.
550
+ * @returns {@link SdkTransactionResponse} with `tx`.
551
+ */
552
+ getCreateVaultCapTx(inputs) {
553
+ return __awaiter(this, void 0, void 0, function* () {
554
+ return this.fetchApiTxObject("vault/transactions/create-vault-cap", inputs, undefined, {
555
+ txKind: true,
556
+ });
557
+ });
558
+ }
559
+ /**
560
+ * Build a `create-vault` transaction.
561
+ *
562
+ * This creates a new vault plus its on-chain metadata and initial LP supply
563
+ * seeded by the initial deposit.
564
+ *
565
+ * Deposit input:
566
+ * - Use `initialDepositAmount` to have the API select/merge coins as needed, OR
567
+ * - Use `initialDepositCoinArg` if you already have a coin argument in a larger tx.
568
+ *
569
+ * Metadata:
570
+ * - Stored on-chain (or in a referenced object) as part of vault creation.
571
+ * - `extraFields` allows forward-compatible additions (e.g. social links).
572
+ *
573
+ * @param inputs.walletAddress - Address of vault owner/curator.
574
+ * @param inputs.metadata - Vault display metadata (name, description, curator info).
575
+ * @param inputs.metadata - Vault display metadata (name, description, curator info).
576
+ * @param inputs.coinMetadataId - Coin metadata object id obtained from create vault cap tx
577
+ * @param inputs.treasuryCapId - Treasury cap object id obtained from create vault cap tx
578
+ * @param inputs.collateralCoinType - Collateral coin type for deposits.
579
+ * @param inputs.lockPeriodMs - Lock-in period for deposits in milliseconds.
580
+ * @param inputs.performanceFeePercentage - Fraction of profits taken as curator fee.
581
+ * @param inputs.forceWithdrawDelayMs - Delay before forced withdrawals can be processed.
582
+ * @param inputs.isSponsoredTx - Whether this tx is sponsored (gas paid by another party).
583
+ * @param inputs.initialDepositAmount - Initial deposit amount (mutually exclusive with `initialDepositCoinArg`).
584
+ * @param inputs.initialDepositCoinArg - Transaction object argument referencing the deposit coin.
585
+ * @param inputs.tx - Optional {@link Transaction} to extend.
586
+ *
587
+ * @returns {@link SdkTransactionResponse} with `tx`.
588
+ */
589
+ getCreateVaultTx(inputs) {
590
+ return __awaiter(this, void 0, void 0, function* () {
591
+ var _a;
592
+ const { tx } = inputs, otherInputs = __rest(inputs, ["tx"]);
593
+ return this.fetchApiTxObject("vault/transactions/create-vault", Object.assign(Object.assign({}, otherInputs), { txKind: yield ((_a = this.Provider) === null || _a === void 0 ? void 0 : _a.Transactions().fetchBase64TxKindFromTx({ tx })) }), undefined, {
594
+ txKind: true,
595
+ });
596
+ });
597
+ }
598
+ // =========================================================================
599
+ // Builder Codes Transactions
600
+ // =========================================================================
601
+ /**
602
+ * Build a transaction to create an integrator configuration.
603
+ *
604
+ * This endpoint creates a transaction that allows a user to grant permission to an
605
+ * integrator to receive fees on orders placed on their behalf. The user specifies
606
+ * a maximum taker fee that the integrator can charge. The integrator can then
607
+ * include their address and fee (up to the maximum) when placing orders for the user.
608
+ *
609
+ * The resulting transaction must be signed by the account owner and executed on-chain.
610
+ *
611
+ * @param inputs - {@link ApiPerpetualsBuilderCodesCreateIntegratorConfigTxBody}.
612
+ * @returns {@link SdkTransactionResponse} with `tx`.
613
+ *
614
+ * @example
615
+ * ```ts
616
+ * const tx = await perps.getCreateBuilderCodeIntegratorConfigTx({
617
+ * accountId: 123n,
618
+ * integratorAddress: "0x...",
619
+ * maxTakerFee: 0.001, // 0.1% max fee
620
+ * });
621
+ * ```
622
+ */
623
+ getCreateBuilderCodeIntegratorConfigTx(inputs) {
624
+ return __awaiter(this, void 0, void 0, function* () {
625
+ return this.fetchApiTxObject("builder-codes/transactions/create-integrator-config", inputs, undefined, {
626
+ txKind: true,
627
+ });
628
+ });
629
+ }
630
+ /**
631
+ * Build a transaction to remove an integrator configuration.
632
+ *
633
+ * This endpoint creates a transaction that removes an integrator's approval to
634
+ * collect fees on orders placed on behalf of the user. Once revoked, the integrator
635
+ * will no longer be able to submit orders with integrator fees for this account.
636
+ * The user can re-approve the integrator at any time by calling
637
+ * {@link getCreateIntegratorConfigTx} again.
638
+ *
639
+ * The resulting transaction must be signed by the account owner and executed on-chain.
640
+ *
641
+ * @param inputs - {@link ApiPerpetualsBuilderCodesRemoveIntegratorConfigTxBody}.
642
+ * @returns {@link SdkTransactionResponse} with `tx`.
643
+ *
644
+ * @example
645
+ * ```ts
646
+ * const tx = await perps.getRemoveBuilderCodeIntegratorConfigTx({
647
+ * accountId: 123n,
648
+ * integratorAddress: "0x...",
649
+ * });
650
+ * ```
651
+ */
652
+ getRemoveBuilderCodeIntegratorConfigTx(inputs) {
653
+ return __awaiter(this, void 0, void 0, function* () {
654
+ return this.fetchApiTxObject("builder-codes/transactions/remove-integrator-config", inputs, undefined, {
655
+ txKind: true,
656
+ });
657
+ });
658
+ }
659
+ /**
660
+ * Build a transaction to initialize an integrator fee vault for a specific market.
661
+ *
662
+ * This endpoint creates a transaction that initializes a vault where an integrator's
663
+ * fees will accumulate for a specific market (clearing house). This is a one-time
664
+ * setup operation that must be performed before the integrator can claim fees from
665
+ * that market. Once created, the vault will automatically collect fees as the
666
+ * integrator submits orders on behalf of users in that market.
667
+ *
668
+ * The resulting transaction must be signed by the integrator and executed on-chain.
669
+ *
670
+ * @param inputs - {@link ApiPerpetualsBuilderCodesCreateIntegratorVaultTxBody}.
671
+ * @returns {@link SdkTransactionResponse} with `tx`.
672
+ *
673
+ * @example
674
+ * ```ts
675
+ * const tx = await perps.getCreateBuilderCodeIntegratorVaultTx({
676
+ * marketId: "0x...",
677
+ * integratorAddress: "0x...",
678
+ * });
679
+ * ```
680
+ */
681
+ getCreateBuilderCodeIntegratorVaultTx(inputs) {
682
+ return __awaiter(this, void 0, void 0, function* () {
683
+ return this.fetchApiTxObject("builder-codes/transactions/create-integrator-vault", inputs, undefined, {
684
+ txKind: true,
685
+ });
686
+ });
687
+ }
688
+ /**
689
+ * Build a transaction to claim accumulated integrator fees from a vault.
690
+ *
691
+ * This endpoint creates a transaction that allows an integrator to claim the fees
692
+ * they have earned from orders placed on behalf of users. Fees accumulate in a vault
693
+ * specific to each market (clearing house) and can be claimed at any moment by the
694
+ * integrator. The fees are proportional to the taker volume generated by the users'
695
+ * orders that the integrator submitted.
696
+ *
697
+ * If a `recipientAddress` is provided, the claimed fees will be automatically
698
+ * transferred to that address. Otherwise, the coin output is exposed as a transaction
699
+ * argument for further use in the transaction.
700
+ *
701
+ * The resulting transaction must be signed by the integrator and executed on-chain.
702
+ *
703
+ * @param inputs - {@link ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxBody}.
704
+ * @returns {@link ApiPerpetualsBuilderCodesClaimIntegratorVaultFeesTxResponse} containing
705
+ * `txKind` and optionally `coinOutArg`.
706
+ *
707
+ * @example
708
+ * ```ts
709
+ * // Claim with automatic transfer to recipient
710
+ * const response = await perps.getClaimBuilderCodeIntegratorVaultFeesTx({
711
+ * marketId: "0x...",
712
+ * integratorAddress: "0x...",
713
+ * recipientAddress: "0x...",
714
+ * });
715
+ *
716
+ * // Claim with coin output for further use
717
+ * const response = await perps.getClaimBuilderCodeIntegratorVaultFeesTx({
718
+ * marketId: "0x...",
719
+ * integratorAddress: "0x...",
720
+ * });
721
+ * // response.coinOutArg can be used in subsequent transaction commands
722
+ * ```
723
+ */
724
+ getClaimBuilderCodeIntegratorVaultFeesTx(inputs) {
725
+ return __awaiter(this, void 0, void 0, function* () {
726
+ return this.fetchApiTxObject("builder-codes/transactions/claim-integrator-vault-fees", inputs, undefined, {
727
+ txKind: true,
728
+ });
82
729
  });
83
730
  }
84
731
  // =========================================================================
85
- // Public Static Functions
732
+ // Builder Codes Inspections
86
733
  // =========================================================================
734
+ /**
735
+ * Fetch integrator configuration for a specific account and integrator.
736
+ *
737
+ * This endpoint queries whether an integrator has been approved by an account to collect
738
+ * fees on orders placed on behalf of the account. If approved, it returns the maximum
739
+ * taker fee the integrator is authorized to charge. This information is useful for:
740
+ * - Verifying integrator permissions before placing orders
741
+ * - Displaying authorized integrators and their fee limits in UIs
742
+ * - Validating that an integrator's requested fee doesn't exceed the approved maximum
743
+ *
744
+ * @param inputs - {@link ApiPerpetualsBuilderCodesIntegratorConfigBody}.
745
+ * @returns {@link ApiPerpetualsBuilderCodesIntegratorConfigResponse} containing
746
+ * `maxTakerFee` and `exists` flag.
747
+ *
748
+ * @example
749
+ * ```ts
750
+ * const config = await perps.getBuilderCodeIntegratorConfig({
751
+ * accountId: 123n,
752
+ * integratorAddress: "0x...",
753
+ * });
754
+ *
755
+ * if (config.exists) {
756
+ * console.log(`Integrator is approved with max fee: ${config.maxTakerFee}`);
757
+ * } else {
758
+ * console.log("Integrator is not approved for this account");
759
+ * }
760
+ * ```
761
+ */
762
+ getBuilderCodeIntegratorConfig(inputs) {
763
+ return __awaiter(this, void 0, void 0, function* () {
764
+ return this.fetchApi("builder-codes/integrator-config", inputs);
765
+ });
766
+ }
767
+ /**
768
+ * Fetch accumulated integrator vault fees across multiple markets.
769
+ *
770
+ * This endpoint queries the total fees an integrator has earned and accumulated in their
771
+ * vaults across one or more markets (clearing houses). Integrators earn fees proportional
772
+ * to the taker volume generated by orders they submit on behalf of users. These fees
773
+ * accumulate in per-market vaults and can be claimed at any time using
774
+ * {@link getClaimIntegratorVaultFeesTx}.
775
+ *
776
+ * This information is useful for:
777
+ * - Displaying total claimable fees to integrators in dashboards
778
+ * - Monitoring fee accrual across different markets
779
+ * - Determining which markets have fees ready to be claimed
780
+ *
781
+ * @param inputs - {@link ApiPerpetualsBuilderCodesIntegratorVaultsBody}.
782
+ * @returns {@link ApiPerpetualsBuilderCodesIntegratorVaultsResponse} containing
783
+ * a vector of market vault data with accumulated fees.
784
+ *
785
+ * @example
786
+ * ```ts
787
+ * const vaultFees = await perps.getBuilderCodeIntegratorVaults({
788
+ * marketIds: ["0x...BTCUSD", "0x...SUIUSD"],
789
+ * integratorAddress: "0x...",
790
+ * });
791
+ *
792
+ * for (const vault of vaultFees.integratorVaults) {
793
+ * console.log(`Market ${vault.marketId}: ${vault.fees} collateral units claimable`);
794
+ * }
795
+ *
796
+ * const totalFees = vaultFees.integratorVaults.reduce((sum, vault) => sum + vault.fees, 0);
797
+ * console.log(`Total claimable: ${totalFees}`);
798
+ * ```
799
+ */
800
+ getBuilderCodeIntegratorVaults(inputs) {
801
+ return __awaiter(this, void 0, void 0, function* () {
802
+ return this.fetchApi("builder-codes/integrator-vaults", inputs);
803
+ });
804
+ }
87
805
  // =========================================================================
88
- // Helpers
806
+ // Public Static Helpers
89
807
  // =========================================================================
808
+ /**
809
+ * Determine the logical order side (Bid/Ask) from a signed base asset amount.
810
+ *
811
+ * @param inputs.baseAssetAmount - Position base size. Positive/zero => Bid (long), negative => Ask (short).
812
+ * @returns {@link PerpetualsOrderSide}.
813
+ */
90
814
  static positionSide(inputs) {
91
- const baseAmount = iFixedUtils_1.IFixedUtils.numberFromIFixed(inputs.baseAssetAmount);
815
+ const baseAmount = inputs.baseAssetAmount;
92
816
  const isLong = Math.sign(baseAmount);
93
817
  const side = isLong >= 0 ? types_1.PerpetualsOrderSide.Bid : types_1.PerpetualsOrderSide.Ask;
94
818
  return side;
95
819
  }
96
- static orderPrice(inputs) {
820
+ /**
821
+ * Compute the effective trade price from a {@link FilledTakerOrderEvent}.
822
+ *
823
+ * Uses the ratio: `quoteAssetDelta / baseAssetDelta`.
824
+ *
825
+ * @param inputs.orderEvent - Filled taker order event.
826
+ * @returns Trade price.
827
+ */
828
+ static orderPriceFromEvent(inputs) {
97
829
  const { orderEvent } = inputs;
98
- return (iFixedUtils_1.IFixedUtils.numberFromIFixed(orderEvent.quoteAssetDelta) /
99
- iFixedUtils_1.IFixedUtils.numberFromIFixed(orderEvent.baseAssetDelta));
830
+ return orderEvent.quoteAssetDelta / orderEvent.baseAssetDelta;
831
+ }
832
+ /**
833
+ * Extract the floating-point price from an encoded order ID.
834
+ *
835
+ * Internally uses {@link PerpetualsOrderUtils.price} and converts the fixed-point
836
+ * {@link PerpetualsOrderPrice} into a `number`.
837
+ *
838
+ * @param inputs.orderId - Encoded order ID.
839
+ * @returns Price as a `number`.
840
+ */
841
+ static orderPriceFromOrderId(inputs) {
842
+ const { orderId } = inputs;
843
+ const orderPrice = utils_1.PerpetualsOrderUtils.price(orderId);
844
+ return this.orderPriceToPrice({ orderPrice });
100
845
  }
846
+ /**
847
+ * Convert a fixed-point lot/tick size (9 decimals) to a `number`.
848
+ *
849
+ * @param lotOrTickSize - Fixed-point size as `bigint`.
850
+ * @returns Floating-point size.
851
+ */
101
852
  static lotOrTickSizeToNumber(lotOrTickSize) {
102
853
  return Number(lotOrTickSize) / fixedUtils_1.FixedUtils.fixedOneN9;
103
854
  }
855
+ /**
856
+ * Convert a floating-point lot/tick size to its fixed-point representation (9 decimals).
857
+ *
858
+ * @param lotOrTickSize - Floating-point size.
859
+ * @returns Fixed-point size as `bigint`.
860
+ */
104
861
  static lotOrTickSizeToBigInt(lotOrTickSize) {
105
862
  return BigInt(Math.round(lotOrTickSize * fixedUtils_1.FixedUtils.fixedOneN9));
106
863
  }
107
864
  // =========================================================================
108
- // Calculations
865
+ // Websocket
109
866
  // =========================================================================
110
- static calcEntryPrice(inputs) {
111
- const { baseAssetAmount, quoteAssetNotionalAmount } = inputs;
112
- const denominator = utils_1.Casting.IFixed.numberFromIFixed(baseAssetAmount);
113
- if (!denominator)
114
- return 0;
115
- return Math.abs(utils_1.Casting.IFixed.numberFromIFixed(quoteAssetNotionalAmount) /
116
- denominator);
867
+ /**
868
+ * Open the main updates websocket: `/perpetuals/ws/updates`.
869
+ *
870
+ * The stream emits {@link PerpetualsWsUpdatesResponseMessage} envelopes and supports
871
+ * multiple subscription types. This method returns a small controller with
872
+ * convenience subscribe/unsubscribe functions.
873
+ *
874
+ * Subscription types supported by the controller:
875
+ * - `market`: market state updates
876
+ * - `user`: user account updates (optionally including stop orders)
877
+ * - `oracle`: oracle price updates
878
+ * - `orderbook`: orderbook deltas
879
+ * - `marketOrders`: public market trades/orders
880
+ * - `userOrders`: user trade/order events
881
+ * - `userCollateralChanges`: user collateral change events
882
+ * - `topOfOrderbook`: bucketed orderbook snapshots (top of orderbook)
883
+ *
884
+ * @param args.onMessage - Handler for parsed messages from the websocket.
885
+ * @param args.onOpen - Optional handler for the `open` event.
886
+ * @param args.onError - Optional handler for the `error` event.
887
+ * @param args.onClose - Optional handler for the `close` event.
888
+ *
889
+ * @returns A controller object containing:
890
+ * - `ws`: underlying {@link WebSocket}
891
+ * - subscribe/unsubscribe helpers for each subscription type
892
+ * - `close()`: closes the websocket
893
+ */
894
+ openUpdatesWebsocketStream(args) {
895
+ const { onMessage, onOpen, onError, onClose } = args;
896
+ const ctl = this.openWsStream({
897
+ path: "ws/updates",
898
+ onMessage,
899
+ onOpen,
900
+ onError,
901
+ onClose,
902
+ });
903
+ /**
904
+ * Subscription helpers
905
+ *
906
+ * Each helper sends a structured subscription message of the form:
907
+ * `{ action: "subscribe" | "unsubscribe", subscriptionType: { ... } }`
908
+ */
909
+ const subscribeMarket = ({ marketId, }) => ctl.send({
910
+ action: "subscribe",
911
+ subscriptionType: { market: { marketId } },
912
+ });
913
+ const unsubscribeMarket = ({ marketId, }) => ctl.send({
914
+ action: "unsubscribe",
915
+ subscriptionType: { market: { marketId } },
916
+ });
917
+ const subscribeUser = ({ accountId, withStopOrders, }) => ctl.send({
918
+ action: "subscribe",
919
+ subscriptionType: { user: { accountId, withStopOrders } },
920
+ });
921
+ const unsubscribeUser = ({ accountId, withStopOrders, }) => ctl.send({
922
+ action: "unsubscribe",
923
+ subscriptionType: { user: { accountId, withStopOrders } },
924
+ });
925
+ const subscribeOracle = ({ marketId, }) => ctl.send({
926
+ action: "subscribe",
927
+ subscriptionType: { oracle: { marketId } },
928
+ });
929
+ const unsubscribeOracle = ({ marketId, }) => ctl.send({
930
+ action: "unsubscribe",
931
+ subscriptionType: { oracle: { marketId } },
932
+ });
933
+ const subscribeOrderbook = ({ marketId, }) => ctl.send({
934
+ action: "subscribe",
935
+ subscriptionType: { orderbook: { marketId } },
936
+ });
937
+ const unsubscribeOrderbook = ({ marketId, }) => ctl.send({
938
+ action: "unsubscribe",
939
+ subscriptionType: { orderbook: { marketId } },
940
+ });
941
+ const subscribeMarketOrders = ({ marketId, }) => ctl.send({
942
+ action: "subscribe",
943
+ subscriptionType: { marketOrders: { marketId } },
944
+ });
945
+ const unsubscribeMarketOrders = ({ marketId, }) => ctl.send({
946
+ action: "unsubscribe",
947
+ subscriptionType: { marketOrders: { marketId } },
948
+ });
949
+ const subscribeUserOrders = ({ accountId, }) => ctl.send({
950
+ action: "subscribe",
951
+ subscriptionType: { userOrders: { accountId } },
952
+ });
953
+ const unsubscribeUserOrders = ({ accountId, }) => ctl.send({
954
+ action: "unsubscribe",
955
+ subscriptionType: { userOrders: { accountId } },
956
+ });
957
+ const subscribeUserCollateralChanges = ({ accountId, }) => ctl.send({
958
+ action: "subscribe",
959
+ subscriptionType: { userCollateralChanges: { accountId } },
960
+ });
961
+ const unsubscribeUserCollateralChanges = ({ accountId, }) => ctl.send({
962
+ action: "unsubscribe",
963
+ subscriptionType: { userCollateralChanges: { accountId } },
964
+ });
965
+ const subscribeTopOfOrderbook = ({ marketId, priceBucketSize, bucketsNumber, }) => ctl.send({
966
+ action: "subscribe",
967
+ subscriptionType: {
968
+ topOfOrderbook: {
969
+ marketId,
970
+ priceBucketSize,
971
+ bucketsNumber,
972
+ },
973
+ },
974
+ });
975
+ const unsubscribeTopOfOrderbook = ({ marketId, priceBucketSize, bucketsNumber, }) => ctl.send({
976
+ action: "unsubscribe",
977
+ subscriptionType: {
978
+ topOfOrderbook: {
979
+ marketId,
980
+ priceBucketSize,
981
+ bucketsNumber,
982
+ },
983
+ },
984
+ });
985
+ return {
986
+ ws: ctl.ws,
987
+ subscribeMarket,
988
+ unsubscribeMarket,
989
+ subscribeUser,
990
+ unsubscribeUser,
991
+ subscribeOracle,
992
+ unsubscribeOracle,
993
+ subscribeOrderbook,
994
+ unsubscribeOrderbook,
995
+ subscribeMarketOrders,
996
+ unsubscribeMarketOrders,
997
+ subscribeUserOrders,
998
+ unsubscribeUserOrders,
999
+ subscribeUserCollateralChanges,
1000
+ unsubscribeUserCollateralChanges,
1001
+ subscribeTopOfOrderbook,
1002
+ unsubscribeTopOfOrderbook,
1003
+ close: ctl.close,
1004
+ };
1005
+ }
1006
+ /**
1007
+ * Open a market-candles websocket stream for a single market/interval:
1008
+ * `/perpetuals/ws/market-candles/{market_id}/{interval_ms}`.
1009
+ *
1010
+ * The stream emits {@link PerpetualsWsCandleResponseMessage} messages,
1011
+ * typically containing the latest candle for the specified interval.
1012
+ *
1013
+ * @param args.marketId - Market ID to subscribe to.
1014
+ * @param args.intervalMs - Candle interval in milliseconds.
1015
+ * @param args.onMessage - Handler for incoming candle updates.
1016
+ * @param args.onOpen - Optional hook called when the websocket opens.
1017
+ * @param args.onError - Optional hook called on websocket error.
1018
+ * @param args.onClose - Optional hook called when the websocket closes.
1019
+ *
1020
+ * @returns A controller containing the raw websocket and a `close()` helper.
1021
+ *
1022
+ * @example
1023
+ * ```ts
1024
+ * const stream = perps.openMarketCandlesWebsocketStream({
1025
+ * marketId: "0x...",
1026
+ * intervalMs: 60_000,
1027
+ * onMessage: ({ lastCandle }) => console.log(lastCandle),
1028
+ * });
1029
+ * ```
1030
+ */
1031
+ openMarketCandlesWebsocketStream(args) {
1032
+ const { marketId, intervalMs, onMessage, onOpen, onError, onClose } = args;
1033
+ const path = `ws/market-candles/${encodeURIComponent(marketId)}/${intervalMs}`;
1034
+ const ctl = this.openWsStream({
1035
+ path,
1036
+ onMessage,
1037
+ onOpen,
1038
+ onError,
1039
+ onClose,
1040
+ });
1041
+ return {
1042
+ ws: ctl.ws,
1043
+ close: ctl.close,
1044
+ };
117
1045
  }
118
1046
  }
119
1047
  exports.Perpetuals = Perpetuals;
120
- _a = Perpetuals;
121
1048
  // =========================================================================
122
1049
  // Constants
123
1050
  // =========================================================================
124
- Perpetuals.OrderUtils = utils_2.PerpetualsOrderUtils;
1051
+ /**
1052
+ * Helper namespace for order-specific utilities such as parsing order IDs,
1053
+ * extracting price bits, etc.
1054
+ *
1055
+ * This is a direct alias of {@link PerpetualsOrderUtils}.
1056
+ */
1057
+ Perpetuals.OrderUtils = utils_1.PerpetualsOrderUtils;
1058
+ /**
1059
+ * Convert a floating-point price into a fixed-point {@link PerpetualsOrderPrice}
1060
+ * using 9 decimal places of precision.
1061
+ *
1062
+ * @param inputs.price - Price as a float.
1063
+ * @returns Fixed-point order price.
1064
+ */
125
1065
  Perpetuals.priceToOrderPrice = (inputs) => {
126
- const { price, lotSize, tickSize } = inputs;
127
- const priceFixed = fixedUtils_1.FixedUtils.directUncast(price);
128
- // convert f18 to b9 (assuming the former is positive)
129
- const price9 = priceFixed / fixedUtils_1.FixedUtils.fixedOneB9;
130
- const denominator = fixedUtils_1.FixedUtils.fixedOneB9 /
131
- (typeof lotSize === "number"
132
- ? _a.lotOrTickSizeToBigInt(lotSize)
133
- : lotSize);
134
- if (denominator <= BigInt(0))
135
- return BigInt(0);
136
- return (price9 /
137
- (typeof tickSize === "number"
138
- ? _a.lotOrTickSizeToBigInt(tickSize)
139
- : tickSize) /
140
- denominator);
1066
+ const { price } = inputs;
1067
+ return BigInt(Math.round(price * fixedUtils_1.FixedUtils.fixedOneN9));
141
1068
  };
1069
+ /**
1070
+ * Convert a fixed-point {@link PerpetualsOrderPrice} to a float price.
1071
+ *
1072
+ * @param inputs.orderPrice - Fixed-point order price.
1073
+ * @returns Price as a float.
1074
+ */
142
1075
  Perpetuals.orderPriceToPrice = (inputs) => {
143
- const { orderPrice, lotSize, tickSize } = inputs;
144
- const temp = fixedUtils_1.FixedUtils.fixedOneB9 /
145
- (typeof lotSize === "number"
146
- ? _a.lotOrTickSizeToBigInt(lotSize)
147
- : lotSize);
148
- return fixedUtils_1.FixedUtils.directCast(orderPrice *
149
- (typeof tickSize === "number"
150
- ? _a.lotOrTickSizeToBigInt(tickSize)
151
- : tickSize) *
152
- temp *
153
- fixedUtils_1.FixedUtils.fixedOneB9);
1076
+ const { orderPrice } = inputs;
1077
+ return Number(orderPrice) / fixedUtils_1.FixedUtils.fixedOneN9;
154
1078
  };
1079
+ /**
1080
+ * Infer the order side from an encoded order ID.
1081
+ *
1082
+ * @param orderId - Encoded order ID.
1083
+ * @returns {@link PerpetualsOrderSide}.
1084
+ */
155
1085
  Perpetuals.orderIdToSide = (orderId) => {
156
- return _a.OrderUtils.isAsk(orderId)
1086
+ return Perpetuals.OrderUtils.isAsk(orderId)
157
1087
  ? types_1.PerpetualsOrderSide.Ask
158
1088
  : types_1.PerpetualsOrderSide.Bid;
159
1089
  };
1090
+ /**
1091
+ * Construct a collateral-specialized Move event type string.
1092
+ *
1093
+ * Many Move events are generic over a collateral coin type. This helper appends
1094
+ * `<collateralCoinType>` to a base `eventType`.
1095
+ *
1096
+ * @param inputs.eventType - Base event type without type parameters.
1097
+ * @param inputs.collateralCoinType - Collateral coin type (e.g. `"0x2::sui::SUI"`).
1098
+ * @returns Fully-qualified event type string.
1099
+ */
1100
+ Perpetuals.eventTypeForCollateral = (inputs) => {
1101
+ return `${inputs.eventType}<${inputs.collateralCoinType}>`;
1102
+ };