@drift-labs/sdk 2.0.14 → 2.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/math/amm.js CHANGED
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.calculateMaxBaseAssetAmountFillable = exports.calculateQuoteAssetAmountSwapped = exports.calculateMaxBaseAssetAmountToTrade = exports.calculateTerminalPrice = exports.getSwapDirection = exports.calculateSwapOutput = exports.calculateSpreadReserves = exports.calculateSpread = exports.calculateSpreadBN = exports.calculateMaxSpread = exports.calculateEffectiveLeverage = exports.calculateInventoryScale = exports.calculateMarketOpenBidAsk = exports.calculateAmmReservesAfterSwap = exports.calculatePrice = exports.calculateBidAskPrice = exports.calculateUpdatedAMMSpreadReserves = exports.calculateUpdatedAMM = exports.calculateNewAmm = exports.calculateOptimalPegAndBudget = exports.calculatePegFromTargetPrice = void 0;
3
+ exports.calculateMaxBaseAssetAmountFillable = exports.calculateQuoteAssetAmountSwapped = exports.calculateMaxBaseAssetAmountToTrade = exports.calculateTerminalPrice = exports.getSwapDirection = exports.calculateSwapOutput = exports.calculateSpreadReserves = exports.calculateSpread = exports.calculateSpreadBN = exports.calculateVolSpreadBN = exports.calculateMaxSpread = exports.calculateEffectiveLeverage = exports.calculateInventoryScale = exports.calculateMarketOpenBidAsk = exports.calculateAmmReservesAfterSwap = exports.calculatePrice = exports.calculateBidAskPrice = exports.calculateUpdatedAMMSpreadReserves = exports.calculateUpdatedAMM = exports.calculateNewAmm = exports.calculateOptimalPegAndBudget = exports.calculatePegFromTargetPrice = void 0;
4
4
  const anchor_1 = require("@project-serum/anchor");
5
5
  const numericConstants_1 = require("../constants/numericConstants");
6
6
  const types_1 = require("../types");
7
7
  const assert_1 = require("../assert/assert");
8
8
  const __1 = require("..");
9
9
  const repeg_1 = require("./repeg");
