@drift-labs/sdk 0.1.17 → 0.1.18-orders.0

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 (103) hide show
  1. package/lib/accounts/defaultClearingHouseAccountSubscriber.d.ts +5 -2
  2. package/lib/accounts/defaultClearingHouseAccountSubscriber.js +25 -0
  3. package/lib/accounts/defaultHistoryAccountSubscriber.d.ts +28 -0
  4. package/lib/accounts/defaultHistoryAccountSubscriber.js +110 -0
  5. package/lib/accounts/defaultUserAccountSubscriber.d.ts +3 -2
  6. package/lib/accounts/defaultUserAccountSubscriber.js +11 -0
  7. package/lib/accounts/types.d.ts +29 -3
  8. package/lib/accounts/webSocketAccountSubscriber.d.ts +0 -1
  9. package/lib/addresses.d.ts +4 -1
  10. package/lib/addresses.js +28 -1
  11. package/lib/admin.d.ts +10 -4
  12. package/lib/admin.js +48 -3
  13. package/lib/assert/assert.d.ts +0 -1
  14. package/lib/clearingHouse.d.ts +21 -2
  15. package/lib/clearingHouse.js +238 -7
  16. package/lib/clearingHouseUser.d.ts +10 -17
  17. package/lib/clearingHouseUser.js +98 -84
  18. package/lib/config.d.ts +0 -1
  19. package/lib/config.js +1 -1
  20. package/lib/constants/markets.d.ts +0 -1
  21. package/lib/constants/numericConstants.d.ts +0 -1
  22. package/lib/examples/makeTradeExample.d.ts +0 -1
  23. package/lib/idl/clearing_house.json +956 -59
  24. package/lib/index.d.ts +3 -1
  25. package/lib/index.js +3 -0
  26. package/lib/math/amm.d.ts +1 -1
  27. package/lib/math/amm.js +31 -8
  28. package/lib/math/conversion.d.ts +0 -1
  29. package/lib/math/funding.d.ts +0 -1
  30. package/lib/math/insuranceFund.d.ts +0 -1
  31. package/lib/math/market.d.ts +2 -2
  32. package/lib/math/market.js +11 -1
  33. package/lib/math/orders.d.ts +3 -0
  34. package/lib/math/orders.js +30 -0
  35. package/lib/math/position.d.ts +4 -2
  36. package/lib/math/position.js +18 -4
  37. package/lib/math/trade.d.ts +0 -1
  38. package/lib/math/utils.d.ts +0 -1
  39. package/lib/mockUSDCFaucet.d.ts +0 -1
  40. package/lib/orderParams.d.ts +7 -0
  41. package/lib/orderParams.js +88 -0
  42. package/lib/orders.d.ts +5 -0
  43. package/lib/orders.js +136 -0
  44. package/lib/pythClient.d.ts +0 -1
  45. package/lib/tx/defaultTxSender.d.ts +0 -1
  46. package/lib/tx/types.d.ts +0 -1
  47. package/lib/tx/utils.d.ts +0 -1
  48. package/lib/types.d.ts +137 -2
  49. package/lib/types.js +36 -1
  50. package/lib/util/computeUnits.d.ts +0 -1
  51. package/lib/util/tps.d.ts +0 -1
  52. package/lib/wallet.d.ts +0 -1
  53. package/package.json +1 -1
  54. package/src/accounts/defaultClearingHouseAccountSubscriber.ts +47 -0
  55. package/src/accounts/defaultHistoryAccountSubscriber.ts +176 -0
  56. package/src/accounts/defaultUserAccountSubscriber.ts +29 -2
  57. package/src/accounts/types.ts +38 -1
  58. package/src/addresses.ts +35 -0
  59. package/src/admin.ts +84 -6
  60. package/src/clearingHouse.ts +338 -5
  61. package/src/clearingHouseUser.ts +154 -102
  62. package/src/config.ts +1 -1
  63. package/src/idl/clearing_house.json +956 -59
  64. package/src/index.ts +3 -0
  65. package/src/math/amm.ts +47 -14
  66. package/src/math/market.ts +28 -2
  67. package/src/math/orders.ts +39 -0
  68. package/src/math/position.ts +23 -3
  69. package/src/orderParams.ts +128 -0
  70. package/src/orders.ts +230 -0
  71. package/src/types.ts +121 -1
  72. package/tsconfig.json +0 -1
  73. package/lib/accounts/defaultClearingHouseAccountSubscriber.d.ts.map +0 -1
  74. package/lib/accounts/defaultUserAccountSubscriber.d.ts.map +0 -1
  75. package/lib/accounts/types.d.ts.map +0 -1
  76. package/lib/accounts/webSocketAccountSubscriber.d.ts.map +0 -1
  77. package/lib/addresses.d.ts.map +0 -1
  78. package/lib/admin.d.ts.map +0 -1
  79. package/lib/assert/assert.d.ts.map +0 -1
  80. package/lib/clearingHouse.d.ts.map +0 -1
  81. package/lib/clearingHouseUser.d.ts.map +0 -1
  82. package/lib/config.d.ts.map +0 -1
  83. package/lib/constants/markets.d.ts.map +0 -1
  84. package/lib/constants/numericConstants.d.ts.map +0 -1
  85. package/lib/examples/makeTradeExample.d.ts.map +0 -1
  86. package/lib/index.d.ts.map +0 -1
  87. package/lib/math/amm.d.ts.map +0 -1
  88. package/lib/math/conversion.d.ts.map +0 -1
  89. package/lib/math/funding.d.ts.map +0 -1
  90. package/lib/math/insuranceFund.d.ts.map +0 -1
  91. package/lib/math/market.d.ts.map +0 -1
  92. package/lib/math/position.d.ts.map +0 -1
  93. package/lib/math/trade.d.ts.map +0 -1
  94. package/lib/math/utils.d.ts.map +0 -1
  95. package/lib/mockUSDCFaucet.d.ts.map +0 -1
  96. package/lib/pythClient.d.ts.map +0 -1
  97. package/lib/tx/defaultTxSender.d.ts.map +0 -1
  98. package/lib/tx/types.d.ts.map +0 -1
  99. package/lib/tx/utils.d.ts.map +0 -1
  100. package/lib/types.d.ts.map +0 -1
  101. package/lib/util/computeUnits.d.ts.map +0 -1
  102. package/lib/util/tps.d.ts.map +0 -1
  103. package/lib/wallet.d.ts.map +0 -1
