@gainsnetwork/sdk 0.0.0-v10.rc11 → 0.0.0-v10.rc15

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.
@@ -0,0 +1,46 @@
1
+ /**
2
+ * @dev Holding fees calculation utilities for v10+ markets
3
+ * @dev Combines funding fees and borrowing v2 fees
4
+ */
5
+ import { FundingFeeParams, PairFundingFeeData, PairOiAfterV10 } from "../../trade/fees/fundingFees/types";
6
+ import { BorrowingFeeParams, PairBorrowingFeeData } from "../../trade/fees/borrowingV2/types";
7
+ export type HoldingFeeRates = {
8
+ longHourlyRate: number;
9
+ shortHourlyRate: number;
10
+ fundingFeeLongHourlyRate: number;
11
+ fundingFeeShortHourlyRate: number;
12
+ borrowingFeeHourlyRate: number;
13
+ currentFundingRatePerSecondP: number;
14
+ currentBorrowingRatePerSecondP: number;
15
+ };
16
+ export type GetPairHoldingFeeRatesInput = {
17
+ fundingParams: FundingFeeParams;
18
+ fundingData: PairFundingFeeData;
19
+ pairOiToken: PairOiAfterV10;
20
+ netExposureToken: number;
21
+ netExposureUsd: number;
22
+ borrowingParams: BorrowingFeeParams | null;
23
+ borrowingData: PairBorrowingFeeData | null;
24
+ currentPairPrice: number;
25
+ currentTimestamp: number;
26
+ };
27
+ /**
28
+ * @dev Calculates current holding fee rates per hour for display
29
+ * @param input Input parameters for calculation
30
+ * @returns Holding fee rates per hour with breakdown
31
+ */
32
+ export declare const getPairHoldingFeeRates: (input: GetPairHoldingFeeRatesInput) => HoldingFeeRates;
33
+ /**
34
+ * @dev Converts a per-second rate to annual percentage rate (APR)
35
+ * @param ratePerSecond Rate per second
36
+ * @returns Annual percentage rate
37
+ */
38
+ export declare const convertRatePerSecondToAPR: (ratePerSecond: number) => number;
39
+ /**
40
+ * @dev Formats a holding fee rate for display
41
+ * @param rate Hourly rate (can be negative)
42
+ * @param decimals Number of decimal places
43
+ * @returns Formatted string with sign
44
+ */
45
+ export declare const formatHoldingFeeRate: (rate: number, decimals?: number) => string;
46
+ export * as HoldingFees from "./types";
@@ -0,0 +1,105 @@
1
+ "use strict";
2
+ /**
3
+ * @dev Holding fees calculation utilities for v10+ markets
4
+ * @dev Combines funding fees and borrowing v2 fees
5
+ */
6
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
+ if (k2 === undefined) k2 = k;
8
+ var desc = Object.getOwnPropertyDescriptor(m, k);
9
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
10
+ desc = { enumerable: true, get: function() { return m[k]; } };
11
+ }
12
+ Object.defineProperty(o, k2, desc);
13
+ }) : (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ o[k2] = m[k];
16
+ }));
17
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
18
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
19
+ }) : function(o, v) {
20
+ o["default"] = v;
21
+ });
22
+ var __importStar = (this && this.__importStar) || function (mod) {
23
+ if (mod && mod.__esModule) return mod;
24
+ var result = {};
25
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
26
+ __setModuleDefault(result, mod);
27
+ return result;
28
+ };
29
+ Object.defineProperty(exports, "__esModule", { value: true });
30
+ exports.HoldingFees = exports.formatHoldingFeeRate = exports.convertRatePerSecondToAPR = exports.getPairHoldingFeeRates = void 0;
31
+ const fundingFees_1 = require("../../trade/fees/fundingFees");
32
+ const SECONDS_PER_HOUR = 3600;
33
+ const SECONDS_PER_YEAR = 365 * 24 * 60 * 60;
34
+ const PERCENTAGE_PRECISION = 100;
35
+ /**
36
+ * @dev Calculates current holding fee rates per hour for display
37
+ * @param input Input parameters for calculation
38
+ * @returns Holding fee rates per hour with breakdown
39
+ */
40
+ const getPairHoldingFeeRates = (input) => {
41
+ const { fundingParams, fundingData, pairOiToken, netExposureToken, netExposureUsd, borrowingParams, borrowingData, currentPairPrice, currentTimestamp, } = input;
42
+ // Calculate funding fee rates
43
+ let fundingFeeLongHourlyRate = 0;
44
+ let fundingFeeShortHourlyRate = 0;
45
+ let currentFundingRatePerSecondP = 0;
46
+ if (fundingParams.fundingFeesEnabled) {
47
+ // Get current funding rate
48
+ const pendingFunding = (0, fundingFees_1.getPairPendingAccFundingFees)(fundingParams, fundingData, currentPairPrice, pairOiToken, netExposureToken, netExposureUsd, currentTimestamp);
49
+ currentFundingRatePerSecondP = pendingFunding.currentFundingRatePerSecondP;
50
+ // Get APR multipliers
51
+ const { longAprMultiplier, shortAprMultiplier } = (0, fundingFees_1.getLongShortAprMultiplier)(currentFundingRatePerSecondP, pairOiToken.oiLongToken, pairOiToken.oiShortToken, fundingParams.aprMultiplierEnabled);
52
+ // Calculate hourly rates
53
+ // Funding rate * seconds per hour * current price * APR multiplier / 100
54
+ const baseHourlyRate = (currentFundingRatePerSecondP * SECONDS_PER_HOUR * currentPairPrice) /
55
+ PERCENTAGE_PRECISION;
56
+ // Long side pays when rate is positive, earns when negative
57
+ fundingFeeLongHourlyRate = baseHourlyRate * longAprMultiplier;
58
+ // Short side is opposite
59
+ fundingFeeShortHourlyRate = -baseHourlyRate * shortAprMultiplier;
60
+ }
61
+ // Calculate borrowing v2 rates
62
+ let borrowingFeeHourlyRate = 0;
63
+ let currentBorrowingRatePerSecondP = 0;
64
+ if (borrowingParams && borrowingData) {
65
+ currentBorrowingRatePerSecondP = borrowingParams.borrowingRatePerSecondP;
66
+ // Borrowing rate * seconds per hour * current price / 100
67
+ borrowingFeeHourlyRate =
68
+ (currentBorrowingRatePerSecondP * SECONDS_PER_HOUR * currentPairPrice) /
69
+ PERCENTAGE_PRECISION;
70
+ }
71
+ // Total holding fees (funding can be negative/positive, borrowing always positive cost)
72
+ const longHourlyRate = fundingFeeLongHourlyRate + borrowingFeeHourlyRate;
73
+ const shortHourlyRate = fundingFeeShortHourlyRate + borrowingFeeHourlyRate;
74
+ return {
75
+ longHourlyRate,
76
+ shortHourlyRate,
77
+ fundingFeeLongHourlyRate,
78
+ fundingFeeShortHourlyRate,
79
+ borrowingFeeHourlyRate,
80
+ currentFundingRatePerSecondP,
81
+ currentBorrowingRatePerSecondP,
82
+ };
83
+ };
84
+ exports.getPairHoldingFeeRates = getPairHoldingFeeRates;
85
+ /**
86
+ * @dev Converts a per-second rate to annual percentage rate (APR)
87
+ * @param ratePerSecond Rate per second
88
+ * @returns Annual percentage rate
89
+ */
90
+ const convertRatePerSecondToAPR = (ratePerSecond) => {
91
+ return ratePerSecond * SECONDS_PER_YEAR * PERCENTAGE_PRECISION;
92
+ };
93
+ exports.convertRatePerSecondToAPR = convertRatePerSecondToAPR;
94
+ /**
95
+ * @dev Formats a holding fee rate for display
96
+ * @param rate Hourly rate (can be negative)
97
+ * @param decimals Number of decimal places
98
+ * @returns Formatted string with sign
99
+ */
100
+ const formatHoldingFeeRate = (rate, decimals = 4) => {
101
+ const sign = rate > 0 ? "+" : "";
102
+ return `${sign}${rate.toFixed(decimals)}%`;
103
+ };
104
+ exports.formatHoldingFeeRate = formatHoldingFeeRate;
105
+ exports.HoldingFees = __importStar(require("./types"));
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @dev Type definitions for holding fees (funding + borrowing v2)
3
+ */
4
+ export interface HoldingFeeRates {
5
+ longHourlyRate: number;
6
+ shortHourlyRate: number;
7
+ fundingFeeLongHourlyRate: number;
8
+ fundingFeeShortHourlyRate: number;
9
+ borrowingFeeHourlyRate: number;
10
+ currentFundingRatePerSecondP: number;
11
+ currentBorrowingRatePerSecondP: number;
12
+ }
13
+ export interface GetPairHoldingFeeRatesInput {
14
+ fundingParams: import("../../trade/fees/fundingFees/types").FundingFeeParams;
15
+ fundingData: import("../../trade/fees/fundingFees/types").PairFundingFeeData;
16
+ pairOiToken: import("../../trade/fees/fundingFees/types").PairOiAfterV10;
17
+ netExposureToken: number;
18
+ netExposureUsd: number;
19
+ borrowingParams: import("../../trade/fees/borrowingV2/types").BorrowingFeeParams | null;
20
+ borrowingData: import("../../trade/fees/borrowingV2/types").PairBorrowingFeeData | null;
21
+ currentPairPrice: number;
22
+ currentTimestamp: number;
23
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * @dev Type definitions for holding fees (funding + borrowing v2)
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -6,3 +6,4 @@ export * from "./commodities";
6
6
  export * from "./oi";
7
7
  export * from "./collateral";
8
8
  export * from "./price";
9
+ export * from "./holdingFees";
@@ -22,3 +22,4 @@ __exportStar(require("./commodities"), exports);
22
22
  __exportStar(require("./oi"), exports);
23
23
  __exportStar(require("./collateral"), exports);
24
24
  __exportStar(require("./price"), exports);
25
+ __exportStar(require("./holdingFees"), exports);
@@ -7,10 +7,9 @@ import { UnifiedPairOi, ComputedOi } from "./types";
7
7
  /**
8
8
  * @dev Converts pre-v10 OI from contract format
9
9
  * @param contractOi Contract OpenInterest struct from BorrowingFeesStorage
10
- * @param precision Collateral precision for conversion
11
10
  * @returns Normalized OI with long/short values
12
11
  */
13
- export declare const convertBeforeV10Collateral: (contractOi: IBorrowingFees.OpenInterestStructOutput, precision: number) => {
12
+ export declare const convertBeforeV10Collateral: (contractOi: IBorrowingFees.OpenInterestStructOutput) => {
14
13
  long: number;
15
14
  short: number;
16
15
  };
@@ -8,13 +8,12 @@ exports.computeOiValues = exports.convertPairOiArray = exports.convertPairOi = e
8
8
  /**
9
9
  * @dev Converts pre-v10 OI from contract format
10
10
  * @param contractOi Contract OpenInterest struct from BorrowingFeesStorage
11
- * @param precision Collateral precision for conversion
12
11
  * @returns Normalized OI with long/short values
13
12
  */
14
- const convertBeforeV10Collateral = (contractOi, precision) => {
13
+ const convertBeforeV10Collateral = (contractOi) => {
15
14
  return {
16
- long: Number(contractOi.long) / precision,
17
- short: Number(contractOi.short) / precision,
15
+ long: Number(contractOi.long) / 1e10,
16
+ short: Number(contractOi.short) / 1e10,
18
17
  };
19
18
  };
20
19
  exports.convertBeforeV10Collateral = convertBeforeV10Collateral;
@@ -54,8 +53,8 @@ exports.convertTokenOi = convertTokenOi;
54
53
  */
55
54
  const convertPairOi = (beforeV10, afterV10Collateral, afterV10Token, collateralPrecision) => {
56
55
  return {
57
- maxCollateral: Number(beforeV10.max) / collateralPrecision,
58
- beforeV10Collateral: (0, exports.convertBeforeV10Collateral)(beforeV10, collateralPrecision),
56
+ maxCollateral: Number(beforeV10.max) / 1e10,
57
+ beforeV10Collateral: (0, exports.convertBeforeV10Collateral)(beforeV10),
59
58
  collateral: (0, exports.convertCollateralOi)(afterV10Collateral, collateralPrecision),
60
59
  token: (0, exports.convertTokenOi)(afterV10Token),
61
60
  };
@@ -2,9 +2,48 @@
2
2
  * @dev Main export file for OI module
3
3
  * @dev Provides unified Open Interest management functionality
4
4
  */
5
- export { UnifiedPairOi, GroupOi, OiUsageMetadata, ComputedOi } from "./types";
5
+ import { GenericPairOiContext } from "./types";
6
+ export declare const getPairTotalOisCollateral: (pairIndex: number, context: GenericPairOiContext) => {
7
+ long: number;
8
+ short: number;
9
+ };
10
+ /**
11
+ * @dev Returns pair total dynamic open interest (before v10 + after v10) in collateral tokens
12
+ * @param pairIndex index of pair
13
+ * @param context contains UnifiedPairOi array and current pair price
14
+ * @returns dynamic OI for long and short sides in collateral precision
15
+ */
16
+ export declare const getPairTotalOisDynamicCollateral: (pairIndex: number, context: GenericPairOiContext & {
17
+ currentPairPrice: number;
18
+ }) => {
19
+ long: number;
20
+ short: number;
21
+ };
22
+ /**
23
+ * @dev Returns pair total dynamic open interest (before v10 + after v10) in collateral tokens on one side only
24
+ * @param pairIndex index of pair
25
+ * @param long true if long, false if short
26
+ * @param context contains UnifiedPairOi array and current pair price
27
+ * @returns dynamic OI for the specified side in collateral precision
28
+ */
29
+ export declare const getPairTotalOiDynamicCollateral: (pairIndex: number, long: boolean, context: GenericPairOiContext & {
30
+ currentPairPrice: number;
31
+ }) => number;
32
+ /**
33
+ * @dev Returns pair open interest skew (v10 only) in tokens
34
+ * @param pairIndex index of pair
35
+ * @param context contains UnifiedPairOi array
36
+ * @returns skew in token amount (positive = more longs, negative = more shorts)
37
+ */
38
+ export declare const getPairV10OiTokenSkewCollateral: (pairIndex: number, context: GenericPairOiContext) => number;
39
+ /**
40
+ * @dev Returns pair dynamic skew (v10 only) in collateral tokens
41
+ * @param pairIndex index of pair
42
+ * @param context contains UnifiedPairOi array and current pair price
43
+ * @returns dynamic skew in collateral precision
44
+ */
45
+ export declare const getPairV10OiDynamicSkewCollateral: (pairIndex: number, context: GenericPairOiContext & {
46
+ currentPairPrice: number;
47
+ }) => number;
48
+ export { UnifiedPairOi, GroupOi, ComputedOi } from "./types";
6
49
  export { convertBeforeV10Collateral, convertCollateralOi, convertTokenOi, convertPairOi, convertPairOiArray, computeOiValues, } from "./converter";
7
- export { fetchPairOi, fetchMultiplePairOi, createOiContext, fetchOiForUseCase, } from "./fetcher";
8
- export { withinMaxPairOi, calculateDynamicOi, getRemainingOiCapacity, withinMaxGroupOiDynamic, getGroupDynamicOi, validateOiLimits, } from "./validation";
9
- import { OiUsageMetadata } from "./types";
10
- export declare const OI_USAGE: OiUsageMetadata;
@@ -4,7 +4,69 @@
4
4
  * @dev Provides unified Open Interest management functionality
5
5
  */
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.OI_USAGE = exports.validateOiLimits = exports.getGroupDynamicOi = exports.withinMaxGroupOiDynamic = exports.getRemainingOiCapacity = exports.calculateDynamicOi = exports.withinMaxPairOi = exports.fetchOiForUseCase = exports.createOiContext = exports.fetchMultiplePairOi = exports.fetchPairOi = exports.computeOiValues = exports.convertPairOiArray = exports.convertPairOi = exports.convertTokenOi = exports.convertCollateralOi = exports.convertBeforeV10Collateral = void 0;
7
+ exports.computeOiValues = exports.convertPairOiArray = exports.convertPairOi = exports.convertTokenOi = exports.convertCollateralOi = exports.convertBeforeV10Collateral = exports.getPairV10OiDynamicSkewCollateral = exports.getPairV10OiTokenSkewCollateral = exports.getPairTotalOiDynamicCollateral = exports.getPairTotalOisDynamicCollateral = exports.getPairTotalOisCollateral = void 0;
8
+ const getPairTotalOisCollateral = (pairIndex, context) => {
9
+ return {
10
+ long: context.pairOis[pairIndex].beforeV10Collateral.long +
11
+ context.pairOis[pairIndex].collateral.long,
12
+ short: context.pairOis[pairIndex].beforeV10Collateral.short +
13
+ context.pairOis[pairIndex].collateral.short,
14
+ };
15
+ };
16
+ exports.getPairTotalOisCollateral = getPairTotalOisCollateral;
17
+ /**
18
+ * @dev Returns pair total dynamic open interest (before v10 + after v10) in collateral tokens
19
+ * @param pairIndex index of pair
20
+ * @param context contains UnifiedPairOi array and current pair price
21
+ * @returns dynamic OI for long and short sides in collateral precision
22
+ */
23
+ const getPairTotalOisDynamicCollateral = (pairIndex, context) => {
24
+ const pairOi = context.pairOis[pairIndex];
25
+ // We have to use the initial collateral OIs for pre-v10 trades because we don't have OIs in token amount
26
+ const oiLongCollateralDynamicAfterV10 = pairOi.beforeV10Collateral.long +
27
+ pairOi.token.long * context.currentPairPrice;
28
+ const oiShortCollateralDynamicAfterV10 = pairOi.beforeV10Collateral.short +
29
+ pairOi.token.short * context.currentPairPrice;
30
+ return {
31
+ long: oiLongCollateralDynamicAfterV10,
32
+ short: oiShortCollateralDynamicAfterV10,
33
+ };
34
+ };
35
+ exports.getPairTotalOisDynamicCollateral = getPairTotalOisDynamicCollateral;
36
+ /**
37
+ * @dev Returns pair total dynamic open interest (before v10 + after v10) in collateral tokens on one side only
38
+ * @param pairIndex index of pair
39
+ * @param long true if long, false if short
40
+ * @param context contains UnifiedPairOi array and current pair price
41
+ * @returns dynamic OI for the specified side in collateral precision
42
+ */
43
+ const getPairTotalOiDynamicCollateral = (pairIndex, long, context) => {
44
+ const dynamicOis = (0, exports.getPairTotalOisDynamicCollateral)(pairIndex, context);
45
+ return long ? dynamicOis.long : dynamicOis.short;
46
+ };
47
+ exports.getPairTotalOiDynamicCollateral = getPairTotalOiDynamicCollateral;
48
+ /**
49
+ * @dev Returns pair open interest skew (v10 only) in tokens
50
+ * @param pairIndex index of pair
51
+ * @param context contains UnifiedPairOi array
52
+ * @returns skew in token amount (positive = more longs, negative = more shorts)
53
+ */
54
+ const getPairV10OiTokenSkewCollateral = (pairIndex, context) => {
55
+ const pairOi = context.pairOis[pairIndex];
56
+ return pairOi.token.long - pairOi.token.short;
57
+ };
58
+ exports.getPairV10OiTokenSkewCollateral = getPairV10OiTokenSkewCollateral;
59
+ /**
60
+ * @dev Returns pair dynamic skew (v10 only) in collateral tokens
61
+ * @param pairIndex index of pair
62
+ * @param context contains UnifiedPairOi array and current pair price
63
+ * @returns dynamic skew in collateral precision
64
+ */
65
+ const getPairV10OiDynamicSkewCollateral = (pairIndex, context) => {
66
+ return ((0, exports.getPairV10OiTokenSkewCollateral)(pairIndex, context) *
67
+ context.currentPairPrice);
68
+ };
69
+ exports.getPairV10OiDynamicSkewCollateral = getPairV10OiDynamicSkewCollateral;
8
70
  // Converters
9
71
  var converter_1 = require("./converter");
10
72
  Object.defineProperty(exports, "convertBeforeV10Collateral", { enumerable: true, get: function () { return converter_1.convertBeforeV10Collateral; } });
@@ -13,25 +75,3 @@ Object.defineProperty(exports, "convertTokenOi", { enumerable: true, get: functi
13
75
  Object.defineProperty(exports, "convertPairOi", { enumerable: true, get: function () { return converter_1.convertPairOi; } });
14
76
  Object.defineProperty(exports, "convertPairOiArray", { enumerable: true, get: function () { return converter_1.convertPairOiArray; } });
15
77
  Object.defineProperty(exports, "computeOiValues", { enumerable: true, get: function () { return converter_1.computeOiValues; } });
16
- // Fetchers
17
- var fetcher_1 = require("./fetcher");
18
- Object.defineProperty(exports, "fetchPairOi", { enumerable: true, get: function () { return fetcher_1.fetchPairOi; } });
19
- Object.defineProperty(exports, "fetchMultiplePairOi", { enumerable: true, get: function () { return fetcher_1.fetchMultiplePairOi; } });
20
- Object.defineProperty(exports, "createOiContext", { enumerable: true, get: function () { return fetcher_1.createOiContext; } });
21
- Object.defineProperty(exports, "fetchOiForUseCase", { enumerable: true, get: function () { return fetcher_1.fetchOiForUseCase; } });
22
- // Validation
23
- var validation_1 = require("./validation");
24
- Object.defineProperty(exports, "withinMaxPairOi", { enumerable: true, get: function () { return validation_1.withinMaxPairOi; } });
25
- Object.defineProperty(exports, "calculateDynamicOi", { enumerable: true, get: function () { return validation_1.calculateDynamicOi; } });
26
- Object.defineProperty(exports, "getRemainingOiCapacity", { enumerable: true, get: function () { return validation_1.getRemainingOiCapacity; } });
27
- Object.defineProperty(exports, "withinMaxGroupOiDynamic", { enumerable: true, get: function () { return validation_1.withinMaxGroupOiDynamic; } });
28
- Object.defineProperty(exports, "getGroupDynamicOi", { enumerable: true, get: function () { return validation_1.getGroupDynamicOi; } });
29
- Object.defineProperty(exports, "validateOiLimits", { enumerable: true, get: function () { return validation_1.validateOiLimits; } });
30
- exports.OI_USAGE = {
31
- borrowingV1: ["beforeV10Collateral", "token"],
32
- fundingFees: ["token"],
33
- skewImpact: ["token"],
34
- maxPairOi: ["beforeV10Collateral", "token"],
35
- maxGroupOi: ["beforeV10Collateral", "token"],
36
- maxSkew: ["token"], // V10+ only: uses token OI
37
- };
@@ -37,23 +37,14 @@ export interface UnifiedPairOi {
37
37
  short: number;
38
38
  };
39
39
  }
40
+ export type GenericPairOiContext = {
41
+ pairOis: UnifiedPairOi[];
42
+ };
40
43
  /**
41
44
  * @dev Group OI remains unchanged - only used by borrowing v1
42
45
  * @dev Re-export existing type for consistency
43
46
  */
44
47
  export { OpenInterest as GroupOi } from "../../trade/types";
45
- /**
46
- * @dev Metadata describing which OI systems are used by different features
47
- * @dev Helps consumers understand OI usage patterns
48
- */
49
- export interface OiUsageMetadata {
50
- borrowingV1: Array<"beforeV10Collateral" | "token">;
51
- fundingFees: Array<"token">;
52
- skewImpact: Array<"token">;
53
- maxPairOi: Array<"beforeV10Collateral" | "token">;
54
- maxGroupOi: Array<"beforeV10Collateral" | "token">;
55
- maxSkew: Array<"token">;
56
- }
57
48
  /**
58
49
  * @dev Helper type for computed OI values
59
50
  */
@@ -0,0 +1,46 @@
1
+ /**
2
+ * @dev Holding fees calculation utilities for v10+ markets
3
+ * @dev Combines funding fees and borrowing v2 fees
4
+ */
5
+ import { FundingFeeParams, PairFundingFeeData, PairOiAfterV10 } from "../fundingFees/types";
6
+ import { BorrowingFeeParams, PairBorrowingFeeData } from "../borrowingV2/types";
7
+ export type HoldingFeeRates = {
8
+ longHourlyRate: number;
9
+ shortHourlyRate: number;
10
+ fundingFeeLongHourlyRate: number;
11
+ fundingFeeShortHourlyRate: number;
12
+ borrowingFeeHourlyRate: number;
13
+ currentFundingRatePerSecondP: number;
14
+ currentBorrowingRatePerSecondP: number;
15
+ };
16
+ export type GetPairHoldingFeeRatesInput = {
17
+ fundingParams: FundingFeeParams;
18
+ fundingData: PairFundingFeeData;
19
+ pairOiToken: PairOiAfterV10;
20
+ netExposureToken: number;
21
+ netExposureUsd: number;
22
+ borrowingParams: BorrowingFeeParams | null;
23
+ borrowingData: PairBorrowingFeeData | null;
24
+ currentPairPrice: number;
25
+ currentTimestamp: number;
26
+ };
27
+ /**
28
+ * @dev Calculates current holding fee rates per hour for display
29
+ * @param input Input parameters for calculation
30
+ * @returns Holding fee rates per hour with breakdown
31
+ */
32
+ export declare const getPairHoldingFeeRates: (input: GetPairHoldingFeeRatesInput) => HoldingFeeRates;
33
+ /**
34
+ * @dev Converts a per-second rate to annual percentage rate (APR)
35
+ * @param ratePerSecond Rate per second
36
+ * @returns Annual percentage rate
37
+ */
38
+ export declare const convertRatePerSecondToAPR: (ratePerSecond: number) => number;
39
+ /**
40
+ * @dev Formats a holding fee rate for display
41
+ * @param rate Hourly rate (can be negative)
42
+ * @param decimals Number of decimal places
43
+ * @returns Formatted string with sign
44
+ */
45
+ export declare const formatHoldingFeeRate: (rate: number, decimals?: number) => string;
46
+ export * as HoldingFees from "./types";
@@ -0,0 +1,105 @@
1
+ "use strict";
2
+ /**
3
+ * @dev Holding fees calculation utilities for v10+ markets
4
+ * @dev Combines funding fees and borrowing v2 fees
5
+ */
6
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
7
+ if (k2 === undefined) k2 = k;
8
+ var desc = Object.getOwnPropertyDescriptor(m, k);
9
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
10
+ desc = { enumerable: true, get: function() { return m[k]; } };
11
+ }
12
+ Object.defineProperty(o, k2, desc);
13
+ }) : (function(o, m, k, k2) {
14
+ if (k2 === undefined) k2 = k;
15
+ o[k2] = m[k];
16
+ }));
17
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
18
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
19
+ }) : function(o, v) {
20
+ o["default"] = v;
21
+ });
22
+ var __importStar = (this && this.__importStar) || function (mod) {
23
+ if (mod && mod.__esModule) return mod;
24
+ var result = {};
25
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
26
+ __setModuleDefault(result, mod);
27
+ return result;
28
+ };
29
+ Object.defineProperty(exports, "__esModule", { value: true });
30
+ exports.HoldingFees = exports.formatHoldingFeeRate = exports.convertRatePerSecondToAPR = exports.getPairHoldingFeeRates = void 0;
31
+ const fundingFees_1 = require("../fundingFees");
32
+ const SECONDS_PER_HOUR = 3600;
33
+ const SECONDS_PER_YEAR = 365 * 24 * 60 * 60;
34
+ const PERCENTAGE_PRECISION = 100;
35
+ /**
36
+ * @dev Calculates current holding fee rates per hour for display
37
+ * @param input Input parameters for calculation
38
+ * @returns Holding fee rates per hour with breakdown
39
+ */
40
+ const getPairHoldingFeeRates = (input) => {
41
+ const { fundingParams, fundingData, pairOiToken, netExposureToken, netExposureUsd, borrowingParams, borrowingData, currentPairPrice, currentTimestamp, } = input;
42
+ // Calculate funding fee rates
43
+ let fundingFeeLongHourlyRate = 0;
44
+ let fundingFeeShortHourlyRate = 0;
45
+ let currentFundingRatePerSecondP = 0;
46
+ if (fundingParams.fundingFeesEnabled) {
47
+ // Get current funding rate
48
+ const pendingFunding = (0, fundingFees_1.getPairPendingAccFundingFees)(fundingParams, fundingData, currentPairPrice, pairOiToken, netExposureToken, netExposureUsd, currentTimestamp);
49
+ currentFundingRatePerSecondP = pendingFunding.currentFundingRatePerSecondP;
50
+ // Get APR multipliers
51
+ const { longAprMultiplier, shortAprMultiplier } = (0, fundingFees_1.getLongShortAprMultiplier)(currentFundingRatePerSecondP, pairOiToken.oiLongToken, pairOiToken.oiShortToken, fundingParams.aprMultiplierEnabled);
52
+ // Calculate hourly rates
53
+ // Funding rate * seconds per hour * current price * APR multiplier / 100
54
+ const baseHourlyRate = (currentFundingRatePerSecondP * SECONDS_PER_HOUR * currentPairPrice) /
55
+ PERCENTAGE_PRECISION;
56
+ // Long side pays when rate is positive, earns when negative
57
+ fundingFeeLongHourlyRate = baseHourlyRate * longAprMultiplier;
58
+ // Short side is opposite
59
+ fundingFeeShortHourlyRate = -baseHourlyRate * shortAprMultiplier;
60
+ }
61
+ // Calculate borrowing v2 rates
62
+ let borrowingFeeHourlyRate = 0;
63
+ let currentBorrowingRatePerSecondP = 0;
64
+ if (borrowingParams && borrowingData) {
65
+ currentBorrowingRatePerSecondP = borrowingParams.borrowingRatePerSecondP;
66
+ // Borrowing rate * seconds per hour * current price / 100
67
+ borrowingFeeHourlyRate =
68
+ (currentBorrowingRatePerSecondP * SECONDS_PER_HOUR * currentPairPrice) /
69
+ PERCENTAGE_PRECISION;
70
+ }
71
+ // Total holding fees (funding can be negative/positive, borrowing always positive cost)
72
+ const longHourlyRate = fundingFeeLongHourlyRate + borrowingFeeHourlyRate;
73
+ const shortHourlyRate = fundingFeeShortHourlyRate + borrowingFeeHourlyRate;
74
+ return {
75
+ longHourlyRate,
76
+ shortHourlyRate,
77
+ fundingFeeLongHourlyRate,
78
+ fundingFeeShortHourlyRate,
79
+ borrowingFeeHourlyRate,
80
+ currentFundingRatePerSecondP,
81
+ currentBorrowingRatePerSecondP,
82
+ };
83
+ };
84
+ exports.getPairHoldingFeeRates = getPairHoldingFeeRates;
85
+ /**
86
+ * @dev Converts a per-second rate to annual percentage rate (APR)
87
+ * @param ratePerSecond Rate per second
88
+ * @returns Annual percentage rate
89
+ */
90
+ const convertRatePerSecondToAPR = (ratePerSecond) => {
91
+ return ratePerSecond * SECONDS_PER_YEAR * PERCENTAGE_PRECISION;
92
+ };
93
+ exports.convertRatePerSecondToAPR = convertRatePerSecondToAPR;
94
+ /**
95
+ * @dev Formats a holding fee rate for display
96
+ * @param rate Hourly rate (can be negative)
97
+ * @param decimals Number of decimal places
98
+ * @returns Formatted string with sign
99
+ */
100
+ const formatHoldingFeeRate = (rate, decimals = 4) => {
101
+ const sign = rate > 0 ? "+" : "";
102
+ return `${sign}${rate.toFixed(decimals)}%`;
103
+ };
104
+ exports.formatHoldingFeeRate = formatHoldingFeeRate;
105
+ exports.HoldingFees = __importStar(require("./types"));
@@ -0,0 +1,23 @@
1
+ /**
2
+ * @dev Type definitions for holding fees (funding + borrowing v2)
3
+ */
4
+ export interface HoldingFeeRates {
5
+ longHourlyRate: number;
6
+ shortHourlyRate: number;
7
+ fundingFeeLongHourlyRate: number;
8
+ fundingFeeShortHourlyRate: number;
9
+ borrowingFeeHourlyRate: number;
10
+ currentFundingRatePerSecondP: number;
11
+ currentBorrowingRatePerSecondP: number;
12
+ }
13
+ export interface GetPairHoldingFeeRatesInput {
14
+ fundingParams: import("../fundingFees/types").FundingFeeParams;
15
+ fundingData: import("../fundingFees/types").PairFundingFeeData;
16
+ pairOiToken: import("../fundingFees/types").PairOiAfterV10;
17
+ netExposureToken: number;
18
+ netExposureUsd: number;
19
+ borrowingParams: import("../borrowingV2/types").BorrowingFeeParams | null;
20
+ borrowingData: import("../borrowingV2/types").PairBorrowingFeeData | null;
21
+ currentPairPrice: number;
22
+ currentTimestamp: number;
23
+ }
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ /**
3
+ * @dev Type definitions for holding fees (funding + borrowing v2)
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +1,7 @@
1
1
  export * from "./borrowing";
2
2
  export * from "./tiers";
3
3
  export * from "./trading";
4
+ export * from "../../markets/holdingFees";
4
5
  export { convertTradeFeesData, convertTradeFeesDataArray, convertUiRealizedPnlData, convertUiRealizedPnlDataArray, encodeTradeFeesData, encodeUiRealizedPnlData, } from "./converter";
5
6
  export { BorrowingFeeV2, borrowingFeeV2Utils, getPairPendingAccBorrowingFees as getPairPendingAccBorrowingFeesV2, getTradeBorrowingFeesCollateral as getTradeBorrowingFeesCollateralV2, getPairBorrowingFees as getPairBorrowingFeesV2, MAX_BORROWING_RATE_PER_SECOND as MAX_BORROWING_RATE_PER_SECOND_V2, BORROWING_V2_PRECISION, } from "./borrowingV2";
6
7
  export { convertBorrowingFeeParams as convertBorrowingFeeParamsV2, convertBorrowingFeeParamsArray as convertBorrowingFeeParamsArrayV2, convertPairBorrowingFeeData as convertPairBorrowingFeeDataV2, convertPairBorrowingFeeDataArray as convertPairBorrowingFeeDataArrayV2, convertTradeInitialAccFees as convertTradeInitialAccFeesV2, convertTradeInitialAccFeesArray as convertTradeInitialAccFeesArrayV2, createBorrowingV2Context, isValidBorrowingRate as isValidBorrowingRateV2, borrowingRateToAPR as borrowingRateToAPRV2, aprToBorrowingRate as aprToBorrowingRateV2, } from "./borrowingV2/converter";
@@ -19,6 +19,7 @@ exports.FUNDING_FEES_PRECISION = exports.calculateVelocityFromSkew = exports.apr
19
19
  __exportStar(require("./borrowing"), exports);
20
20
  __exportStar(require("./tiers"), exports);
21
21
  __exportStar(require("./trading"), exports);
22
+ __exportStar(require("../../markets/holdingFees"), exports);
22
23
  // TradeFeesData and UiRealizedPnlData converters
23
24
  var converter_1 = require("./converter");
24
25
  Object.defineProperty(exports, "convertTradeFeesData", { enumerable: true, get: function () { return converter_1.convertTradeFeesData; } });
@@ -8,6 +8,8 @@ exports.getTradeClosingPriceImpactAtOracle = exports.getTradeClosingPriceImpact
8
8
  const cumulVol_1 = require("../cumulVol");
9
9
  const skew_1 = require("../skew");
10
10
  const types_1 = require("../../../contracts/types");
11
+ const pnl_1 = require("../../pnl");
12
+ const __1 = require("../");
11
13
  // Export builder
12
14
  var builder_1 = require("./builder");
13
15
  Object.defineProperty(exports, "buildTradeClosingPriceImpactContext", { enumerable: true, get: function () { return builder_1.buildTradeClosingPriceImpactContext; } });
@@ -63,29 +65,16 @@ const getTradeClosingPriceImpact = (input, context) => {
63
65
  false, // closing
64
66
  context.tradeInfo.lastPosIncreaseBlock || context.tradeInfo.createdBlock, context.cumulVolContext);
65
67
  // Calculate price with conservative impact
66
- const priceWithImpact = input.trade.long
67
- ? input.currentPairPrice *
68
- (1 - (fixedSpreadP + cumulVolPriceImpactP) / 100)
69
- : input.currentPairPrice /
70
- (1 - (fixedSpreadP + cumulVolPriceImpactP) / 100);
71
- // Calculate trade value in collateral
72
- // For long: value = positionSizeToken * priceWithImpact
73
- // For short: value = positionSizeToken / priceWithImpact * openPrice^2 / currentPrice
74
- if (positionSizeToken > 0) {
75
- if (input.trade.long) {
76
- tradeValueCollateralNoFactor = positionSizeToken * priceWithImpact;
77
- }
78
- else {
79
- // Short calculation: profit from price decrease
80
- const pnlFactor = (2 * input.trade.openPrice - priceWithImpact) / input.trade.openPrice;
81
- tradeValueCollateralNoFactor = input.positionSizeCollateral * pnlFactor;
82
- }
83
- }
84
- else {
85
- tradeValueCollateralNoFactor = input.positionSizeCollateral;
86
- }
87
- // Determine actual PnL
88
- const isPnlPositive = tradeValueCollateralNoFactor > input.trade.collateralAmount;
68
+ const priceWithImpact = (0, __1.getPriceAfterImpact)(input.currentPairPrice, fixedSpreadP + cumulVolPriceImpactP);
69
+ // Calculate PnL percentage using the proper function
70
+ const pnlPercent = (0, pnl_1.getPnlPercent)(input.trade.openPrice, priceWithImpact, input.trade.long, input.trade.leverage);
71
+ // Calculate trade value using getTradeValue function
72
+ // Note: We don't include fees here as this is the raw trade value
73
+ tradeValueCollateralNoFactor = (0, pnl_1.getTradeValue)(input.trade.collateralAmount, pnlPercent, 0 // No fees for raw trade value calculation
74
+ );
75
+ // Determine actual PnL from the calculated percentage
76
+ const isPnlPositive = pnlPercent > 0;
77
+ console.log("isPnlPositive", isPnlPositive);
89
78
  // Second pass: Recalculate with actual PnL if positive
90
79
  if (isPnlPositive) {
91
80
  cumulVolPriceImpactP = (0, cumulVol_1.getTradeCumulVolPriceImpactP)(input.trade.user, input.pairIndex, input.trade.long, positionSizeUsd, true, // Positive PnL
@@ -110,10 +99,8 @@ const getTradeClosingPriceImpact = (input, context) => {
110
99
  // Total price impact (all components)
111
100
  const totalPriceImpactP = fixedSpreadP + cumulVolPriceImpactP + skewPriceImpactP;
112
101
  // Calculate final price after all impacts
113
- // For closing: longs get worse price when impact is positive, shorts get better
114
- const priceAfterImpact = input.trade.long
115
- ? input.currentPairPrice * (1 - totalPriceImpactP / 100)
116
- : input.currentPairPrice / (1 - totalPriceImpactP / 100);
102
+ // The direction is already handled by getFixedSpreadP (reverses for closing)
103
+ const priceAfterImpact = (0, __1.getPriceAfterImpact)(input.currentPairPrice, totalPriceImpactP);
117
104
  return {
118
105
  positionSizeToken,
119
106
  fixedSpreadP,
@@ -43,6 +43,13 @@ const isProtectionCloseFactorActive = (context) => {
43
43
  context.protectionCloseFactor === undefined) {
44
44
  return undefined;
45
45
  }
46
+ console.log("context.isPnlPositive", context.isPnlPositive);
47
+ console.log("context.isOpen", context.isOpen);
48
+ console.log("context.protectionCloseFactor", context.protectionCloseFactor);
49
+ console.log("context.currentBlock", context.currentBlock);
50
+ console.log("context.createdBlock", context.createdBlock);
51
+ console.log("context.protectionCloseFactorBlocks", context.protectionCloseFactorBlocks);
52
+ console.log("context.protectionCloseFactorWhitelist", context.protectionCloseFactorWhitelist);
46
53
  return (context.isPnlPositive === true &&
47
54
  context.isOpen === false &&
48
55
  context.protectionCloseFactor > 0 &&
@@ -88,7 +95,7 @@ exports.getLegacyFactor = getLegacyFactor;
88
95
  * @returns Cumulative volume price impact percentage (not including spread)
89
96
  */