10
+ const oracles_1 = require("./oracles");
10
11
  function calculatePegFromTargetPrice(targetPrice, baseAssetReserve, quoteAssetReserve) {
11
12
  return anchor_1.BN.max(targetPrice
12
13
  .mul(baseAssetReserve)
@@ -23,15 +24,16 @@ function calculateOptimalPegAndBudget(amm, oraclePriceData) {
23
24
  const totalFeeLB = amm.totalExchangeFee.div(new anchor_1.BN(2));
24
25
  const budget = anchor_1.BN.max(numericConstants_1.ZERO, amm.totalFeeMinusDistributions.sub(totalFeeLB));
25
26
  if (budget.lt(prePegCost)) {
26
- const maxPriceSpread = new anchor_1.BN(amm.maxSpread)
27
+ const halfMaxPriceSpread = new anchor_1.BN(amm.maxSpread)
28
+ .div(new anchor_1.BN(2))
27
29
  .mul(targetPrice)
28
30
  .div(numericConstants_1.BID_ASK_SPREAD_PRECISION);
29
31
  let newTargetPrice;
30
32
  let newOptimalPeg;
31
33
  let newBudget;
32
34
  const targetPriceGap = reservePriceBefore.sub(targetPrice);
33
- if (targetPriceGap.abs().gt(maxPriceSpread)) {
34
- const markAdj = targetPriceGap.abs().sub(maxPriceSpread);
35
+ if (targetPriceGap.abs().gt(halfMaxPriceSpread)) {
36
+ const markAdj = targetPriceGap.abs().sub(halfMaxPriceSpread);
35
37
  if (targetPriceGap.lt(new anchor_1.BN(0))) {
36
38
  newTargetPrice = reservePriceBefore.add(markAdj);
37
39
  }
@@ -91,6 +93,8 @@ function calculateUpdatedAMM(amm, oraclePriceData) {
91
93
  newAmm.terminalQuoteAssetReserve = newQuoteAssetReserve;
92
94
  newAmm.totalFeeMinusDistributions =
93
95
  newAmm.totalFeeMinusDistributions.sub(prepegCost);
96
+ newAmm.netRevenueSinceLastFunding =
97
+ newAmm.netRevenueSinceLastFunding.sub(prepegCost);
94
98
  return newAmm;
95
99
  }
96
100
  exports.calculateUpdatedAMM = calculateUpdatedAMM;
@@ -168,14 +172,14 @@ exports.calculateAmmReservesAfterSwap = calculateAmmReservesAfterSwap;
168
172
  function calculateMarketOpenBidAsk(baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve) {
169
173
  // open orders
170
174
  let openAsks;
171
- if (maxBaseAssetReserve > baseAssetReserve) {
175
+ if (maxBaseAssetReserve.gt(baseAssetReserve)) {
172
176
  openAsks = maxBaseAssetReserve.sub(baseAssetReserve).mul(new anchor_1.BN(-1));
173
177
  }
174
178
  else {
175
179
  openAsks = numericConstants_1.ZERO;
176
180
  }
177
181
  let openBids;
178
- if (minBaseAssetReserve < baseAssetReserve) {
182
+ if (minBaseAssetReserve.lt(baseAssetReserve)) {
179
183
  openBids = baseAssetReserve.sub(minBaseAssetReserve);
180
184
  }
181
185
  else {
@@ -184,13 +188,26 @@ function calculateMarketOpenBidAsk(baseAssetReserve, minBaseAssetReserve, maxBas
184
188
  return [openBids, openAsks];
185
189
  }
186
190
  exports.calculateMarketOpenBidAsk = calculateMarketOpenBidAsk;
187
- function calculateInventoryScale(netBaseAssetAmount, baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve) {
188
- const maxScale = numericConstants_1.BID_ASK_SPREAD_PRECISION.mul(new anchor_1.BN(10));
191
+ function calculateInventoryScale(baseAssetAmountWithAmm, baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve, directionalSpread, maxSpread) {
192
+ if (baseAssetAmountWithAmm.eq(numericConstants_1.ZERO)) {
193
+ return 0;
194
+ }
195
+ const defaultLargeBidAskFactor = numericConstants_1.BID_ASK_SPREAD_PRECISION.mul(new anchor_1.BN(10));
189
196
  // inventory skew
190
197
  const [openBids, openAsks] = calculateMarketOpenBidAsk(baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve);
191
198
  const minSideLiquidity = anchor_1.BN.max(new anchor_1.BN(1), anchor_1.BN.min(openBids.abs(), openAsks.abs()));
192
- const inventoryScale = anchor_1.BN.min(maxScale, netBaseAssetAmount.mul(maxScale).div(minSideLiquidity).abs()).toNumber() / numericConstants_1.BID_ASK_SPREAD_PRECISION.toNumber();
193
- return inventoryScale;
199
+ const inventoryScaleMax = anchor_1.BN.max(defaultLargeBidAskFactor, new anchor_1.BN(maxSpread / 2)
200
+ .mul(numericConstants_1.BID_ASK_SPREAD_PRECISION)
201
+ .div(new anchor_1.BN(Math.max(directionalSpread, 1)))).toNumber() / numericConstants_1.BID_ASK_SPREAD_PRECISION.toNumber();
202
+ const inventoryScale = baseAssetAmountWithAmm
203
+ .mul(anchor_1.BN.max(baseAssetAmountWithAmm.abs(), numericConstants_1.BASE_PRECISION))
204
+ .div(numericConstants_1.BASE_PRECISION)
205
+ .mul(defaultLargeBidAskFactor)
206
+ .div(minSideLiquidity)
207
+ .abs()
208
+ .toNumber() / numericConstants_1.BID_ASK_SPREAD_PRECISION.toNumber();
209
+ const inventorySpreadScale = Math.min(inventoryScaleMax, 1 + inventoryScale);
210
+ return inventorySpreadScale;
194
211
  }
195
212
  exports.calculateInventoryScale = calculateInventoryScale;
196
213
  function calculateEffectiveLeverage(baseSpread, quoteAssetReserve, terminalQuoteAssetReserve, pegMultiplier, netBaseAssetAmount, reservePrice, totalFeeMinusDistributions) {
@@ -215,31 +232,46 @@ function calculateMaxSpread(marginRatioInitial) {
215
232
  return maxTargetSpread;
216
233
  }
217
234
  exports.calculateMaxSpread = calculateMaxSpread;
218
- function calculateSpreadBN(baseSpread, lastOracleReservePriceSpreadPct, lastOracleConfPct, maxSpread, quoteAssetReserve, terminalQuoteAssetReserve, pegMultiplier, netBaseAssetAmount, reservePrice, totalFeeMinusDistributions, baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve) {
219
- let longSpread = baseSpread / 2;
220
- let shortSpread = baseSpread / 2;
221
- if (lastOracleReservePriceSpreadPct.gte(numericConstants_1.ZERO)) {
235
+ function calculateVolSpreadBN(lastOracleConfPct, reservePrice, markStd, oracleStd, longIntensity, shortIntensity, volume24H) {
236
+ const marketAvgStdPct = markStd
237
+ .add(oracleStd)
238
+ .mul(numericConstants_1.PERCENTAGE_PRECISION)
239
+ .div(reservePrice.mul(new anchor_1.BN(2)));
240
+ const volSpread = anchor_1.BN.max(lastOracleConfPct, marketAvgStdPct.div(new anchor_1.BN(2)));
241
+ const clampMax = numericConstants_1.PERCENTAGE_PRECISION.mul(new anchor_1.BN(16)).div(new anchor_1.BN(10));
242
+ const clampMin = numericConstants_1.PERCENTAGE_PRECISION.div(new anchor_1.BN(10));
243
+ const longVolSpreadFactor = (0, __1.clampBN)(longIntensity.mul(numericConstants_1.PERCENTAGE_PRECISION).div(anchor_1.BN.max(numericConstants_1.ONE, volume24H)), clampMin, clampMax);
244
+ const shortVolSpreadFactor = (0, __1.clampBN)(shortIntensity.mul(numericConstants_1.PERCENTAGE_PRECISION).div(anchor_1.BN.max(numericConstants_1.ONE, volume24H)), clampMin, clampMax);
245
+ const longVolSpread = anchor_1.BN.max(lastOracleConfPct, volSpread.mul(longVolSpreadFactor).div(numericConstants_1.PERCENTAGE_PRECISION));
246
+ const shortVolSpread = anchor_1.BN.max(lastOracleConfPct, volSpread.mul(shortVolSpreadFactor).div(numericConstants_1.PERCENTAGE_PRECISION));
247
+ return [longVolSpread, shortVolSpread];
248
+ }
249
+ exports.calculateVolSpreadBN = calculateVolSpreadBN;
250
+ function calculateSpreadBN(baseSpread, lastOracleReservePriceSpreadPct, lastOracleConfPct, maxSpread, quoteAssetReserve, terminalQuoteAssetReserve, pegMultiplier, baseAssetAmountWithAmm, reservePrice, totalFeeMinusDistributions, baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve, markStd, oracleStd, longIntensity, shortIntensity, volume24H) {
251
+ const [longVolSpread, shortVolSpread] = calculateVolSpreadBN(lastOracleConfPct, reservePrice, markStd, oracleStd, longIntensity, shortIntensity, volume24H);
252
+ let longSpread = Math.max(baseSpread / 2, longVolSpread.toNumber());
253
+ let shortSpread = Math.max(baseSpread / 2, shortVolSpread.toNumber());
254
+ if (lastOracleReservePriceSpreadPct.gt(numericConstants_1.ZERO)) {
222
255
  shortSpread = Math.max(shortSpread, lastOracleReservePriceSpreadPct.abs().toNumber() +
223
- lastOracleConfPct.toNumber());
256
+ shortVolSpread.toNumber());
224
257
  }
225
258
  else if (lastOracleReservePriceSpreadPct.lt(numericConstants_1.ZERO)) {
226
259
  longSpread = Math.max(longSpread, lastOracleReservePriceSpreadPct.abs().toNumber() +
227
- lastOracleConfPct.toNumber());
260
+ longVolSpread.toNumber());
228
261
  }
229
262
  const maxTargetSpread = Math.max(maxSpread, lastOracleReservePriceSpreadPct.abs().toNumber());
230
- const MAX_BID_ASK_INVENTORY_SKEW_FACTOR = 10;
231
- const inventoryScale = calculateInventoryScale(netBaseAssetAmount, baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve);
232
- const inventorySpreadScale = Math.min(MAX_BID_ASK_INVENTORY_SKEW_FACTOR, 1 + inventoryScale);
233
- if (netBaseAssetAmount.gt(numericConstants_1.ZERO)) {
263
+ const inventorySpreadScale = calculateInventoryScale(baseAssetAmountWithAmm, baseAssetReserve, minBaseAssetReserve, maxBaseAssetReserve, baseAssetAmountWithAmm.gt(numericConstants_1.ZERO) ? longSpread : shortSpread, maxTargetSpread);
264
+ if (baseAssetAmountWithAmm.gt(numericConstants_1.ZERO)) {
234
265
  longSpread *= inventorySpreadScale;
235
266
  }
236
- else if (netBaseAssetAmount.lt(numericConstants_1.ZERO)) {
267
+ else if (baseAssetAmountWithAmm.lt(numericConstants_1.ZERO)) {
237
268
  shortSpread *= inventorySpreadScale;
238
269
  }
239
- const effectiveLeverage = calculateEffectiveLeverage(baseSpread, quoteAssetReserve, terminalQuoteAssetReserve, pegMultiplier, netBaseAssetAmount, reservePrice, totalFeeMinusDistributions);
270
+ const effectiveLeverage = calculateEffectiveLeverage(baseSpread, quoteAssetReserve, terminalQuoteAssetReserve, pegMultiplier, baseAssetAmountWithAmm, reservePrice, totalFeeMinusDistributions);
271
+ const MAX_SPREAD_SCALE = 10;
240
272
  if (totalFeeMinusDistributions.gt(numericConstants_1.ZERO)) {
241
- const spreadScale = Math.min(MAX_BID_ASK_INVENTORY_SKEW_FACTOR, 1 + effectiveLeverage);
242
- if (netBaseAssetAmount.gt(numericConstants_1.ZERO)) {
273
+ const spreadScale = Math.min(MAX_SPREAD_SCALE, 1 + effectiveLeverage);
274
+ if (baseAssetAmountWithAmm.gt(numericConstants_1.ZERO)) {
243
275
  longSpread *= spreadScale;
244
276
  }
245
277
  else {
@@ -247,8 +279,8 @@ function calculateSpreadBN(baseSpread, lastOracleReservePriceSpreadPct, lastOrac
247
279
  }
248
280
  }
249
281
  else {
250
- longSpread *= MAX_BID_ASK_INVENTORY_SKEW_FACTOR;
251
- shortSpread *= MAX_BID_ASK_INVENTORY_SKEW_FACTOR;
282
+ longSpread *= MAX_SPREAD_SCALE;
283
+ shortSpread *= MAX_SPREAD_SCALE;
252
284
  }
253
285
  const totalSpread = longSpread + shortSpread;
254
286
  if (totalSpread > maxTargetSpread) {
@@ -278,7 +310,9 @@ function calculateSpread(amm, direction, oraclePriceData) {
278
310
  const confIntervalPct = confInterval
279
311
  .mul(numericConstants_1.BID_ASK_SPREAD_PRECISION)
280
312
  .div(reservePrice);
281
- const [longSpread, shortSpread] = calculateSpreadBN(amm.baseSpread, targetMarkSpreadPct, confIntervalPct, amm.maxSpread, amm.quoteAssetReserve, amm.terminalQuoteAssetReserve, amm.pegMultiplier, amm.baseAssetAmountWithAmm, reservePrice, amm.totalFeeMinusDistributions, amm.baseAssetReserve, amm.minBaseAssetReserve, amm.maxBaseAssetReserve);
313
+ const now = new anchor_1.BN(new Date().getTime() / 1000); //todo
314
+ const liveOracleStd = (0, oracles_1.calculateLiveOracleStd)(amm, oraclePriceData, now);
315
+ const [longSpread, shortSpread] = calculateSpreadBN(amm.baseSpread, targetMarkSpreadPct, confIntervalPct, amm.maxSpread, amm.quoteAssetReserve, amm.terminalQuoteAssetReserve, amm.pegMultiplier, amm.baseAssetAmountWithAmm, reservePrice, amm.totalFeeMinusDistributions, amm.baseAssetReserve, amm.minBaseAssetReserve, amm.maxBaseAssetReserve, amm.markStd, liveOracleStd, amm.longIntensityVolume, amm.shortIntensityVolume, amm.volume24H);
282
316
  let spread;
283
317
  if ((0, types_1.isVariant)(direction, 'long')) {
284
318
  spread = longSpread;
@@ -5,3 +5,5 @@ import { BN, PerpMarketAccount } from '../index';
5
5
  export declare function oraclePriceBands(market: PerpMarketAccount, oraclePriceData: OraclePriceData): [BN, BN];
6
6
  export declare function isOracleValid(amm: AMM, oraclePriceData: OraclePriceData, oracleGuardRails: OracleGuardRails, slot: number): boolean;
7
7
  export declare function isOracleTooDivergent(amm: AMM, oraclePriceData: OraclePriceData, oracleGuardRails: OracleGuardRails, now: BN): boolean;
8
+ export declare function calculateLiveOracleTwap(amm: AMM, oraclePriceData: OraclePriceData, now: BN): BN;
9
+ export declare function calculateLiveOracleStd(amm: AMM, oraclePriceData: OraclePriceData, now: BN): BN;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.isOracleTooDivergent = exports.isOracleValid = exports.oraclePriceBands = void 0;
3
+ exports.calculateLiveOracleStd = exports.calculateLiveOracleTwap = exports.isOracleTooDivergent = exports.isOracleValid = exports.oraclePriceBands = void 0;
4
4
  const numericConstants_1 = require("../constants/numericConstants");
5
5
  const index_1 = require("../index");
6
6
  const assert_1 = require("../assert/assert");
@@ -52,3 +52,25 @@ function isOracleTooDivergent(amm, oraclePriceData, oracleGuardRails, now) {
52
52
  return tooDivergent;
53
53
  }
54
54
  exports.isOracleTooDivergent = isOracleTooDivergent;
55
+ function calculateLiveOracleTwap(amm, oraclePriceData, now) {
56
+ const sinceLastUpdate = now.sub(amm.historicalOracleData.lastOraclePriceTwapTs);
57
+ const sinceStart = index_1.BN.max(numericConstants_1.ZERO, amm.fundingPeriod.sub(sinceLastUpdate));
58
+ const clampRange = amm.historicalOracleData.lastOraclePriceTwap.div(new index_1.BN(3));
59
+ const clampedOraclePrice = index_1.BN.min(amm.historicalOracleData.lastOraclePriceTwap.add(clampRange), index_1.BN.max(oraclePriceData.price, amm.historicalOracleData.lastOraclePriceTwap.sub(clampRange)));
60
+ const newOracleTwap = amm.historicalOracleData.lastOraclePriceTwap
61
+ .mul(sinceStart)
62
+ .add(clampedOraclePrice)
63
+ .mul(sinceLastUpdate)
64
+ .div(sinceStart.add(sinceLastUpdate));
65
+ return newOracleTwap;
66
+ }
67
+ exports.calculateLiveOracleTwap = calculateLiveOracleTwap;
68
+ function calculateLiveOracleStd(amm, oraclePriceData, now) {
69
+ const sinceLastUpdate = now.sub(amm.historicalOracleData.lastOraclePriceTwapTs);
70
+ const sinceStart = index_1.BN.max(numericConstants_1.ZERO, amm.fundingPeriod.sub(sinceLastUpdate));
71
+ const liveOracleTwap = calculateLiveOracleTwap(amm, oraclePriceData, now);
72
+ const priceDeltaVsTwap = oraclePriceData.price.sub(liveOracleTwap).abs();
73
+ const oracleStd = priceDeltaVsTwap.add(amm.oracleStd.mul(sinceStart).div(sinceStart.add(sinceLastUpdate)));
74
+ return oracleStd;
75
+ }
76
+ exports.calculateLiveOracleStd = calculateLiveOracleStd;
@@ -1,3 +1,4 @@
1
1
  /// <reference types="bn.js" />
2
2
  import { BN } from '../';
3
+ export declare function clampBN(x: BN, min: BN, max: BN): BN;
3
4
  export declare const squareRootBN: (n: any, closeness?: BN) => any;
package/lib/math/utils.js CHANGED
@@ -1,7 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.squareRootBN = void 0;
3
+ exports.squareRootBN = exports.clampBN = void 0;
4
4
  const __1 = require("../");
5
+ function clampBN(x, min, max) {
6
+ return __1.BN.max(min, __1.BN.min(x, max));
7
+ }
8
+ exports.clampBN = clampBN;
5
9
  const squareRootBN = (n, closeness = new __1.BN(1)) => {
6
10
  // Assuming the sqrt of n as n only
7
11
  let x = n;
package/lib/types.d.ts CHANGED
@@ -606,6 +606,8 @@ export declare type StateAccount = {
606
606
  perpFeeStructure: FeeStructure;
607
607
  spotFeeStructure: FeeStructure;
608
608
  lpCooldownTime: BN;
609
+ initialPctToLiquidate: number;
610
+ liquidationDuration: number;
609
611
  };
610
612
  export declare type PerpMarketAccount = {
611
613
  status: MarketStatus;
@@ -805,8 +807,8 @@ export declare type PerpPosition = {
805
807
  settledPnl: BN;
806
808
  lpShares: BN;
807
809
  remainderBaseAssetAmount: number;
808
- lastNetBaseAssetAmountPerLp: BN;
809
- lastNetQuoteAssetAmountPerLp: BN;
810
+ lastBaseAssetAmountPerLp: BN;
811
+ lastQuoteAssetAmountPerLp: BN;
810
812
  };
811
813
  export declare type UserStatsAccount = {
812
814
  numberOfSubAccounts: number;
@@ -848,6 +850,8 @@ export declare type UserAccount = {
848
850
  totalWithdraws: BN;
849
851
  totalSocialLoss: BN;
850
852
  cumulativePerpFunding: BN;
853
+ liquidationMarginFreed: BN;
854
+ liquidationStartSlot: BN;
851
855
  };
852
856
  export declare type SpotPosition = {
853
857
  marketIndex: number;
package/lib/user.js CHANGED
@@ -85,8 +85,8 @@ class User {
85
85
  openAsks: numericConstants_1.ZERO,
86
86
  settledPnl: numericConstants_1.ZERO,
87
87
  lpShares: numericConstants_1.ZERO,
88
- lastNetBaseAssetAmountPerLp: numericConstants_1.ZERO,
89
- lastNetQuoteAssetAmountPerLp: numericConstants_1.ZERO,
88
+ lastBaseAssetAmountPerLp: numericConstants_1.ZERO,
89
+ lastQuoteAssetAmountPerLp: numericConstants_1.ZERO,
90
90
  };
91
91
  }
92
92
  getClonedPosition(position) {
@@ -161,11 +161,11 @@ class User {
161
161
  const market = this.driftClient.getPerpMarketAccount(position.marketIndex);
162
162
  const nShares = position.lpShares;
163
163
  const deltaBaa = market.amm.baseAssetAmountPerLp
164
- .sub(position.lastNetBaseAssetAmountPerLp)
164
+ .sub(position.lastBaseAssetAmountPerLp)
165
165
  .mul(nShares)
166
166
  .div(numericConstants_1.AMM_RESERVE_PRECISION);
167
167
  const deltaQaa = market.amm.quoteAssetAmountPerLp
168
- .sub(position.lastNetQuoteAssetAmountPerLp)
168
+ .sub(position.lastQuoteAssetAmountPerLp)
169
169
  .mul(nShares)
170
170
  .div(numericConstants_1.AMM_RESERVE_PRECISION);
171
171
  function sign(v) {
@@ -364,6 +364,7 @@ class User {
364
364
  newTotalLiabilityValue =
365
365
  newTotalLiabilityValue.add(weightedTokenValue);
366
366
  }
367
+ newTotalLiabilityValue = newTotalLiabilityValue.add(new _1.BN(spotPosition.openOrders).mul(numericConstants_1.OPEN_ORDER_MARGIN_REQUIREMENT));
367
368
  return newTotalLiabilityValue;
368
369
  }, numericConstants_1.ZERO);
369
370
  }
@@ -523,6 +524,9 @@ class User {
523
524
  baseAssetValue = baseAssetValue
524
525
  .mul(marginRatio)
525
526
  .div(numericConstants_1.MARGIN_PRECISION);
527
+ if (includeOpenOrders) {
528
+ baseAssetValue = baseAssetValue.add(new _1.BN(perpPosition.openOrders).mul(numericConstants_1.OPEN_ORDER_MARGIN_REQUIREMENT));
529
+ }
526
530
  }
527
531
  return totalPerpValue.add(baseAssetValue);
528
532
  }, numericConstants_1.ZERO);
@@ -760,8 +764,8 @@ class User {
760
764
  openAsks: new _1.BN(0),
761
765
  settledPnl: numericConstants_1.ZERO,
762
766
  lpShares: numericConstants_1.ZERO,
763
- lastNetBaseAssetAmountPerLp: numericConstants_1.ZERO,
764
- lastNetQuoteAssetAmountPerLp: numericConstants_1.ZERO,
767
+ lastBaseAssetAmountPerLp: numericConstants_1.ZERO,
768
+ lastQuoteAssetAmountPerLp: numericConstants_1.ZERO,
765
769
  };
766
770
  if (proposedBaseAssetAmount.eq(numericConstants_1.ZERO))
767
771
  return new _1.BN(-1);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.0.14",
3
+ "version": "2.0.15",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "author": "crispheaney",
@@ -317,10 +317,6 @@ export class PollingDriftClientAccountSubscriber
317
317
  }
318
318
 
319
319
  public async unsubscribe(): Promise<void> {
320
- if (!this.isSubscribed) {
321
- return;
322
- }
323
-
324
320
  for (const [_, accountToPoll] of this.accountsToPoll) {
325
321
  this.accountLoader.removeAccount(
326
322
  accountToPoll.publicKey,
@@ -132,10 +132,6 @@ export class PollingUserStatsAccountSubscriber
132
132
  }
133
133
 
134
134
  async unsubscribe(): Promise<void> {
135
- if (!this.isSubscribed) {
136
- return;
137
- }
138
-
139
135
  for (const [_, accountToPoll] of this.accountsToPoll) {
140
136
  this.accountLoader.removeAccount(
141
137
  accountToPoll.publicKey,
@@ -606,6 +606,34 @@ export class AdminClient extends DriftClient {
606
606
  });
607
607
  }
608
608
 
609
+ public async updateInitialPctToLiquidate(
610
+ initialPctToLiquidate: number
611
+ ): Promise<TransactionSignature> {
612
+ return await this.program.rpc.updateInitialPctToLiquidate(
613
+ initialPctToLiquidate,
614
+ {
615
+ accounts: {
616
+ admin: this.wallet.publicKey,
617
+ state: await this.getStatePublicKey(),
618
+ },
619
+ }
620
+ );
621
+ }
622
+
623
+ public async updateLiquidationDuration(
624
+ liquidationDuration: number
625
+ ): Promise<TransactionSignature> {
626
+ return await this.program.rpc.updateLiquidationDuration(
627
+ liquidationDuration,
628
+ {
629
+ accounts: {
630
+ admin: this.wallet.publicKey,
631
+ state: await this.getStatePublicKey(),
632
+ },
633
+ }
634
+ );
635
+ }
636
+
609
637
  public async updateOracleGuardRails(
610
638
  oracleGuardRails: OracleGuardRails
611
639
  ): Promise<TransactionSignature> {
@@ -81,6 +81,7 @@ export const AMM_TIMES_PEG_TO_QUOTE_PRECISION_RATIO =
81
81
  AMM_RESERVE_PRECISION.mul(PEG_PRECISION).div(QUOTE_PRECISION); // 10^9
82
82
  export const MARGIN_PRECISION = TEN_THOUSAND;
83
83
  export const BID_ASK_SPREAD_PRECISION = new BN(1000000); // 10^6
84
+ export const LIQUIDATION_PCT_PRECISION = TEN_THOUSAND;
84
85
 
85
86
  export const ONE_YEAR = new BN(31536000);
86
87
 
@@ -88,3 +89,5 @@ export const QUOTE_SPOT_MARKET_INDEX = 0;
88
89
 
89
90
  export const LAMPORTS_PRECISION = new BN(LAMPORTS_PER_SOL);
90
91
  export const LAMPORTS_EXP = new BN(Math.log10(LAMPORTS_PER_SOL));
92
+
93
+ export const OPEN_ORDER_MARGIN_REQUIREMENT = QUOTE_PRECISION.div(new BN(100));