@drift-labs/sdk 2.33.1-beta.3 → 2.33.1-beta.5

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.33.1-beta.3
1
+ 2.33.1-beta.5
@@ -1208,6 +1208,7 @@ class DriftClient {
1208
1208
  accounts: {
1209
1209
  state: await this.getStatePublicKey(),
1210
1210
  spotMarket: spotMarket.pubkey,
1211
+ spotMarketVault: spotMarket.vault,
1211
1212
  oracle: spotMarket.oracle,
1212
1213
  },
1213
1214
  });
@@ -67,6 +67,10 @@ export declare function calculateInterestAccumulated(bank: SpotMarketAccount, no
67
67
  borrowInterest: BN;
68
68
  depositInterest: BN;
69
69
  };
70
+ export declare function calculateTokenUtilizationLimits(depositTokenAmount: BN, borrowTokenAmount: BN, spotMarket: SpotMarketAccount): {
71
+ minDepositTokensForUtilization: BN;
72
+ maxBorrowTokensForUtilization: BN;
73
+ };
70
74
  export declare function calculateWithdrawLimit(spotMarket: SpotMarketAccount, now: BN): {
71
75
  borrowLimit: BN;
72
76
  withdrawLimit: BN;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.calculateWithdrawLimit = exports.calculateInterestAccumulated = exports.calculateBorrowRate = exports.calculateDepositRate = exports.calculateInterestRate = exports.calculateSpotMarketBorrowCapacity = exports.calculateUtilization = exports.calculateLiabilityWeight = exports.calculateAssetWeight = exports.getTokenValue = exports.getStrictTokenValue = exports.getSignedTokenAmount = exports.getTokenAmount = exports.getBalance = void 0;
3
+ exports.calculateWithdrawLimit = exports.calculateTokenUtilizationLimits = exports.calculateInterestAccumulated = exports.calculateBorrowRate = exports.calculateDepositRate = exports.calculateInterestRate = exports.calculateSpotMarketBorrowCapacity = exports.calculateUtilization = exports.calculateLiabilityWeight = exports.calculateAssetWeight = exports.getTokenValue = exports.getStrictTokenValue = exports.getSignedTokenAmount = exports.getTokenAmount = exports.getBalance = void 0;
4
4
  const types_1 = require("../types");
5
5
  const anchor_1 = require("@coral-xyz/anchor");
6
6
  const numericConstants_1 = require("../constants/numericConstants");
@@ -281,6 +281,27 @@ function calculateInterestAccumulated(bank, now) {
281
281
  return { borrowInterest, depositInterest };
282
282
  }
283
283
  exports.calculateInterestAccumulated = calculateInterestAccumulated;
284
+ function calculateTokenUtilizationLimits(depositTokenAmount, borrowTokenAmount, spotMarket) {
285
+ // Calculates the allowable minimum deposit and maximum borrow amounts for immediate withdrawal based on market utilization.
286
+ // First, it determines a maximum withdrawal utilization from the market's target and historic utilization.
287
+ // Then, it deduces corresponding deposit/borrow amounts.
288
+ // Note: For deposit sizes below the guard threshold, withdrawals aren't blocked.
289
+ const maxWithdrawUtilization = anchor_1.BN.max(spotMarket.optimalUtilization, spotMarket.utilizationTwap.add(numericConstants_1.SPOT_MARKET_UTILIZATION_PRECISION.sub(spotMarket.utilizationTwap).div(new anchor_1.BN(2))));
290
+ let minDepositTokensForUtilization = borrowTokenAmount
291
+ .mul(numericConstants_1.SPOT_MARKET_UTILIZATION_PRECISION)
292
+ .div(maxWithdrawUtilization);
293
+ // don't block withdraws for deposit sizes below guard threshold
294
+ minDepositTokensForUtilization = anchor_1.BN.min(minDepositTokensForUtilization, depositTokenAmount.sub(spotMarket.withdrawGuardThreshold));
295
+ let maxBorrowTokensForUtilization = maxWithdrawUtilization
296
+ .mul(depositTokenAmount)
297
+ .div(numericConstants_1.SPOT_MARKET_UTILIZATION_PRECISION);
298
+ maxBorrowTokensForUtilization = anchor_1.BN.max(spotMarket.withdrawGuardThreshold, maxBorrowTokensForUtilization);
299
+ return {
300
+ minDepositTokensForUtilization,
301
+ maxBorrowTokensForUtilization,
302
+ };
303
+ }
304
+ exports.calculateTokenUtilizationLimits = calculateTokenUtilizationLimits;
284
305
  function calculateWithdrawLimit(spotMarket, now) {
285
306
  const marketDepositTokenAmount = getTokenAmount(spotMarket.depositBalance, spotMarket, types_1.SpotBalanceType.DEPOSIT);
286
307
  const marketBorrowTokenAmount = getTokenAmount(spotMarket.borrowBalance, spotMarket, types_1.SpotBalanceType.BORROW);
@@ -295,8 +316,12 @@ function calculateWithdrawLimit(spotMarket, now) {
295
316
  .mul(sinceStart)
296
317
  .add(marketDepositTokenAmount.mul(sinceLast))
297
318
  .div(sinceLast.add(sinceStart));
298
- const maxBorrowTokens = anchor_1.BN.max(spotMarket.withdrawGuardThreshold, anchor_1.BN.min(anchor_1.BN.max(marketDepositTokenAmount.div(new anchor_1.BN(6)), borrowTokenTwapLive.add(marketDepositTokenAmount.div(new anchor_1.BN(10)))), marketDepositTokenAmount.sub(marketDepositTokenAmount.div(new anchor_1.BN(5))))); // between ~15-80% utilization with friction on twap
299
- const minDepositTokens = depositTokenTwapLive.sub(anchor_1.BN.max(depositTokenTwapLive.div(new anchor_1.BN(4)), anchor_1.BN.min(spotMarket.withdrawGuardThreshold, depositTokenTwapLive)));
319
+ const lesserDepositAmount = anchor_1.BN.min(marketDepositTokenAmount, depositTokenTwapLive);
320
+ const maxBorrowTokensTwap = anchor_1.BN.max(spotMarket.withdrawGuardThreshold, anchor_1.BN.min(anchor_1.BN.max(marketDepositTokenAmount.div(new anchor_1.BN(6)), borrowTokenTwapLive.add(lesserDepositAmount.div(new anchor_1.BN(10)))), lesserDepositAmount.sub(lesserDepositAmount.div(new anchor_1.BN(5))))); // between ~15-80% utilization with friction on twap
321
+ const minDepositTokensTwap = depositTokenTwapLive.sub(anchor_1.BN.max(depositTokenTwapLive.div(new anchor_1.BN(4)), anchor_1.BN.min(spotMarket.withdrawGuardThreshold, depositTokenTwapLive)));
322
+ const { minDepositTokensForUtilization, maxBorrowTokensForUtilization } = calculateTokenUtilizationLimits(marketDepositTokenAmount, marketBorrowTokenAmount, spotMarket);
323
+ const minDepositTokens = anchor_1.BN.max(minDepositTokensForUtilization, minDepositTokensTwap);
324
+ const maxBorrowTokens = anchor_1.BN.min(maxBorrowTokensForUtilization, maxBorrowTokensTwap);
300
325
  const withdrawLimit = anchor_1.BN.max(marketDepositTokenAmount.sub(minDepositTokens), numericConstants_1.ZERO);
301
326
  let borrowLimit = maxBorrowTokens.sub(marketBorrowTokenAmount);
302
327
  borrowLimit = anchor_1.BN.min(borrowLimit, marketDepositTokenAmount.sub(marketBorrowTokenAmount));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.33.1-beta.3",
3
+ "version": "2.33.1-beta.5",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "author": "crispheaney",
@@ -2144,6 +2144,7 @@ export class DriftClient {
2144
2144
  accounts: {
2145
2145
  state: await this.getStatePublicKey(),
2146
2146
  spotMarket: spotMarket.pubkey,
2147
+ spotMarketVault: spotMarket.vault,
2147
2148
  oracle: spotMarket.oracle,
2148
2149
  },
2149
2150
  });
@@ -416,6 +416,53 @@ export function calculateInterestAccumulated(
416
416
  return { borrowInterest, depositInterest };
417
417
  }
418
418
 
419
+ export function calculateTokenUtilizationLimits(
420
+ depositTokenAmount: BN,
421
+ borrowTokenAmount: BN,
422
+ spotMarket: SpotMarketAccount
423
+ ): {
424
+ minDepositTokensForUtilization: BN;
425
+ maxBorrowTokensForUtilization: BN;
426
+ } {
427
+ // Calculates the allowable minimum deposit and maximum borrow amounts for immediate withdrawal based on market utilization.
428
+ // First, it determines a maximum withdrawal utilization from the market's target and historic utilization.
429
+ // Then, it deduces corresponding deposit/borrow amounts.
430
+ // Note: For deposit sizes below the guard threshold, withdrawals aren't blocked.
431
+
432
+ const maxWithdrawUtilization = BN.max(
433
+ spotMarket.optimalUtilization,
434
+ spotMarket.utilizationTwap.add(
435
+ SPOT_MARKET_UTILIZATION_PRECISION.sub(spotMarket.utilizationTwap).div(
436
+ new BN(2)
437
+ )
438
+ )
439
+ );
440
+
441
+ let minDepositTokensForUtilization = borrowTokenAmount
442
+ .mul(SPOT_MARKET_UTILIZATION_PRECISION)
443
+ .div(maxWithdrawUtilization);
444
+
445
+ // don't block withdraws for deposit sizes below guard threshold
446
+ minDepositTokensForUtilization = BN.min(
447
+ minDepositTokensForUtilization,
448
+ depositTokenAmount.sub(spotMarket.withdrawGuardThreshold)
449
+ );
450
+
451
+ let maxBorrowTokensForUtilization = maxWithdrawUtilization
452
+ .mul(depositTokenAmount)
453
+ .div(SPOT_MARKET_UTILIZATION_PRECISION);
454
+
455
+ maxBorrowTokensForUtilization = BN.max(
456
+ spotMarket.withdrawGuardThreshold,
457
+ maxBorrowTokensForUtilization
458
+ );
459
+
460
+ return {
461
+ minDepositTokensForUtilization,
462
+ maxBorrowTokensForUtilization,
463
+ };
464
+ }
465
+
419
466
  export function calculateWithdrawLimit(
420
467
  spotMarket: SpotMarketAccount,
421
468
  now: BN
@@ -451,24 +498,45 @@ export function calculateWithdrawLimit(
451
498
  .add(marketDepositTokenAmount.mul(sinceLast))
452
499
  .div(sinceLast.add(sinceStart));
453
500
 
454
- const maxBorrowTokens = BN.max(
501
+ const lesserDepositAmount = BN.min(
502
+ marketDepositTokenAmount,
503
+ depositTokenTwapLive
504
+ );
505
+ const maxBorrowTokensTwap = BN.max(
455
506
  spotMarket.withdrawGuardThreshold,
456
507
  BN.min(
457
508
  BN.max(
458
509
  marketDepositTokenAmount.div(new BN(6)),
459
- borrowTokenTwapLive.add(marketDepositTokenAmount.div(new BN(10)))
510
+ borrowTokenTwapLive.add(lesserDepositAmount.div(new BN(10)))
460
511
  ),
461
- marketDepositTokenAmount.sub(marketDepositTokenAmount.div(new BN(5)))
512
+ lesserDepositAmount.sub(lesserDepositAmount.div(new BN(5)))
462
513
  )
463
514
  ); // between ~15-80% utilization with friction on twap
464
515
 
465
- const minDepositTokens = depositTokenTwapLive.sub(
516
+ const minDepositTokensTwap = depositTokenTwapLive.sub(
466
517
  BN.max(
467
518
  depositTokenTwapLive.div(new BN(4)),
468
519
  BN.min(spotMarket.withdrawGuardThreshold, depositTokenTwapLive)
469
520
  )
470
521
  );
471
522
 
523
+ const { minDepositTokensForUtilization, maxBorrowTokensForUtilization } =
524
+ calculateTokenUtilizationLimits(
525
+ marketDepositTokenAmount,
526
+ marketBorrowTokenAmount,
527
+ spotMarket
528
+ );
529
+
530
+ const minDepositTokens = BN.max(
531
+ minDepositTokensForUtilization,
532
+ minDepositTokensTwap
533
+ );
534
+
535
+ const maxBorrowTokens = BN.min(
536
+ maxBorrowTokensForUtilization,
537
+ maxBorrowTokensTwap
538
+ );
539
+
472
540
  const withdrawLimit = BN.max(
473
541
  marketDepositTokenAmount.sub(minDepositTokens),
474
542
  ZERO