90
97
  const getTradeCumulVolPriceImpactP = (trader, pairIndex, long, tradeOpenInterestUsd, isPnlPositive, open, lastPosIncreaseBlock, context) => {
91
- var _a, _b, _c, _d;
98
+ var _a, _b;
92
99
  // Update context with passed parameters
93
100
  const updatedContext = Object.assign(Object.assign({}, context), { isOpen: open, isPnlPositive: isPnlPositive, createdBlock: context.createdBlock || lastPosIncreaseBlock });
94
101
  if (
@@ -103,15 +110,15 @@ const getTradeCumulVolPriceImpactP = (trader, pairIndex, long, tradeOpenInterest
103
110
  (0, exports.isProtectionCloseFactorActive)(updatedContext) !== true)) {
104
111
  return 0;
105
112
  }
106
- const onePercentDepth = long
107
- ? // if `long`
108
- open
109
- ? (_a = context.pairDepth) === null || _a === void 0 ? void 0 : _a.onePercentDepthAboveUsd
110
- : (_b = context.pairDepth) === null || _b === void 0 ? void 0 : _b.onePercentDepthBelowUsd
111
- : // if `short`
112
- open
113
- ? (_c = context.pairDepth) === null || _c === void 0 ? void 0 : _c.onePercentDepthBelowUsd
114
- : (_d = context.pairDepth) === null || _d === void 0 ? void 0 : _d.onePercentDepthAboveUsd;
113
+ // Calculate trade skew direction (matches Solidity logic)
114
+ const tradePositiveSkew = (long && open) || (!long && !open);
115
+ const tradeSkewMultiplier = tradePositiveSkew ? 1 : -1;
116
+ // Select depth based on trade direction
117
+ // For positive skew (long open or short close), use depth above
118
+ // For negative skew (short open or long close), use depth below
119
+ const onePercentDepth = tradePositiveSkew
120
+ ? (_a = context.pairDepth) === null || _a === void 0 ? void 0 : _a.onePercentDepthAboveUsd
121
+ : (_b = context.pairDepth) === null || _b === void 0 ? void 0 : _b.onePercentDepthBelowUsd;
115
122
  let activeOi = undefined;
116
123
  if (context.oiWindowsSettings !== undefined) {
117
124
  activeOi = (0, oiWindows_1.getActiveOi)((0, oiWindows_1.getCurrentOiWindowId)(context.oiWindowsSettings), context.oiWindowsSettings.windowsCount, context.oiWindows, open ? long : !long);
@@ -119,11 +126,21 @@ const getTradeCumulVolPriceImpactP = (trader, pairIndex, long, tradeOpenInterest
119
126
  if (!onePercentDepth || activeOi === undefined) {
120
127
  return 0;
121
128
  }
122
- const finalPriceImpactP = ((activeOi * (0, exports.getCumulativeFactor)(updatedContext) +
123
- tradeOpenInterestUsd / 2) /
129
+ // Apply trade skew multiplier to match Solidity's signed calculation
130
+ const signedActiveOi = activeOi * tradeSkewMultiplier;
131
+ const signedTradeOi = tradeOpenInterestUsd * tradeSkewMultiplier;
132
+ // Calculate impact with proper signs (matching Solidity's _getTradePriceImpactP)
133
+ const finalPriceImpactP = ((signedActiveOi * (0, exports.getCumulativeFactor)(updatedContext) +
134
+ signedTradeOi / 2) /
124
135
  onePercentDepth /
125
136
  (0, exports.getLegacyFactor)(updatedContext)) *
126
137
  (0, exports.getProtectionCloseFactor)(updatedContext);
138
+ console.log("signedActiveOi", signedActiveOi);
139
+ console.log("getCumulativeFactor", (0, exports.getCumulativeFactor)(updatedContext));
140
+ console.log("signedTradeOi", signedTradeOi);
141
+ console.log("onePercentDepth", onePercentDepth);
142
+ console.log("getLegacyFactor", (0, exports.getLegacyFactor)(updatedContext));
143
+ console.log("getProtectionCloseFactor", (0, exports.getProtectionCloseFactor)(updatedContext));
127
144
  return finalPriceImpactP;
128
145
  };
129
146
  exports.getTradeCumulVolPriceImpactP = getTradeCumulVolPriceImpactP;
@@ -2,6 +2,14 @@
2
2
  * @dev Main price impact module
3
3
  * @dev Exports cumulative volume, skew, and combined opening/closing price impact functionality
4
4
  */
5
+ /**
6
+ * @dev Calculates price after impact using the same formula as the Solidity contract
7
+ * @dev Mirrors contract's getPriceAfterImpact function
8
+ * @param oraclePrice Base oracle price (no decimals requirement)
9
+ * @param totalPriceImpactP Total price impact percentage (can be positive or negative)
10
+ * @returns Price after impact has been applied
11
+ */
12
+ export declare const getPriceAfterImpact: (oraclePrice: number, totalPriceImpactP: number) => number;
5
13
  export { getTradeOpeningPriceImpact, getTradeOpeningPriceImpactAtMarket, buildTradeOpeningPriceImpactContext, TradeOpeningPriceImpactInput, TradeOpeningPriceImpactContext, TradeOpeningPriceImpactResult, } from "./open";
6
14
  export { getTradeClosingPriceImpact, getTradeClosingPriceImpactAtOracle, buildTradeClosingPriceImpactContext, TradeClosingPriceImpactInput, TradeClosingPriceImpactContext, TradeClosingPriceImpactResult, } from "./close";
7
15
  export { getTradeCumulVolPriceImpactP, getCumulVolPriceImpact, // Convenience function
@@ -4,7 +4,23 @@
4
4
  * @dev Exports cumulative volume, skew, and combined opening/closing price impact functionality
5
5
  */
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
7
- exports.buildSkewPriceImpactContext = exports.convertPairSkewDepths = exports.convertSkewDepth = exports.convertPairOiCollateralArray = exports.convertPairOiCollateral = exports.convertPairOiTokenArray = exports.convertPairOiToken = exports.SkewPriceImpact = exports.calculatePartialSizeToken = exports.getTradeSkewPriceImpactWithChecks = exports.getTradeSkewPriceImpact = exports.calculateSkewPriceImpactP = exports.getTradeSkewDirection = exports.getNetSkewCollateral = exports.getNetSkewToken = exports.buildCumulVolContext = exports.convertOiWindowsSettingsArray = exports.convertOiWindows = exports.convertOiWindow = exports.convertOiWindowsSettings = exports.getSpreadP = exports.getFixedSpreadP = exports.getLegacyFactor = exports.getCumulativeFactor = exports.isProtectionCloseFactorActive = exports.getProtectionCloseFactor = exports.getSpreadWithPriceImpactP = exports.getSpreadWithCumulVolPriceImpactP = exports.getCumulVolPriceImpact = exports.getTradeCumulVolPriceImpactP = exports.buildTradeClosingPriceImpactContext = exports.getTradeClosingPriceImpactAtOracle = exports.getTradeClosingPriceImpact = exports.buildTradeOpeningPriceImpactContext = exports.getTradeOpeningPriceImpactAtMarket = exports.getTradeOpeningPriceImpact = void 0;
7
+ exports.buildSkewPriceImpactContext = exports.convertPairSkewDepths = exports.convertSkewDepth = exports.convertPairOiCollateralArray = exports.convertPairOiCollateral = exports.convertPairOiTokenArray = exports.convertPairOiToken = exports.SkewPriceImpact = exports.calculatePartialSizeToken = exports.getTradeSkewPriceImpactWithChecks = exports.getTradeSkewPriceImpact = exports.calculateSkewPriceImpactP = exports.getTradeSkewDirection = exports.getNetSkewCollateral = exports.getNetSkewToken = exports.buildCumulVolContext = exports.convertOiWindowsSettingsArray = exports.convertOiWindows = exports.convertOiWindow = exports.convertOiWindowsSettings = exports.getSpreadP = exports.getFixedSpreadP = exports.getLegacyFactor = exports.getCumulativeFactor = exports.isProtectionCloseFactorActive = exports.getProtectionCloseFactor = exports.getSpreadWithPriceImpactP = exports.getSpreadWithCumulVolPriceImpactP = exports.getCumulVolPriceImpact = exports.getTradeCumulVolPriceImpactP = exports.buildTradeClosingPriceImpactContext = exports.getTradeClosingPriceImpactAtOracle = exports.getTradeClosingPriceImpact = exports.buildTradeOpeningPriceImpactContext = exports.getTradeOpeningPriceImpactAtMarket = exports.getTradeOpeningPriceImpact = exports.getPriceAfterImpact = void 0;
8
+ /**
9
+ * @dev Calculates price after impact using the same formula as the Solidity contract
10
+ * @dev Mirrors contract's getPriceAfterImpact function
11
+ * @param oraclePrice Base oracle price (no decimals requirement)
12
+ * @param totalPriceImpactP Total price impact percentage (can be positive or negative)
13
+ * @returns Price after impact has been applied
14
+ */
15
+ const getPriceAfterImpact = (oraclePrice, totalPriceImpactP) => {
16
+ // Match Solidity: price = oraclePrice + (oraclePrice * totalPriceImpactP / 100)
17
+ const priceAfterImpact = oraclePrice * (1 + totalPriceImpactP / 100);
18
+ if (priceAfterImpact <= 0) {
19
+ throw new Error("Price after impact must be positive");
20
+ }
21
+ return priceAfterImpact;
22
+ };
23
+ exports.getPriceAfterImpact = getPriceAfterImpact;
8
24
  // Export trade opening price impact functionality
9
25
  var open_1 = require("./open");
10
26
  // Core functions
@@ -7,6 +7,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
7
7
  exports.getTradeOpeningPriceImpactAtMarket = exports.getTradeOpeningPriceImpact = exports.buildTradeOpeningPriceImpactContext = void 0;
8
8
  const cumulVol_1 = require("../cumulVol");
9
9
  const skew_1 = require("../skew");
10
+ const __1 = require("../");
10
11
  // Export builder
11
12
  var builder_1 = require("./builder");
12
13
  Object.defineProperty(exports, "buildTradeOpeningPriceImpactContext", { enumerable: true, get: function () { return builder_1.buildTradeOpeningPriceImpactContext; } });
@@ -44,18 +45,12 @@ const getTradeOpeningPriceImpact = (input, context) => {
44
45
  // Total price impact (signed - can be positive or negative)
45
46
  // Spread is always positive, impacts can be negative
46
47
  const totalPriceImpactP = spreadP + cumulVolPriceImpactP + skewPriceImpactP;
47
- // Calculate final price after impact
48
- // For longs: price increases with positive impact
49
- // For shorts: price decreases with positive impact
50
- const priceImpactFactor = 1 + totalPriceImpactP / 100;
51
- const priceAfterImpact = input.long
52
- ? input.openPrice * priceImpactFactor
53
- : input.openPrice / priceImpactFactor;
48
+ // Calculate final price after impact using the same formula as Solidity
49
+ const priceAfterImpact = (0, __1.getPriceAfterImpact)(input.openPrice, totalPriceImpactP);
54
50
  // Calculate percent profit from impact
55
- // Positive when trader benefits, negative when trader loses
56
- const percentProfitP = input.long
57
- ? -totalPriceImpactP // Long loses when price goes up
58
- : totalPriceImpactP; // Short gains when price goes up
51
+ // For longs: negative impact = profit (price goes down, good for buyer)
52
+ // For shorts: positive impact = profit (price goes up, good for seller)
53
+ const percentProfitP = -totalPriceImpactP;
59
54
  return {
60
55
  priceAfterImpact,
61
56
  priceImpactP: Math.abs(totalPriceImpactP),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gainsnetwork/sdk",
3
- "version": "0.0.0-v10.rc11",
3
+ "version": "0.0.0-v10.rc15",
4
4
  "description": "Gains Network SDK",
5
5
  "main": "./lib/index.js",
6
6
  "files": [