package/lib/index.d.ts CHANGED
@@ -3,6 +3,7 @@ export * from './mockUSDCFaucet';
3
3
  export * from './pythClient';
4
4
  export * from './types';
5
5
  export * from './constants/markets';
6
+ export * from './accounts/defaultHistoryAccountSubscriber';
6
7
  export * from './accounts/defaultClearingHouseAccountSubscriber';
7
8
  export * from './accounts/types';
8
9
  export * from './addresses';
@@ -16,6 +17,8 @@ export * from './math/market';
16
17
  export * from './math/position';
17
18
  export * from './math/amm';
18
19
  export * from './math/trade';
20
+ export * from './orders';
21
+ export * from './orderParams';
19
22
  export * from './wallet';
20
23
  export * from './types';
21
24
  export * from './math/utils';
@@ -24,4 +27,3 @@ export * from './constants/numericConstants';
24
27
  export * from './util/computeUnits';
25
28
  export * from './util/tps';
26
29
  export { BN };
27
- //# sourceMappingURL=index.d.ts.map
package/lib/index.js CHANGED
@@ -17,6 +17,7 @@ __exportStar(require("./mockUSDCFaucet"), exports);
17
17
  __exportStar(require("./pythClient"), exports);
18
18
  __exportStar(require("./types"), exports);
19
19
  __exportStar(require("./constants/markets"), exports);
20
+ __exportStar(require("./accounts/defaultHistoryAccountSubscriber"), exports);
20
21
  __exportStar(require("./accounts/defaultClearingHouseAccountSubscriber"), exports);
21
22
  __exportStar(require("./accounts/types"), exports);
22
23
  __exportStar(require("./addresses"), exports);
@@ -30,6 +31,8 @@ __exportStar(require("./math/market"), exports);
30
31
  __exportStar(require("./math/position"), exports);
31
32
  __exportStar(require("./math/amm"), exports);
32
33
  __exportStar(require("./math/trade"), exports);
34
+ __exportStar(require("./orders"), exports);
35
+ __exportStar(require("./orderParams"), exports);
33
36
  __exportStar(require("./wallet"), exports);
34
37
  __exportStar(require("./types"), exports);
35
38
  __exportStar(require("./math/utils"), exports);
package/lib/math/amm.d.ts CHANGED
@@ -63,4 +63,4 @@ export declare function calculateRepegCost(market: Market, marketIndex: BN, newP
63
63
  * @returns cost : Precision MARK_PRICE_PRECISION
64
64
  */
65
65
  export declare function calculateTerminalPrice(market: Market): BN;
66
- //# sourceMappingURL=amm.d.ts.map
66
+ export declare function calculateMaxBaseAssetAmountToTrade(amm: AMM, limit_price: BN): [BN, PositionDirection];
package/lib/math/amm.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.calculateTerminalPrice = exports.calculateRepegCost = exports.calculateAdjustKCost = exports.getSwapDirection = exports.calculateSwapOutput = exports.calculateAmmReservesAfterSwap = exports.calculatePrice = void 0;
3
+ exports.calculateMaxBaseAssetAmountToTrade = exports.calculateTerminalPrice = exports.calculateRepegCost = exports.calculateAdjustKCost = exports.getSwapDirection = exports.calculateSwapOutput = exports.calculateAmmReservesAfterSwap = exports.calculatePrice = void 0;
4
4
  const anchor_1 = require("@project-serum/anchor");
5
5
  const numericConstants_1 = require("../constants/numericConstants");
6
6
  const position_1 = require("./position");
@@ -79,12 +79,10 @@ exports.calculateSwapOutput = calculateSwapOutput;
79
79
  * @param positionDirection
80
80
  */
81
81
  function getSwapDirection(inputAssetType, positionDirection) {
82
- if (positionDirection === types_1.PositionDirection.LONG &&
83
- inputAssetType === 'base') {
82
+ if (types_1.isVariant(positionDirection, 'long') && inputAssetType === 'base') {
84
83
  return types_1.SwapDirection.REMOVE;
85
84
  }
86
- if (positionDirection === types_1.PositionDirection.SHORT &&
87
- inputAssetType === 'quote') {
85
+ if (types_1.isVariant(positionDirection, 'short') && inputAssetType === 'quote') {
88
86
  return types_1.SwapDirection.REMOVE;
89
87
  }
90
88
  return types_1.SwapDirection.ADD;
@@ -104,6 +102,7 @@ function calculateAdjustKCost(market, marketIndex, numerator, denomenator) {
104
102
  lastCumulativeFundingRate: market.amm.cumulativeFundingRate,
105
103
  marketIndex: new anchor_1.BN(marketIndex),
106
104
  quoteAssetAmount: new anchor_1.BN(0),
105
+ openOrders: new anchor_1.BN(0),
107
106
  };
108
107
  const currentValue = position_1.calculateBaseAssetValue(market, netUserPosition);
109
108
  const marketNewK = Object.assign({}, market);
@@ -134,6 +133,7 @@ function calculateRepegCost(market, marketIndex, newPeg) {
134
133
  lastCumulativeFundingRate: market.amm.cumulativeFundingRate,
135
134
  marketIndex: new anchor_1.BN(marketIndex),
136
135
  quoteAssetAmount: new anchor_1.BN(0),
136
+ openOrders: new anchor_1.BN(0),
137
137
  };
138
138
  const currentValue = position_1.calculateBaseAssetValue(market, netUserPosition);
139
139
  netUserPosition.quoteAssetAmount = currentValue;
@@ -154,9 +154,6 @@ exports.calculateRepegCost = calculateRepegCost;
154
154
  * @returns cost : Precision MARK_PRICE_PRECISION
155
155
  */
156
156
  function calculateTerminalPrice(market) {
157
- if (!market.initialized) {
158
- return new anchor_1.BN(0);
159
- }
160
157
  const directionToClose = market.baseAssetAmount.gt(numericConstants_1.ZERO)
161
158
  ? types_1.PositionDirection.SHORT
162
159
  : types_1.PositionDirection.LONG;
@@ -169,3 +166,29 @@ function calculateTerminalPrice(market) {
169
166
  return terminalPrice;
170
167
  }
171
168
  exports.calculateTerminalPrice = calculateTerminalPrice;
169
+ function calculateMaxBaseAssetAmountToTrade(amm, limit_price) {
170
+ const invariant = amm.sqrtK.mul(amm.sqrtK);
171
+ const newBaseAssetReserveSquared = invariant
172
+ .mul(numericConstants_1.MARK_PRICE_PRECISION)
173
+ .mul(amm.pegMultiplier)
174
+ .div(limit_price)
175
+ .div(numericConstants_1.PEG_PRECISION);
176
+ const newBaseAssetReserve = __1.squareRootBN(newBaseAssetReserveSquared);
177
+ if (newBaseAssetReserve.gt(amm.baseAssetReserve)) {
178
+ return [
179
+ newBaseAssetReserve.sub(amm.baseAssetReserve),
180
+ types_1.PositionDirection.SHORT,
181
+ ];
182
+ }
183
+ else if (newBaseAssetReserve.lt(amm.baseAssetReserve)) {
184
+ return [
185
+ amm.baseAssetReserve.sub(newBaseAssetReserve),
186
+ types_1.PositionDirection.LONG,
187
+ ];
188
+ }
189
+ else {
190
+ console.log('tradeSize Too Small');
191
+ return [new anchor_1.BN(0), types_1.PositionDirection.LONG];
192
+ }
193
+ }
194
+ exports.calculateMaxBaseAssetAmountToTrade = calculateMaxBaseAssetAmountToTrade;
@@ -1,4 +1,3 @@
1
1
  import BN from 'bn.js';
2
2
  export declare const convertToNumber: (bigNumber: BN, precision?: BN) => number;
3
3
  export declare const convertBaseAssetAmountToNumber: (baseAssetAmount: BN) => number;
4
- //# sourceMappingURL=conversion.d.ts.map
@@ -41,4 +41,3 @@ export declare function calculateLongShortFundingRateAndLiveTwaps(market: Market
41
41
  * @returns Estimated fee pool size
42
42
  */
43
43
  export declare function calculateFundingPool(market: Market): BN;
44
- //# sourceMappingURL=funding.d.ts.map
@@ -12,4 +12,3 @@ import { Connection } from '@solana/web3.js';
12
12
  * @returns Precision : QUOTE_ASSET_PRECISION
13
13
  */
14
14
  export declare function calculateInsuranceFundSize(connection: Connection, state: StateAccount, marketsAccount: MarketsAccount): Promise<BN>;
15
- //# sourceMappingURL=insuranceFund.d.ts.map
@@ -1,6 +1,6 @@
1
1
  /// <reference types="bn.js" />
2
2
  import { BN } from '@project-serum/anchor';
3
- import { Market } from '../types';
3
+ import { Market, PositionDirection } from '../types';
4
4
  /**
5
5
  * Calculates market mark price
6
6
  *
@@ -8,4 +8,4 @@ import { Market } from '../types';
8
8
  * @return markPrice : Precision MARK_PRICE_PRECISION
9
9
  */
10
10
  export declare function calculateMarkPrice(market: Market): BN;
11
- //# sourceMappingURL=market.d.ts.map
11
+ export declare function calculateNewMarketAfterTrade(baseAssetAmount: BN, direction: PositionDirection, market: Market): Market;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.calculateMarkPrice = void 0;
3
+ exports.calculateNewMarketAfterTrade = exports.calculateMarkPrice = void 0;
4
4
  const amm_1 = require("./amm");
5
5
  /**
6
6
  * Calculates market mark price
@@ -12,3 +12,13 @@ function calculateMarkPrice(market) {
12
12
  return amm_1.calculatePrice(market.amm.baseAssetReserve, market.amm.quoteAssetReserve, market.amm.pegMultiplier);
13
13
  }
14
14
  exports.calculateMarkPrice = calculateMarkPrice;
15
+ function calculateNewMarketAfterTrade(baseAssetAmount, direction, market) {
16
+ const [newQuoteAssetReserve, newBaseAssetReserve] = amm_1.calculateAmmReservesAfterSwap(market.amm, 'base', baseAssetAmount.abs(), amm_1.getSwapDirection('base', direction));
17
+ const newAmm = Object.assign({}, market.amm);
18
+ const newMarket = Object.assign({}, market);
19
+ newMarket.amm = newAmm;
20
+ newMarket.amm.quoteAssetReserve = newQuoteAssetReserve;
21
+ newMarket.amm.baseAssetReserve = newBaseAssetReserve;
22
+ return newMarket;
23
+ }
24
+ exports.calculateNewMarketAfterTrade = calculateNewMarketAfterTrade;
@@ -0,0 +1,3 @@
1
+ import { ClearingHouseUser } from '../clearingHouseUser';
2
+ import { Order } from '../types';
3
+ export declare function isOrderRiskIncreasing(user: ClearingHouseUser, order: Order): boolean;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.isOrderRiskIncreasing = void 0;
4
+ const types_1 = require("../types");
5
+ const numericConstants_1 = require("../constants/numericConstants");
6
+ function isOrderRiskIncreasing(user, order) {
7
+ if (types_1.isVariant(order.status, 'init')) {
8
+ return false;
9
+ }
10
+ const position = user.getUserPosition(order.marketIndex) ||
11
+ user.getEmptyPosition(order.marketIndex);
12
+ // if no position exists, it's risk increasing
13
+ if (position.baseAssetAmount.eq(numericConstants_1.ZERO)) {
14
+ return true;
15
+ }
16
+ // if position is long and order is long
17
+ if (position.baseAssetAmount.gt(numericConstants_1.ZERO) && types_1.isVariant(order.direction, 'long')) {
18
+ return true;
19
+ }
20
+ // if position is short and order is short
21
+ if (position.baseAssetAmount.lt(numericConstants_1.ZERO) &&
22
+ types_1.isVariant(order.direction, 'short')) {
23
+ return true;
24
+ }
25
+ // if order will flip position
26
+ if (position.baseAssetAmount.abs().gt(order.baseAssetAmountFilled)) {
27
+ return true;
28
+ }
29
+ }
30
+ exports.isOrderRiskIncreasing = isOrderRiskIncreasing;
@@ -1,5 +1,5 @@
1
1
  import BN from 'bn.js';
2
- import { Market, UserPosition } from '../types';
2
+ import { Market, PositionDirection, UserPosition } from '../types';
3
3
  /**
4
4
  * calculateBaseAssetValue
5
5
  * = market value of closing entire position
@@ -30,4 +30,6 @@ export declare function calculatePositionFundingPNL(market: Market, marketPositi
30
30
  * @returns Precision: MARK_PRICE_PRECISION (10^10)
31
31
  */
32
32
  export declare function calculateEntryPrice(userPosition: UserPosition): BN;
33
- //# sourceMappingURL=position.d.ts.map
33
+ export declare function findDirectionToClose(userPosition: UserPosition): PositionDirection;
34
+ export declare function positionCurrentDirection(userPosition: UserPosition): PositionDirection;
35
+ export declare function isEmptyPosition(userPosition: UserPosition): boolean;
@@ -3,7 +3,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.calculateEntryPrice = exports.calculatePositionFundingPNL = exports.calculatePositionPNL = exports.calculateBaseAssetValue = void 0;
6
+ exports.isEmptyPosition = exports.positionCurrentDirection = exports.findDirectionToClose = exports.calculateEntryPrice = exports.calculatePositionFundingPNL = exports.calculatePositionPNL = exports.calculateBaseAssetValue = void 0;
7
7
  const bn_js_1 = __importDefault(require("bn.js"));
8
8
  const numericConstants_1 = require("../constants/numericConstants");
9
9
  const types_1 = require("../types");
@@ -19,9 +19,7 @@ function calculateBaseAssetValue(market, userPosition) {
19
19
  if (userPosition.baseAssetAmount.eq(numericConstants_1.ZERO)) {
20
20
  return numericConstants_1.ZERO;
21
21
  }
22
- const directionToClose = userPosition.baseAssetAmount.gt(numericConstants_1.ZERO)
23
- ? types_1.PositionDirection.SHORT
24
- : types_1.PositionDirection.LONG;
22
+ const directionToClose = findDirectionToClose(userPosition);
25
23
  const [newQuoteAssetReserve, _] = amm_1.calculateAmmReservesAfterSwap(market.amm, 'base', userPosition.baseAssetAmount.abs(), amm_1.getSwapDirection('base', directionToClose));
26
24
  switch (directionToClose) {
27
25
  case types_1.PositionDirection.SHORT:
@@ -106,3 +104,19 @@ function calculateEntryPrice(userPosition) {
106
104
  .abs();
107
105
  }
108
106
  exports.calculateEntryPrice = calculateEntryPrice;
107
+ function findDirectionToClose(userPosition) {
108
+ return userPosition.baseAssetAmount.gt(numericConstants_1.ZERO)
109
+ ? types_1.PositionDirection.SHORT
110
+ : types_1.PositionDirection.LONG;
111
+ }
112
+ exports.findDirectionToClose = findDirectionToClose;
113
+ function positionCurrentDirection(userPosition) {
114
+ return userPosition.baseAssetAmount.gte(numericConstants_1.ZERO)
115
+ ? types_1.PositionDirection.LONG
116
+ : types_1.PositionDirection.SHORT;
117
+ }
118
+ exports.positionCurrentDirection = positionCurrentDirection;
119
+ function isEmptyPosition(userPosition) {
120
+ return (userPosition.baseAssetAmount.eq(numericConstants_1.ZERO) && userPosition.openOrders.eq(numericConstants_1.ZERO));
121
+ }
122
+ exports.isEmptyPosition = isEmptyPosition;
@@ -45,4 +45,3 @@ export declare function calculateTradeAcquiredAmounts(direction: PositionDirecti
45
45
  * ]
46
46
  */
47
47
  export declare function calculateTargetPriceTrade(market: Market, targetPrice: BN, pct?: BN, outputAssetType?: AssetType): [PositionDirection, BN, BN, BN];
48
- //# sourceMappingURL=trade.d.ts.map
@@ -1,3 +1,2 @@
1
1
  /// <reference types="bn.js" />
2
2
  export declare const squareRootBN: (n: any, closeness?: import("bn.js")) => any;
3
- //# sourceMappingURL=utils.d.ts.map
@@ -33,4 +33,3 @@ export declare class MockUSDCFaucet {
33
33
  callback: (accountInfo: AccountInfo) => void;
34
34
  }): Promise<boolean>;
35
35
  }
36
- //# sourceMappingURL=mockUSDCFaucet.d.ts.map
@@ -0,0 +1,7 @@
1
+ /// <reference types="bn.js" />
2
+ import { OrderParams, OrderTriggerCondition, PositionDirection } from './types';
3
+ import { BN } from '@project-serum/anchor';
4
+ export declare function getLimitOrderParams(marketIndex: BN, direction: PositionDirection, baseAssetAmount: BN, price: BN, reduceOnly: boolean, discountToken?: boolean, referrer?: boolean): OrderParams;
5
+ export declare function getStopOrderParams(marketIndex: BN, direction: PositionDirection, baseAssetAmount: BN, triggerPrice: BN, triggerCondition: OrderTriggerCondition, reduceOnly: boolean, discountToken?: boolean, referrer?: boolean): OrderParams;
6
+ export declare function getStopLimitOrderParams(marketIndex: BN, direction: PositionDirection, baseAssetAmount: BN, price: BN, triggerPrice: BN, triggerCondition: OrderTriggerCondition, reduceOnly: boolean, discountToken?: boolean, referrer?: boolean): OrderParams;
7
+ export declare function getMarketOrderParams(marketIndex: BN, direction: PositionDirection, quoteAssetAmount: BN, baseAssetAmount: BN, reduceOnly: boolean, price?: BN, discountToken?: boolean, referrer?: boolean): OrderParams;
@@ -0,0 +1,88 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getMarketOrderParams = exports.getStopLimitOrderParams = exports.getStopOrderParams = exports.getLimitOrderParams = void 0;
4
+ const types_1 = require("./types");
5
+ const numericConstants_1 = require("./constants/numericConstants");
6
+ function getLimitOrderParams(marketIndex, direction, baseAssetAmount, price, reduceOnly, discountToken = false, referrer = false) {
7
+ return {
8
+ orderType: types_1.OrderType.LIMIT,
9
+ marketIndex,
10
+ direction,
11
+ quoteAssetAmount: numericConstants_1.ZERO,
12
+ baseAssetAmount,
13
+ price,
14
+ reduceOnly,
15
+ postOnly: false,
16
+ immediateOrCancel: false,
17
+ optionalAccounts: {
18
+ discountToken,
19
+ referrer,
20
+ },
21
+ triggerCondition: types_1.OrderTriggerCondition.ABOVE,
22
+ triggerPrice: numericConstants_1.ZERO,
23
+ };
24
+ }
25
+ exports.getLimitOrderParams = getLimitOrderParams;
26
+ function getStopOrderParams(marketIndex, direction, baseAssetAmount, triggerPrice, triggerCondition, reduceOnly, discountToken = false, referrer = false) {
27
+ return {
28
+ orderType: types_1.OrderType.STOP,
29
+ marketIndex,
30
+ direction,
31
+ quoteAssetAmount: numericConstants_1.ZERO,
32
+ baseAssetAmount,
33
+ price: numericConstants_1.ZERO,
34
+ reduceOnly,
35
+ postOnly: false,
36
+ immediateOrCancel: false,
37
+ optionalAccounts: {
38
+ discountToken,
39
+ referrer,
40
+ },
41
+ triggerCondition,
42
+ triggerPrice,
43
+ };
44
+ }
45
+ exports.getStopOrderParams = getStopOrderParams;
46
+ function getStopLimitOrderParams(marketIndex, direction, baseAssetAmount, price, triggerPrice, triggerCondition, reduceOnly, discountToken = false, referrer = false) {
47
+ return {
48
+ orderType: types_1.OrderType.STOP_LIMIT,
49
+ marketIndex,
50
+ direction,
51
+ quoteAssetAmount: numericConstants_1.ZERO,
52
+ baseAssetAmount,
53
+ price,
54
+ reduceOnly,
55
+ postOnly: false,
56
+ immediateOrCancel: false,
57
+ optionalAccounts: {
58
+ discountToken,
59
+ referrer,
60
+ },
61
+ triggerCondition,
62
+ triggerPrice,
63
+ };
64
+ }
65
+ exports.getStopLimitOrderParams = getStopLimitOrderParams;
66
+ function getMarketOrderParams(marketIndex, direction, quoteAssetAmount, baseAssetAmount, reduceOnly, price = numericConstants_1.ZERO, discountToken = false, referrer = false) {
67
+ if (baseAssetAmount.eq(numericConstants_1.ZERO) && quoteAssetAmount.eq(numericConstants_1.ZERO)) {
68
+ throw Error('baseAssetAmount or quoteAssetAmount must be zero');
69
+ }
70
+ return {
71
+ orderType: types_1.OrderType.MARKET,
72
+ marketIndex,
73
+ direction,
74
+ quoteAssetAmount,
75
+ baseAssetAmount,
76
+ price,
77
+ reduceOnly,
78
+ postOnly: false,
79
+ immediateOrCancel: false,
80
+ optionalAccounts: {
81
+ discountToken,
82
+ referrer,
83
+ },
84
+ triggerCondition: types_1.OrderTriggerCondition.ABOVE,
85
+ triggerPrice: numericConstants_1.ZERO,
86
+ };
87
+ }
88
+ exports.getMarketOrderParams = getMarketOrderParams;
@@ -0,0 +1,5 @@
1
+ import { Market, Order, UserAccount, UserPosition } from './types';
2
+ import BN from 'bn.js';
3
+ export declare function calculateNewStateAfterOrder(userAccount: UserAccount, userPosition: UserPosition, market: Market, order: Order): [UserAccount, UserPosition, Market] | null;
4
+ export declare function calculateAmountToTradeForLimit(market: Market, order: Order): BN;
5
+ export declare function calculateAmountToTradeForStopLimit(market: Market, order: Order): BN;
package/lib/orders.js ADDED
@@ -0,0 +1,136 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.calculateAmountToTradeForStopLimit = exports.calculateAmountToTradeForLimit = exports.calculateNewStateAfterOrder = void 0;
4
+ const types_1 = require("./types");
5
+ const market_1 = require("./math/market");
6
+ const numericConstants_1 = require("./constants/numericConstants");
7
+ const amm_1 = require("./math/amm");
8
+ const position_1 = require("./math/position");
9
+ function calculateNewStateAfterOrder(userAccount, userPosition, market, order) {
10
+ if (types_1.isVariant(order.status, 'init')) {
11
+ return null;
12
+ }
13
+ const baseAssetAmountToTrade = calculateAmountToTrade(market, order);
14
+ if (baseAssetAmountToTrade.lt(market.amm.minimumBaseAssetTradeSize)) {
15
+ return null;
16
+ }
17
+ const userAccountAfter = Object.assign({}, userAccount);
18
+ const userPositionAfter = Object.assign({}, userPosition);
19
+ const currentPositionDirection = position_1.positionCurrentDirection(userPosition);
20
+ const increasePosition = userPosition.baseAssetAmount.eq(numericConstants_1.ZERO) ||
21
+ isSameDirection(order.direction, currentPositionDirection);
22
+ if (increasePosition) {
23
+ const marketAfter = market_1.calculateNewMarketAfterTrade(baseAssetAmountToTrade, order.direction, market);
24
+ const { quoteAssetAmountSwapped, baseAssetAmountSwapped } = calculateAmountSwapped(market, marketAfter);
25
+ userPositionAfter.baseAssetAmount = userPositionAfter.baseAssetAmount.add(baseAssetAmountSwapped);
26
+ userPositionAfter.quoteAssetAmount = userPositionAfter.quoteAssetAmount.add(quoteAssetAmountSwapped);
27
+ return [userAccountAfter, userPositionAfter, marketAfter];
28
+ }
29
+ else {
30
+ const reversePosition = baseAssetAmountToTrade.gt(userPosition.baseAssetAmount.abs());
31
+ if (reversePosition) {
32
+ const intermediateMarket = market_1.calculateNewMarketAfterTrade(userPosition.baseAssetAmount, position_1.findDirectionToClose(userPosition), market);
33
+ const { quoteAssetAmountSwapped: baseAssetValue } = calculateAmountSwapped(market, intermediateMarket);
34
+ let pnl;
35
+ if (types_1.isVariant(currentPositionDirection, 'long')) {
36
+ pnl = baseAssetValue.sub(userPosition.quoteAssetAmount);
37
+ }
38
+ else {
39
+ pnl = userPosition.quoteAssetAmount.sub(baseAssetValue);
40
+ }
41
+ userAccountAfter.collateral = userAccountAfter.collateral.add(pnl);
42
+ const baseAssetAmountLeft = baseAssetAmountToTrade.sub(userPosition.baseAssetAmount.abs());
43
+ const marketAfter = market_1.calculateNewMarketAfterTrade(baseAssetAmountLeft, order.direction, intermediateMarket);
44
+ const { quoteAssetAmountSwapped, baseAssetAmountSwapped } = calculateAmountSwapped(intermediateMarket, marketAfter);
45
+ userPositionAfter.quoteAssetAmount = quoteAssetAmountSwapped;
46
+ userPositionAfter.baseAssetAmount = baseAssetAmountSwapped;
47
+ return [userAccountAfter, userPositionAfter, marketAfter];
48
+ }
49
+ else {
50
+ const marketAfter = market_1.calculateNewMarketAfterTrade(baseAssetAmountToTrade, order.direction, market);
51
+ const { quoteAssetAmountSwapped: baseAssetValue, baseAssetAmountSwapped, } = calculateAmountSwapped(market, marketAfter);
52
+ const costBasisRealized = userPosition.quoteAssetAmount
53
+ .mul(baseAssetAmountSwapped.abs())
54
+ .div(userPosition.baseAssetAmount.abs());
55
+ let pnl;
56
+ if (types_1.isVariant(currentPositionDirection, 'long')) {
57
+ pnl = baseAssetValue.sub(costBasisRealized);
58
+ }
59
+ else {
60
+ pnl = costBasisRealized.sub(baseAssetValue);
61
+ }
62
+ userAccountAfter.collateral = userAccountAfter.collateral.add(pnl);
63
+ userPositionAfter.baseAssetAmount = userPositionAfter.baseAssetAmount.add(baseAssetAmountSwapped);
64
+ userPositionAfter.quoteAssetAmount =
65
+ userPositionAfter.quoteAssetAmount.sub(costBasisRealized);
66
+ return [userAccountAfter, userPositionAfter, marketAfter];
67
+ }
68
+ }
69
+ }
70
+ exports.calculateNewStateAfterOrder = calculateNewStateAfterOrder;
71
+ function calculateAmountSwapped(marketBefore, marketAfter) {
72
+ return {
73
+ quoteAssetAmountSwapped: marketBefore.amm.quoteAssetReserve
74
+ .sub(marketAfter.amm.quoteAssetReserve)
75
+ .abs()
76
+ .mul(marketBefore.amm.pegMultiplier)
77
+ .div(numericConstants_1.PEG_PRECISION)
78
+ .div(numericConstants_1.AMM_TO_QUOTE_PRECISION_RATIO),
79
+ baseAssetAmountSwapped: marketBefore.amm.baseAssetReserve.sub(marketAfter.amm.baseAssetReserve),
80
+ };
81
+ }
82
+ function calculateAmountToTrade(market, order) {
83
+ if (types_1.isVariant(order.orderType, 'limit')) {
84
+ return calculateAmountToTradeForLimit(market, order);
85
+ }
86
+ else if (types_1.isVariant(order.orderType, 'stopLimit')) {
87
+ return calculateAmountToTradeForStopLimit(market, order);
88
+ }
89
+ else if (types_1.isVariant(order.orderType, 'market')) {
90
+ // should never be a market order queued
91
+ return numericConstants_1.ZERO;
92
+ }
93
+ else {
94
+ return calculateAmountToTradeForStop(market, order);
95
+ }
96
+ }
97
+ function calculateAmountToTradeForLimit(market, order) {
98
+ const [maxAmountToTrade, direction] = amm_1.calculateMaxBaseAssetAmountToTrade(market.amm, order.price);
99
+ // Check that directions are the same
100
+ const sameDirection = isSameDirection(direction, order.direction);
101
+ if (!sameDirection) {
102
+ return numericConstants_1.ZERO;
103
+ }
104
+ return maxAmountToTrade.gt(order.baseAssetAmount)
105
+ ? order.baseAssetAmount
106
+ : maxAmountToTrade;
107
+ }
108
+ exports.calculateAmountToTradeForLimit = calculateAmountToTradeForLimit;
109
+ function calculateAmountToTradeForStopLimit(market, order) {
110
+ if (order.baseAssetAmountFilled.eq(numericConstants_1.ZERO)) {
111
+ const baseAssetAmount = calculateAmountToTradeForStop(market, order);
112
+ if (baseAssetAmount.eq(numericConstants_1.ZERO)) {
113
+ return numericConstants_1.ZERO;
114
+ }
115
+ }
116
+ return calculateAmountToTradeForLimit(market, order);
117
+ }
118
+ exports.calculateAmountToTradeForStopLimit = calculateAmountToTradeForStopLimit;
119
+ function isSameDirection(firstDirection, secondDirection) {
120
+ return ((types_1.isVariant(firstDirection, 'long') && types_1.isVariant(secondDirection, 'long')) ||
121
+ (types_1.isVariant(firstDirection, 'short') && types_1.isVariant(secondDirection, 'short')));
122
+ }
123
+ function calculateAmountToTradeForStop(market, order) {
124
+ return isTriggerConditionSatisfied(market, order)
125
+ ? order.baseAssetAmount
126
+ : numericConstants_1.ZERO;
127
+ }
128
+ function isTriggerConditionSatisfied(market, order) {
129
+ const markPrice = market_1.calculateMarkPrice(market);
130
+ if (types_1.isVariant(order.triggerCondition, 'above')) {
131
+ return markPrice.gt(order.triggerPrice);
132
+ }
133
+ else {
134
+ return markPrice.lt(order.triggerPrice);
135
+ }
136
+ }
@@ -5,4 +5,3 @@ export declare class PythClient {
5
5
  constructor(connection: Connection);
6
6
  getPriceData(pricePublicKey: PublicKey): Promise<PriceData>;
7
7
  }
8
- //# sourceMappingURL=pythClient.d.ts.map
@@ -6,4 +6,3 @@ export declare class DefaultTxSender implements TxSender {
6
6
  constructor(provider: Provider);
7
7
  send(tx: Transaction, additionalSigners?: Array<Signer>, opts?: ConfirmOptions): Promise<TransactionSignature>;
8
8
  }
9
- //# sourceMappingURL=defaultTxSender.d.ts.map
package/lib/tx/types.d.ts CHANGED
@@ -2,4 +2,3 @@ import { ConfirmOptions, Signer, Transaction, TransactionSignature } from '@sola
2
2
  export interface TxSender {
3
3
  send(tx: Transaction, additionalSigners?: Array<Signer>, opts?: ConfirmOptions): Promise<TransactionSignature>;
4
4
  }
5
- //# sourceMappingURL=types.d.ts.map
package/lib/tx/utils.d.ts CHANGED
@@ -1,3 +1,2 @@
1
1
  import { Transaction, TransactionInstruction } from '@solana/web3.js';
2
2
  export declare function wrapInTx(instruction: TransactionInstruction): Transaction;
3
- //# sourceMappingURL=utils.d.ts.map