@reyaxyz/api-sdk 0.158.0 → 0.159.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 (41) hide show
  1. package/dist/clients/modules/account/index.js +33 -5
  2. package/dist/clients/modules/account/index.js.map +1 -1
  3. package/dist/clients/modules/account/types.js.map +1 -1
  4. package/dist/clients/modules/auth/types.js.map +1 -1
  5. package/dist/clients/modules/conditional-orders/types.js.map +1 -1
  6. package/dist/clients/modules/deposit-existing-MA.simulation/types.js.map +1 -1
  7. package/dist/clients/modules/edit-collateral.simulation/types.js.map +1 -1
  8. package/dist/clients/modules/transfer-MA-Pool.simulation/types.js.map +1 -1
  9. package/dist/clients/modules/transfer-margin-between-MAs.simulation/types.js.map +1 -1
  10. package/dist/clients/modules/withdraw-MA.simulation/types.js.map +1 -1
  11. package/dist/clients/types.js.map +1 -1
  12. package/dist/types/clients/modules/account/index.d.ts.map +1 -1
  13. package/dist/types/clients/modules/account/types.d.ts +24 -24
  14. package/dist/types/clients/modules/account/types.d.ts.map +1 -1
  15. package/dist/types/clients/modules/auth/types.d.ts +1 -2
  16. package/dist/types/clients/modules/auth/types.d.ts.map +1 -1
  17. package/dist/types/clients/modules/conditional-orders/types.d.ts +3 -3
  18. package/dist/types/clients/modules/conditional-orders/types.d.ts.map +1 -1
  19. package/dist/types/clients/modules/deposit-existing-MA.simulation/types.d.ts +3 -3
  20. package/dist/types/clients/modules/deposit-existing-MA.simulation/types.d.ts.map +1 -1
  21. package/dist/types/clients/modules/edit-collateral.simulation/types.d.ts +4 -4
  22. package/dist/types/clients/modules/edit-collateral.simulation/types.d.ts.map +1 -1
  23. package/dist/types/clients/modules/transfer-MA-Pool.simulation/types.d.ts +3 -3
  24. package/dist/types/clients/modules/transfer-MA-Pool.simulation/types.d.ts.map +1 -1
  25. package/dist/types/clients/modules/transfer-margin-between-MAs.simulation/types.d.ts +7 -7
  26. package/dist/types/clients/modules/transfer-margin-between-MAs.simulation/types.d.ts.map +1 -1
  27. package/dist/types/clients/modules/withdraw-MA.simulation/types.d.ts +3 -3
  28. package/dist/types/clients/modules/withdraw-MA.simulation/types.d.ts.map +1 -1
  29. package/dist/types/clients/types.d.ts +1 -1
  30. package/dist/types/clients/types.d.ts.map +1 -1
  31. package/package.json +4 -4
  32. package/src/clients/modules/account/index.ts +39 -3
  33. package/src/clients/modules/account/types.ts +25 -24
  34. package/src/clients/modules/auth/types.ts +1 -2
  35. package/src/clients/modules/conditional-orders/types.ts +3 -3
  36. package/src/clients/modules/deposit-existing-MA.simulation/types.ts +3 -3
  37. package/src/clients/modules/edit-collateral.simulation/types.ts +4 -4
  38. package/src/clients/modules/transfer-MA-Pool.simulation/types.ts +3 -3
  39. package/src/clients/modules/transfer-margin-between-MAs.simulation/types.ts +7 -7
  40. package/src/clients/modules/withdraw-MA.simulation/types.ts +3 -3
  41. package/src/clients/types.ts +1 -1
@@ -71,7 +71,7 @@ var AccountClient = /** @class */ (function (_super) {
71
71
  * */
72
72
  AccountClient.prototype.getMarginAccounts = function (params) {
73
73
  return __awaiter(this, void 0, void 0, function () {
74
- var uri, response;
74
+ var uri, response, strippedResponse;
75
75
  return __generator(this, function (_a) {
76
76
  switch (_a.label) {
77
77
  case 0:
@@ -82,7 +82,19 @@ var AccountClient = /** @class */ (function (_super) {
82
82
  })];
83
83
  case 1:
84
84
  response = _a.sent();
85
- return [2 /*return*/, response];
85
+ strippedResponse = response.map(function (account) {
86
+ return {
87
+ id: account.id,
88
+ name: account.name,
89
+ marginRatioHealth: account.marginRatioHealth,
90
+ marginRatioPercentage: account.marginRatioPercentage,
91
+ marginRatioHealthDangerThreshold: account.marginRatioHealthDangerThreshold,
92
+ marginRatioHealthWarningThreshold: account.marginRatioHealthWarningThreshold,
93
+ isApproachingLiquidation: account.isApproachingLiquidation,
94
+ isLiquidationImminent: account.isLiquidationImminent,
95
+ };
96
+ });
97
+ return [2 /*return*/, strippedResponse];
86
98
  }
87
99
  });
88
100
  });
@@ -100,10 +112,26 @@ var AccountClient = /** @class */ (function (_super) {
100
112
  */
101
113
  AccountClient.prototype.getMarginAccount = function (params) {
102
114
  return __awaiter(this, void 0, void 0, function () {
103
- var uri;
115
+ var uri, response, strippedResponse;
104
116
  return __generator(this, function (_a) {
105
- uri = "/api/accounts/".concat(params.address, "/marginAccount/").concat(params.marginAccountId);
106
- return [2 /*return*/, this.get(uri)];
117
+ switch (_a.label) {
118
+ case 0:
119
+ uri = "/api/accounts/".concat(params.address, "/marginAccount/").concat(params.marginAccountId);
120
+ return [4 /*yield*/, this.get(uri)];
121
+ case 1:
122
+ response = _a.sent();
123
+ strippedResponse = {
124
+ id: response.id,
125
+ name: response.name,
126
+ marginRatioHealth: response.marginRatioHealth,
127
+ marginRatioPercentage: response.marginRatioPercentage,
128
+ marginRatioHealthDangerThreshold: response.marginRatioHealthDangerThreshold,
129
+ marginRatioHealthWarningThreshold: response.marginRatioHealthWarningThreshold,
130
+ isApproachingLiquidation: response.isApproachingLiquidation,
131
+ isLiquidationImminent: response.isLiquidationImminent,
132
+ };
133
+ return [2 /*return*/, strippedResponse];
134
+ }
107
135
  });
108
136
  });
109
137
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"/","sources":["clients/modules/account/index.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n GetMarginAccountParams,\n GetMarginAccountResult,\n GetMarginAccountsParams,\n GetMarginAccountsResult,\n GetMarginAccountTransactionHistoryParams,\n GetMarginAccountTransactionHistoryResult,\n GetMaxWithdrawBalanceForAccountParams,\n GetMaxWithdrawBalanceForAccountResult,\n EditMarginAccountParams,\n CloseMarginAccountParams,\n GetEditCollateralSimulationInitialDataParams,\n EditMarginAccountResult,\n CloseMarginAccountResult,\n GetMarginAccountOrderHistoryPaginatedParams,\n GetMarginAccountOrderHistoryPaginatedResult,\n GetLiquidationHistoryForOwnerAddressResult,\n GetLiquidationHistoryForOwnerAddressParams,\n GetAccountFeeRebatesHistoryParams,\n GetAccountFeeRebatesHistoryResult,\n GetAutoExchangeHistoryForOwnerAddressResult,\n GetAutoExchangeHistoryForOwnerAddressParams,\n UpdateLeverageForAccountAndMarketParams,\n UpdateLeverageForAccountAndMarketResult,\n} from './types';\nimport { EditCollateralSimulationState, RestClient } from '@reyaxyz/common';\n\nexport default class AccountClient extends RestClient {\n /**\n * Asynchronously retrieves a list of margin accounts associated with a specific address.\n *\n * This method makes a request to the API endpoint to fetch collateral account data. The data is filtered\n * based on the provided Ethereum address. An optional limit can be specified to control the number of\n * collateral accounts returned in the response.\n *\n * @param {GetMarginAccountsParams} params\n * @returns {Promise<GetMarginAccountsResult>} A promise that resolves to the response containing the margin\n * account data.\n * @memberof account\n * */\n\n async getMarginAccounts(\n params: GetMarginAccountsParams,\n ): Promise<GetMarginAccountsResult> {\n const uri = `/api/accounts/${params.address}`;\n const response: GetMarginAccountsResult = await this.get(uri, {\n limit: params.limit,\n includePositions: false,\n });\n\n return response;\n }\n\n /**\n * Asynchronously retrieves details of a specific collateral account for a given Ethereum address.\n *\n * This method sends a request to the API to obtain detailed information about a specific collateral account\n * associated with the provided Ethereum address. The account is identified using the collateral account number.\n *\n * @param {GetMarginAccountParams} params\n * @returns {Promise<GetMarginAccountResult>} A promise that resolves to the response containing the detailed\n * information of the specified margin account.\n * @memberof account\n */\n\n async getMarginAccount(\n params: GetMarginAccountParams,\n ): Promise<GetMarginAccountResult> {\n const uri = `/api/accounts/${params.address}/marginAccount/${params.marginAccountId}`;\n return this.get(uri);\n }\n\n async getMarginAccountOrderHistoryPaginated(\n params: GetMarginAccountOrderHistoryPaginatedParams,\n ): Promise<GetMarginAccountOrderHistoryPaginatedResult> {\n const uri = `/api/accounts/${params.address}/marginAccount/${params.marginAccountId}/positions/history/paginated`;\n return this.get(uri, {\n type: params.type,\n page: params.page,\n perPage: params.perPage,\n });\n }\n\n async getLiquidationHistoryForOwnerAddress(\n params: GetLiquidationHistoryForOwnerAddressParams,\n ): Promise<GetLiquidationHistoryForOwnerAddressResult> {\n const uri = `/api/accounts/${params.address}/positions/liquidations`;\n return this.get(uri, {\n timestampFromMS: params.timestampFromMS,\n });\n }\n\n async getAutoExchangeHistoryForOwnerAddress(\n params: GetAutoExchangeHistoryForOwnerAddressParams,\n ): Promise<GetAutoExchangeHistoryForOwnerAddressResult> {\n const uri = `/api/accounts/${params.address}/positions/auto-exchange`;\n return this.get(uri, {\n timestampFromMS: params.timestampFromMS,\n });\n }\n\n async getEditCollateralSimulationInitialData(\n params: GetEditCollateralSimulationInitialDataParams,\n ): Promise<EditCollateralSimulationState> {\n const uri = `/api/accounts/${params.marginAccountId}/edit-collateral-simulation-data`;\n return this.get(uri);\n }\n\n async getMarginAccountTransactionHistory(\n params: GetMarginAccountTransactionHistoryParams,\n ): Promise<GetMarginAccountTransactionHistoryResult> {\n const uri = `/api/accounts/${params.marginAccountId}/transaction-history`;\n return this.get(uri, {\n limit: params.limit,\n });\n }\n\n async getAccountFeeRebatesHistory(\n params: GetAccountFeeRebatesHistoryParams,\n ): Promise<GetAccountFeeRebatesHistoryResult> {\n const uri = `/api/accounts/${params.marginAccountId}/referral-fee-history`;\n return this.get(uri, {\n limit: params.limit,\n });\n }\n\n async getMaxWithdrawBalanceForAccount(\n params: GetMaxWithdrawBalanceForAccountParams,\n ): Promise<GetMaxWithdrawBalanceForAccountResult> {\n const uri = `/api/accounts/${params.marginAccountId}/max-withdraw-amount`;\n return this.get(uri, {\n assetAddress: params.tokenAddress,\n });\n }\n\n // TODO: Milan validate\n async editMarginAccount(\n params: EditMarginAccountParams,\n ): Promise<EditMarginAccountResult> {\n const name = (params.name || '').trim();\n if (!params.id) {\n throw new Error('Missing margin account id');\n }\n if (name.length === 0 || name.length > 25) {\n throw new Error('Max size 25 characters');\n }\n\n const uri = `/api/accounts/${params.id}/edit`;\n return this.put(uri, {\n id: params.id,\n name: params.name,\n });\n }\n async closeMarginAccount(\n params: CloseMarginAccountParams,\n ): Promise<CloseMarginAccountResult> {\n if (!params.id) {\n throw new Error('Missing margin account id');\n }\n\n const uri = `/api/accounts/${params.id}/close`;\n return this.delete(uri, {\n id: params.id,\n });\n }\n\n async updateLeverageForAccountAndMarket(\n params: UpdateLeverageForAccountAndMarketParams,\n ): Promise<UpdateLeverageForAccountAndMarketResult> {\n if (!params.accountId || !params.marketId || !params.leverage) {\n throw new Error('Missing required parameters');\n }\n\n const uri = `/api/accounts/${params.accountId}/marginAccount/${params.marketId}/set-max-leverage`;\n return this.post(\n uri,\n {},\n {\n leverage: params.leverage,\n },\n );\n }\n}\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"/","sources":["clients/modules/account/index.ts"],"names":[],"mappings":"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","sourcesContent":["import {\n GetMarginAccountParams,\n GetMarginAccountResult,\n GetMarginAccountsParams,\n GetMarginAccountsResult,\n GetMarginAccountTransactionHistoryParams,\n GetMarginAccountTransactionHistoryResult,\n GetMaxWithdrawBalanceForAccountParams,\n GetMaxWithdrawBalanceForAccountResult,\n EditMarginAccountParams,\n CloseMarginAccountParams,\n GetEditCollateralSimulationInitialDataParams,\n EditMarginAccountResult,\n CloseMarginAccountResult,\n GetMarginAccountOrderHistoryPaginatedParams,\n GetMarginAccountOrderHistoryPaginatedResult,\n GetLiquidationHistoryForOwnerAddressResult,\n GetLiquidationHistoryForOwnerAddressParams,\n GetAccountFeeRebatesHistoryParams,\n GetAccountFeeRebatesHistoryResult,\n GetAutoExchangeHistoryForOwnerAddressResult,\n GetAutoExchangeHistoryForOwnerAddressParams,\n UpdateLeverageForAccountAndMarketParams,\n UpdateLeverageForAccountAndMarketResult,\n} from './types';\nimport {\n EditCollateralSimulationState,\n RestClient,\n StrippedMarginAccountEntity,\n} from '@reyaxyz/common';\n\nexport default class AccountClient extends RestClient {\n /**\n * Asynchronously retrieves a list of margin accounts associated with a specific address.\n *\n * This method makes a request to the API endpoint to fetch collateral account data. The data is filtered\n * based on the provided Ethereum address. An optional limit can be specified to control the number of\n * collateral accounts returned in the response.\n *\n * @param {GetMarginAccountsParams} params\n * @returns {Promise<GetMarginAccountsResult>} A promise that resolves to the response containing the margin\n * account data.\n * @memberof account\n * */\n\n async getMarginAccounts(\n params: GetMarginAccountsParams,\n ): Promise<GetMarginAccountsResult> {\n const uri = `/api/accounts/${params.address}`;\n const response: GetMarginAccountsResult = await this.get(uri, {\n limit: params.limit,\n includePositions: false,\n });\n\n const strippedResponse = response.map(\n (account): StrippedMarginAccountEntity => {\n return {\n id: account.id,\n name: account.name,\n marginRatioHealth: account.marginRatioHealth,\n marginRatioPercentage: account.marginRatioPercentage,\n marginRatioHealthDangerThreshold:\n account.marginRatioHealthDangerThreshold,\n marginRatioHealthWarningThreshold:\n account.marginRatioHealthWarningThreshold,\n isApproachingLiquidation: account.isApproachingLiquidation,\n isLiquidationImminent: account.isLiquidationImminent,\n };\n },\n );\n\n return strippedResponse;\n }\n\n /**\n * Asynchronously retrieves details of a specific collateral account for a given Ethereum address.\n *\n * This method sends a request to the API to obtain detailed information about a specific collateral account\n * associated with the provided Ethereum address. The account is identified using the collateral account number.\n *\n * @param {GetMarginAccountParams} params\n * @returns {Promise<GetMarginAccountResult>} A promise that resolves to the response containing the detailed\n * information of the specified margin account.\n * @memberof account\n */\n\n async getMarginAccount(\n params: GetMarginAccountParams,\n ): Promise<GetMarginAccountResult> {\n const uri = `/api/accounts/${params.address}/marginAccount/${params.marginAccountId}`;\n const response: GetMarginAccountResult = await this.get(uri);\n\n const strippedResponse = {\n id: response.id,\n name: response.name,\n marginRatioHealth: response.marginRatioHealth,\n marginRatioPercentage: response.marginRatioPercentage,\n marginRatioHealthDangerThreshold:\n response.marginRatioHealthDangerThreshold,\n marginRatioHealthWarningThreshold:\n response.marginRatioHealthWarningThreshold,\n isApproachingLiquidation: response.isApproachingLiquidation,\n isLiquidationImminent: response.isLiquidationImminent,\n };\n\n return strippedResponse;\n }\n\n async getMarginAccountOrderHistoryPaginated(\n params: GetMarginAccountOrderHistoryPaginatedParams,\n ): Promise<GetMarginAccountOrderHistoryPaginatedResult> {\n const uri = `/api/accounts/${params.address}/marginAccount/${params.marginAccountId}/positions/history/paginated`;\n return this.get(uri, {\n type: params.type,\n page: params.page,\n perPage: params.perPage,\n });\n }\n\n async getLiquidationHistoryForOwnerAddress(\n params: GetLiquidationHistoryForOwnerAddressParams,\n ): Promise<GetLiquidationHistoryForOwnerAddressResult> {\n const uri = `/api/accounts/${params.address}/positions/liquidations`;\n return this.get(uri, {\n timestampFromMS: params.timestampFromMS,\n });\n }\n\n async getAutoExchangeHistoryForOwnerAddress(\n params: GetAutoExchangeHistoryForOwnerAddressParams,\n ): Promise<GetAutoExchangeHistoryForOwnerAddressResult> {\n const uri = `/api/accounts/${params.address}/positions/auto-exchange`;\n return this.get(uri, {\n timestampFromMS: params.timestampFromMS,\n });\n }\n\n async getEditCollateralSimulationInitialData(\n params: GetEditCollateralSimulationInitialDataParams,\n ): Promise<EditCollateralSimulationState> {\n const uri = `/api/accounts/${params.marginAccountId}/edit-collateral-simulation-data`;\n return this.get(uri);\n }\n\n async getMarginAccountTransactionHistory(\n params: GetMarginAccountTransactionHistoryParams,\n ): Promise<GetMarginAccountTransactionHistoryResult> {\n const uri = `/api/accounts/${params.marginAccountId}/transaction-history`;\n return this.get(uri, {\n limit: params.limit,\n });\n }\n\n async getAccountFeeRebatesHistory(\n params: GetAccountFeeRebatesHistoryParams,\n ): Promise<GetAccountFeeRebatesHistoryResult> {\n const uri = `/api/accounts/${params.marginAccountId}/referral-fee-history`;\n return this.get(uri, {\n limit: params.limit,\n });\n }\n\n async getMaxWithdrawBalanceForAccount(\n params: GetMaxWithdrawBalanceForAccountParams,\n ): Promise<GetMaxWithdrawBalanceForAccountResult> {\n const uri = `/api/accounts/${params.marginAccountId}/max-withdraw-amount`;\n return this.get(uri, {\n assetAddress: params.tokenAddress,\n });\n }\n\n // TODO: Milan validate\n async editMarginAccount(\n params: EditMarginAccountParams,\n ): Promise<EditMarginAccountResult> {\n const name = (params.name || '').trim();\n if (!params.id) {\n throw new Error('Missing margin account id');\n }\n if (name.length === 0 || name.length > 25) {\n throw new Error('Max size 25 characters');\n }\n\n const uri = `/api/accounts/${params.id}/edit`;\n return this.put(uri, {\n id: params.id,\n name: params.name,\n });\n }\n async closeMarginAccount(\n params: CloseMarginAccountParams,\n ): Promise<CloseMarginAccountResult> {\n if (!params.id) {\n throw new Error('Missing margin account id');\n }\n\n const uri = `/api/accounts/${params.id}/close`;\n return this.delete(uri, {\n id: params.id,\n });\n }\n\n async updateLeverageForAccountAndMarket(\n params: UpdateLeverageForAccountAndMarketParams,\n ): Promise<UpdateLeverageForAccountAndMarketResult> {\n if (!params.accountId || !params.marketId || !params.leverage) {\n throw new Error('Missing required parameters');\n }\n\n const uri = `/api/accounts/${params.accountId}/marginAccount/${params.marketId}/set-max-leverage`;\n return this.post(\n uri,\n {},\n {\n leverage: params.leverage,\n },\n );\n }\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/account/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n MarginAccountEntity,\n MarginAccountTransactionHistoryEntity,\n MarketEntity,\n PositionEntity,\n OrderHistoryEntity,\n} from '@reyaxyz/common';\nimport {\n MarginAccountBalanceGranularity,\n MarginAccountCollateralsBalanceGranularity,\n AllMarginAccountsBalanceGranularity,\n ReferralFeeTransactionHistoryEntity,\n AutoExchangeEvent,\n} from '@reyaxyz/common';\nimport { Address } from '@reyaxyz/common';\n\nexport type GetMarginAccountsParams = {\n address: string;\n limit?: number;\n};\n\nexport type GetMarginAccountParams = {\n address: string;\n marginAccountId: MarginAccountEntity['id'];\n};\n\nexport type GetPositionsForMarginAccountParams = {\n address: string;\n marginAccountId: MarginAccountEntity['id'];\n limit?: number;\n};\n\nexport type GetMarginAccountsResult = MarginAccountEntity[];\n\nexport type GetMarginAccountResult = MarginAccountEntity;\n\n// ---- Transaction History\nexport type GetMarginAccountTransactionHistoryParams = {\n marginAccountId: MarginAccountEntity['id'];\n limit?: number;\n};\n\nexport type GetMarginAccountTransactionHistoryResult =\n MarginAccountTransactionHistoryEntity[];\n\nexport type GetAccountFeeRebatesHistoryParams = {\n marginAccountId: MarginAccountEntity['id'];\n limit?: number;\n};\n\nexport type GetAccountFeeRebatesHistoryResult = {\n result: ReferralFeeTransactionHistoryEntity[];\n};\n// -- Max Order Size --\n\nexport type GetMaxOrderSizeAvailableParams = {\n marketId: MarketEntity['id'];\n marginAccountId: MarginAccountEntity['id'];\n direction: 'long' | 'short';\n};\n\nexport type GetMaxOrderSizeAvailableResult = {\n maxAmountBase: number;\n maxAmountSize: number;\n};\n\n// --- Max Withdraw Balance for Margin Account ---\nexport type GetMaxWithdrawBalanceForAccountParams = {\n marginAccountId: MarginAccountEntity['id'];\n tokenAddress: string;\n};\n\nexport type GetMaxWithdrawBalanceForAccountResult = number;\n\nexport type GetPositionsForMarginAccountResult = {\n positions: PositionEntity[];\n totalUnrealizedPNL: number;\n};\n\n// --- Order History ---\n\nexport type GetMarginAccountOrderHistoryParams = {\n address: string;\n marginAccountId: MarginAccountEntity['id'];\n limit?: number;\n};\nexport type GetMarginAccountOrderHistoryPaginatedParams = {\n address: string;\n marginAccountId: MarginAccountEntity['id'];\n page: number;\n perPage: number;\n type?: 'order' | 'liquidation';\n};\nexport type GetMarginAccountOrderHistoryResult = OrderHistoryEntity[];\nexport type GetMarginAccountOrderHistoryPaginatedResult = {\n data: OrderHistoryEntity[];\n totalCount: number;\n};\n\n//--- Liquidation History ---\nexport type GetLiquidationHistoryForOwnerAddressParams = {\n address: Address;\n timestampFromMS: number;\n};\nexport type GetLiquidationHistoryForOwnerAddressResult = {\n data: LiquidationHistoryEntity[];\n};\n\nexport type LiquidationHistoryEntity = {\n id: string;\n action: 'long-liquidation' | 'short-liquidation';\n executionPrice: number;\n fees: number;\n base: number;\n size: number; // price * base (liquidation size)\n timestamp: number;\n baseUnderlyingToken: string;\n marginAccount: {\n id: MarginAccountEntity['id'];\n name: MarginAccountEntity['name'];\n marginRatioPercentage: MarginAccountEntity['marginRatioPercentage'];\n marginRatioHealth: MarginAccountEntity['marginRatioHealth'];\n };\n};\n\nexport type GetAutoExchangeHistoryForOwnerAddressParams =\n GetLiquidationHistoryForOwnerAddressParams;\nexport type GetAutoExchangeHistoryForOwnerAddressResult = {\n data: AutoExchangeEvent[];\n};\n\n// ---- Transaction Simulation ----\n\nexport type GetTransactionSimulationInitialDataParams = {\n marketId: MarketEntity['id'];\n marginAccountId: MarginAccountEntity['id'];\n};\n\n// ---- Edit Collateral Simulation ----\n\nexport type GetEditCollateralSimulationInitialDataParams = {\n marginAccountId: MarginAccountEntity['id'];\n};\n\nexport type GetMarginAccountBalanceChartDataParams = {\n marginAccountId: MarginAccountEntity['id'];\n filters: {\n timeframeMs: number;\n granularity: MarginAccountBalanceGranularity;\n };\n};\n\nexport type GetMarginAccountCollateralsBalanceChartDataParams = {\n marginAccountId: MarginAccountEntity['id'];\n filters: {\n timeframeMs: number;\n granularity: MarginAccountCollateralsBalanceGranularity;\n };\n};\n\nexport type GetAllMarginAccountsBalanceChartDataParams = {\n ownerAddress: string;\n filters: {\n timeframeMs: number;\n granularity: AllMarginAccountsBalanceGranularity;\n };\n};\n\nexport type EditMarginAccountParams = {\n id: MarginAccountEntity['id'];\n name: MarginAccountEntity['name'];\n};\n\nexport type EditMarginAccountResult = { success: boolean };\n\nexport type CloseMarginAccountParams = {\n id: MarginAccountEntity['id'];\n};\n\nexport type CloseMarginAccountResult = { success: boolean };\n\nexport type GetAllMarginAccountsSummaryParams = {\n ownerAddress: string;\n};\n\nexport type GetAllMarginAccountsSummaryResult = {\n totalAccountsCount: number;\n totalBalance: number;\n totalBalanceChangePercentage: number;\n totalBalanceUnderlyingAsset: string;\n};\n\nexport type GetIsolatedOrderMaxSizeAvailableParams = {\n marketId: MarketEntity['id'];\n marginAccountId: MarginAccountEntity['id'];\n direction: 'long' | 'short';\n};\n\nexport type GetIsolatedOrderMaxSizeAvailableResult = {\n maxAmountBase: number;\n maxAmountSize: number;\n};\n\nexport type UpdateLeverageForAccountAndMarketParams = {\n accountId: MarginAccountEntity['id'];\n marketId: MarketEntity['id'];\n leverage: number;\n};\n\nexport type UpdateLeverageForAccountAndMarketResult = {\n successful: boolean;\n leverage: number;\n};\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/account/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n MarginAccountTransactionHistoryEntity,\n MarketEntity,\n PositionEntity,\n OrderHistoryEntity,\n MarginRatioHealth,\n StrippedMarginAccountEntity,\n} from '@reyaxyz/common';\nimport {\n MarginAccountBalanceGranularity,\n MarginAccountCollateralsBalanceGranularity,\n AllMarginAccountsBalanceGranularity,\n ReferralFeeTransactionHistoryEntity,\n AutoExchangeEvent,\n} from '@reyaxyz/common';\nimport { Address } from '@reyaxyz/common';\n\nexport type GetMarginAccountsParams = {\n address: string;\n limit?: number;\n};\n\nexport type GetMarginAccountParams = {\n address: string;\n marginAccountId: number;\n};\n\nexport type GetPositionsForMarginAccountParams = {\n address: string;\n marginAccountId: number;\n limit?: number;\n};\n\nexport type GetMarginAccountsResult = StrippedMarginAccountEntity[];\n\nexport type GetMarginAccountResult = StrippedMarginAccountEntity;\n\n// ---- Transaction History\nexport type GetMarginAccountTransactionHistoryParams = {\n marginAccountId: number;\n limit?: number;\n};\n\nexport type GetMarginAccountTransactionHistoryResult =\n MarginAccountTransactionHistoryEntity[];\n\nexport type GetAccountFeeRebatesHistoryParams = {\n marginAccountId: number;\n limit?: number;\n};\n\nexport type GetAccountFeeRebatesHistoryResult = {\n result: ReferralFeeTransactionHistoryEntity[];\n};\n// -- Max Order Size --\n\nexport type GetMaxOrderSizeAvailableParams = {\n marketId: MarketEntity['id'];\n marginAccountId: number;\n direction: 'long' | 'short';\n};\n\nexport type GetMaxOrderSizeAvailableResult = {\n maxAmountBase: number;\n maxAmountSize: number;\n};\n\n// --- Max Withdraw Balance for Margin Account ---\nexport type GetMaxWithdrawBalanceForAccountParams = {\n marginAccountId: number;\n tokenAddress: string;\n};\n\nexport type GetMaxWithdrawBalanceForAccountResult = number;\n\nexport type GetPositionsForMarginAccountResult = {\n positions: PositionEntity[];\n totalUnrealizedPNL: number;\n};\n\n// --- Order History ---\n\nexport type GetMarginAccountOrderHistoryParams = {\n address: string;\n marginAccountId: number;\n limit?: number;\n};\nexport type GetMarginAccountOrderHistoryPaginatedParams = {\n address: string;\n marginAccountId: number;\n page: number;\n perPage: number;\n type?: 'order' | 'liquidation';\n};\nexport type GetMarginAccountOrderHistoryResult = OrderHistoryEntity[];\nexport type GetMarginAccountOrderHistoryPaginatedResult = {\n data: OrderHistoryEntity[];\n totalCount: number;\n};\n\n//--- Liquidation History ---\nexport type GetLiquidationHistoryForOwnerAddressParams = {\n address: Address;\n timestampFromMS: number;\n};\nexport type GetLiquidationHistoryForOwnerAddressResult = {\n data: LiquidationHistoryEntity[];\n};\n\nexport type LiquidationHistoryEntity = {\n id: string;\n action: 'long-liquidation' | 'short-liquidation';\n executionPrice: number;\n fees: number;\n base: number;\n size: number; // price * base (liquidation size)\n timestamp: number;\n baseUnderlyingToken: string;\n marginAccount: {\n id: number;\n name: string;\n marginRatioPercentage: number;\n marginRatioHealth: MarginRatioHealth;\n };\n};\n\nexport type GetAutoExchangeHistoryForOwnerAddressParams =\n GetLiquidationHistoryForOwnerAddressParams;\nexport type GetAutoExchangeHistoryForOwnerAddressResult = {\n data: AutoExchangeEvent[];\n};\n\n// ---- Transaction Simulation ----\n\nexport type GetTransactionSimulationInitialDataParams = {\n marketId: MarketEntity['id'];\n marginAccountId: number;\n};\n\n// ---- Edit Collateral Simulation ----\n\nexport type GetEditCollateralSimulationInitialDataParams = {\n marginAccountId: number;\n};\n\nexport type GetMarginAccountBalanceChartDataParams = {\n marginAccountId: number;\n filters: {\n timeframeMs: number;\n granularity: MarginAccountBalanceGranularity;\n };\n};\n\nexport type GetMarginAccountCollateralsBalanceChartDataParams = {\n marginAccountId: number;\n filters: {\n timeframeMs: number;\n granularity: MarginAccountCollateralsBalanceGranularity;\n };\n};\n\nexport type GetAllMarginAccountsBalanceChartDataParams = {\n ownerAddress: string;\n filters: {\n timeframeMs: number;\n granularity: AllMarginAccountsBalanceGranularity;\n };\n};\n\nexport type EditMarginAccountParams = {\n id: number;\n name: string;\n};\n\nexport type EditMarginAccountResult = { success: boolean };\n\nexport type CloseMarginAccountParams = {\n id: number;\n};\n\nexport type CloseMarginAccountResult = { success: boolean };\n\nexport type GetAllMarginAccountsSummaryParams = {\n ownerAddress: string;\n};\n\nexport type GetAllMarginAccountsSummaryResult = {\n totalAccountsCount: number;\n totalBalance: number;\n totalBalanceChangePercentage: number;\n totalBalanceUnderlyingAsset: string;\n};\n\nexport type GetIsolatedOrderMaxSizeAvailableParams = {\n marketId: MarketEntity['id'];\n marginAccountId: number;\n direction: 'long' | 'short';\n};\n\nexport type GetIsolatedOrderMaxSizeAvailableResult = {\n maxAmountBase: number;\n maxAmountSize: number;\n};\n\nexport type UpdateLeverageForAccountAndMarketParams = {\n accountId: number;\n marketId: MarketEntity['id'];\n leverage: number;\n};\n\nexport type UpdateLeverageForAccountAndMarketResult = {\n successful: boolean;\n leverage: number;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/auth/types.ts"],"names":[],"mappings":"","sourcesContent":["import { JsonRpcSigner, Signer } from 'ethers';\nimport { MarginAccountEntity } from '@reyaxyz/common';\nimport { RegistrationResponseJSON } from '@simplewebauthn/types';\n\nexport type RegisterParams = {\n signer: Signer | JsonRpcSigner;\n marginAccountId: MarginAccountEntity['id'];\n attestationResponse: RegistrationResponseJSON;\n};\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/auth/types.ts"],"names":[],"mappings":"","sourcesContent":["import { JsonRpcSigner, Signer } from 'ethers';\nimport { RegistrationResponseJSON } from '@simplewebauthn/types';\n\nexport type RegisterParams = {\n signer: Signer | JsonRpcSigner;\n marginAccountId: number;\n attestationResponse: RegistrationResponseJSON;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/conditional-orders/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n ConditionalOrder,\n UnifiedConditionalOrderType,\n ConditionalOrderType,\n} from '@reyaxyz/common';\nimport { Signer, JsonRpcSigner } from 'ethers';\nimport { MarginAccountEntity, MarketEntity, Address } from '@reyaxyz/common';\n\nexport type CancelConditionalOrderParams = {\n signer: Signer | JsonRpcSigner;\n orderId: string;\n};\n\nexport type CancelConditionalOrderResult = ConditionalOrder;\n\nexport type ConditionalOrderDetails = {\n accountId: number;\n marketId: number;\n exchangeId: number;\n counterpartyAccountIds: number[];\n orderType: number;\n inputs: string;\n signer: string;\n nonce: bigint;\n};\n\nexport type OrderSupportingParams = {\n exchangeId: MarketEntity['orderInfo']['exchangeId'];\n counterpartyAccountIds: MarketEntity['orderInfo']['counterpartyAccountIds'];\n};\n\nexport type RegisterConditionalOrderParams = {\n signer: Signer | JsonRpcSigner;\n marginAccountId: MarginAccountEntity['id'];\n triggerPrice: number;\n orderType: ConditionalOrderType;\n marketId: number;\n supportingParams: OrderSupportingParams;\n amountInBase?: number;\n};\n\nexport type UpdateConditionalOrderParams = {\n cancelOrderId: string;\n} & RegisterConditionalOrderParams;\n\nexport type RegisterConditionalOrderResult = ConditionalOrder;\nexport type UpdateConditionalOrderResult = ConditionalOrder;\n\nexport type AlreadyGaveTradePermissionParams = {\n accountId: number;\n};\n\nexport type AlreadyGaveTradePermissionResult = {\n permissionGiven: boolean;\n};\n\nexport type AlreadyGaveTradePermissionToWalletParams = {\n accountId: number;\n targetWalletAddress: Address;\n};\n\nexport type AlreadyGaveTradePermissionToWalletResult = {\n permissionGiven: boolean;\n};\n\n// ---- Conditional Orders History ---\nexport type GetConditionalOrdersHistoryForMarginAccountParams = {\n address: string;\n marginAccountId: MarginAccountEntity['id'];\n limit?: number;\n};\n\nexport type GetConditionalOrdersHistoryForWalletAddressParams = {\n walletAddress: string;\n limit?: number;\n};\n\nexport type GetConditionalOrdersHistoryForMarginAccountResult =\n UnifiedConditionalOrderType[];\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/conditional-orders/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n ConditionalOrder,\n UnifiedConditionalOrderType,\n ConditionalOrderType,\n} from '@reyaxyz/common';\nimport { Signer, JsonRpcSigner } from 'ethers';\nimport { MarketEntity, Address } from '@reyaxyz/common';\n\nexport type CancelConditionalOrderParams = {\n signer: Signer | JsonRpcSigner;\n orderId: string;\n};\n\nexport type CancelConditionalOrderResult = ConditionalOrder;\n\nexport type ConditionalOrderDetails = {\n accountId: number;\n marketId: number;\n exchangeId: number;\n counterpartyAccountIds: number[];\n orderType: number;\n inputs: string;\n signer: string;\n nonce: bigint;\n};\n\nexport type OrderSupportingParams = {\n exchangeId: MarketEntity['orderInfo']['exchangeId'];\n counterpartyAccountIds: MarketEntity['orderInfo']['counterpartyAccountIds'];\n};\n\nexport type RegisterConditionalOrderParams = {\n signer: Signer | JsonRpcSigner;\n marginAccountId: number;\n triggerPrice: number;\n orderType: ConditionalOrderType;\n marketId: number;\n supportingParams: OrderSupportingParams;\n amountInBase?: number;\n};\n\nexport type UpdateConditionalOrderParams = {\n cancelOrderId: string;\n} & RegisterConditionalOrderParams;\n\nexport type RegisterConditionalOrderResult = ConditionalOrder;\nexport type UpdateConditionalOrderResult = ConditionalOrder;\n\nexport type AlreadyGaveTradePermissionParams = {\n accountId: number;\n};\n\nexport type AlreadyGaveTradePermissionResult = {\n permissionGiven: boolean;\n};\n\nexport type AlreadyGaveTradePermissionToWalletParams = {\n accountId: number;\n targetWalletAddress: Address;\n};\n\nexport type AlreadyGaveTradePermissionToWalletResult = {\n permissionGiven: boolean;\n};\n\n// ---- Conditional Orders History ---\nexport type GetConditionalOrdersHistoryForMarginAccountParams = {\n address: string;\n marginAccountId: number;\n limit?: number;\n};\n\nexport type GetConditionalOrdersHistoryForWalletAddressParams = {\n walletAddress: string;\n limit?: number;\n};\n\nexport type GetConditionalOrdersHistoryForMarginAccountResult =\n UnifiedConditionalOrderType[];\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/deposit-existing-MA.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n MarginAccountEntity,\n MoneyInOutChainId,\n SocketDepositFees,\n TokenEntity,\n} from '@reyaxyz/common';\nimport { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';\n\nexport type DepositExistingMASimulationLoadDataParams =\n EditCollateralSimulationLoadDataParams;\n\nexport type DepositExistingMASimulationSimulateParams = {\n moneyInOutChainId: MoneyInOutChainId;\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateDepositExistingMAEntity = {\n socketDepositFees: SocketDepositFees;\n bridgeTimeInMS: number;\n marginRatio: MarginAccountEntity['marginRatioPercentage'];\n marginRatioHealth: MarginAccountEntity['marginRatioHealth'];\n};\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/deposit-existing-MA.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n MarginRatioHealth,\n MoneyInOutChainId,\n SocketDepositFees,\n TokenEntity,\n} from '@reyaxyz/common';\nimport { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';\n\nexport type DepositExistingMASimulationLoadDataParams =\n EditCollateralSimulationLoadDataParams;\n\nexport type DepositExistingMASimulationSimulateParams = {\n moneyInOutChainId: MoneyInOutChainId;\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateDepositExistingMAEntity = {\n socketDepositFees: SocketDepositFees;\n bridgeTimeInMS: number;\n marginRatio: number;\n marginRatioHealth: MarginRatioHealth;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/edit-collateral.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';\n\nexport type EditCollateralSimulationLoadDataParams = {\n marginAccountId: MarginAccountEntity['id'];\n};\n\nexport type EditCollateralSimulationSimulateParams = {\n signedAmount: number; // + for deposit, - for withdraw\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateEditCollateralEntity = {\n marginRatio: MarginAccountEntity['marginRatioPercentage'];\n marginRatioHealth: MarginAccountEntity['marginRatioHealth'];\n};\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/edit-collateral.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';\n\nexport type EditCollateralSimulationLoadDataParams = {\n marginAccountId: number;\n};\n\nexport type EditCollateralSimulationSimulateParams = {\n signedAmount: number; // + for deposit, - for withdraw\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateEditCollateralEntity = {\n marginRatio: number;\n marginRatioHealth: MarginRatioHealth;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/transfer-MA-Pool.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';\nimport { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';\n\nexport type TransferMAPoolSimulationLoadDataParams =\n EditCollateralSimulationLoadDataParams;\n\nexport type TransferMAPoolSimulationSimulateParams = {\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateTransferMAPoolEntity = {\n marginRatio: MarginAccountEntity['marginRatioPercentage'];\n marginRatioHealth: MarginAccountEntity['marginRatioHealth'];\n};\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/transfer-MA-Pool.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';\nimport { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';\n\nexport type TransferMAPoolSimulationLoadDataParams =\n EditCollateralSimulationLoadDataParams;\n\nexport type TransferMAPoolSimulationSimulateParams = {\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateTransferMAPoolEntity = {\n marginRatio: number;\n marginRatioHealth: MarginRatioHealth;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/transfer-margin-between-MAs.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';\n\nexport type TransferMarginBetweenMAsSimulationLoadDataParams = {\n fromMarginAccountId: MarginAccountEntity['id'];\n toMarginAccountId: MarginAccountEntity['id'];\n};\n\nexport type TransferMarginBetweenMAsSimulationSimulateParams = {\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateTransferMarginBetweenMAsEntity = {\n fromMarginRatio: MarginAccountEntity['marginRatioPercentage'];\n fromMarginRatioHealth: MarginAccountEntity['marginRatioHealth'];\n toMarginRatio: MarginAccountEntity['marginRatioPercentage'];\n toMarginRatioHealth: MarginAccountEntity['marginRatioHealth'];\n};\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/transfer-margin-between-MAs.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';\n\nexport type TransferMarginBetweenMAsSimulationLoadDataParams = {\n fromMarginAccountId: number;\n toMarginAccountId: number;\n};\n\nexport type TransferMarginBetweenMAsSimulationSimulateParams = {\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateTransferMarginBetweenMAsEntity = {\n fromMarginRatio: number;\n fromMarginRatioHealth: MarginRatioHealth;\n toMarginRatio: number;\n toMarginRatioHealth: MarginRatioHealth;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/withdraw-MA.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n MarginAccountEntity,\n MoneyInOutChainId,\n TokenEntity,\n} from '@reyaxyz/common';\nimport { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';\nimport { SocketWithdrawFees } from '@reyaxyz/common';\n\nexport type WithdrawMASimulationLoadDataParams =\n EditCollateralSimulationLoadDataParams;\n\nexport type WithdrawMASimulationSimulateParams = {\n moneyInOutChainId: MoneyInOutChainId;\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateWithdrawMAEntity = {\n socketWithdrawFees: SocketWithdrawFees;\n bridgeTimeInMS: number;\n marginRatio: MarginAccountEntity['marginRatioPercentage'];\n marginRatioHealth: MarginAccountEntity['marginRatioHealth'];\n};\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/modules/withdraw-MA.simulation/types.ts"],"names":[],"mappings":"","sourcesContent":["import {\n MarginRatioHealth,\n MoneyInOutChainId,\n TokenEntity,\n} from '@reyaxyz/common';\nimport { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';\nimport { SocketWithdrawFees } from '@reyaxyz/common';\n\nexport type WithdrawMASimulationLoadDataParams =\n EditCollateralSimulationLoadDataParams;\n\nexport type WithdrawMASimulationSimulateParams = {\n moneyInOutChainId: MoneyInOutChainId;\n amount: number;\n tokenAddress: TokenEntity['address'];\n};\n\nexport type SimulateWithdrawMAEntity = {\n socketWithdrawFees: SocketWithdrawFees;\n bridgeTimeInMS: number;\n marginRatio: number;\n marginRatioHealth: MarginRatioHealth;\n};\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qDAAqD;AACrD,0CA4ByB;AA1BvB,2GAAA,iBAAiB,OAAA;AAYjB,qGAAA,WAAW,OAAA;AACX,2GAAA,iBAAiB,OAAA;AACjB,8GAAA,oBAAoB,OAAA;AACpB,yHAAA,+BAA+B,OAAA;AAE/B,oIAAA,0CAA0C,OAAA;AAG1C,6HAAA,mCAAmC,OAAA;AAEnC,uHAAA,6BAA6B,OAAA;AAG7B,8GAAA,oBAAoB,OAAA;AAEtB,0DAAwC;AACxC,qEAAmD;AACnD,qDAAmC;AACnC,0DAAwC;AACxC,yDAAuC;AACvC,wDAAsC;AACtC,iFAA+D;AAC/D,4EAA0D;AAC1D,kFAAgE;AAChE,6EAA2D;AAC3D,yEAAuD;AACvD,mFAAiE;AACjE,yFAAuE;AACvE,8EAA4D;AAC5D,+DAA6C;AAC7C,yEAAuD;AACvD,kFAAgE","sourcesContent":["// reexporting what we want to share with integrators\nexport {\n Candle,\n CandlesResolution,\n MarketEntity,\n LpTransactionHistoryEntity,\n TradingHistoryEntity,\n OrderHistoryEntity,\n PositionEntity,\n TransactionHistoryType,\n MarginAccountTransactionHistoryType,\n MarginAccountTransactionHistoryEntity,\n MarginAccountEntity,\n LpPositionEntity,\n LpPoolEntity,\n ReyaChainId,\n MoneyInOutChainId,\n LpBalanceGranularity,\n MarginAccountBalanceGranularity,\n GetMarginAccountBalanceChartDataResult,\n MarginAccountCollateralsBalanceGranularity,\n GetMarginAccountCollateralsBalanceChartDataResult,\n GetAllMarginAccountsBalanceChartDataResult,\n AllMarginAccountsBalanceGranularity,\n GetFundingRateChartDataResult,\n FundingRateHistoryGranularity,\n MoneyInOutConfigurationPerTokenName,\n UnifiedConditionalOrderType,\n ConditionalOrderType,\n} from '@reyaxyz/common';\nexport * from './modules/account/types';\nexport * from './modules/conditional-orders/types';\nexport * from './modules/lp/types';\nexport * from './modules/markets/types';\nexport * from './modules/tokens/types';\nexport * from './modules/owner/types';\nexport * from './modules/deposit-existing-MA.simulation/types';\nexport * from './modules/deposit-new-MA.simulation/types';\nexport * from './modules/deposit-passive-pool.simulation/types';\nexport * from './modules/edit-collateral.simulation/types';\nexport * from './modules/withdraw-MA.simulation/types';\nexport * from './modules/withdraw-passive-pool.simulation/types';\nexport * from './modules/transfer-margin-between-MAs.simulation/types';\nexport * from './modules/transfer-MA-Pool.simulation/types';\nexport * from './modules/funding-rate/types';\nexport * from './modules/depth-chart.simulation/types';\nexport * from './modules/deposit-passive-pool.simulation/types';\n"]}
1
+ {"version":3,"file":"types.js","sourceRoot":"/","sources":["clients/types.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,qDAAqD;AACrD,0CA4ByB;AA1BvB,2GAAA,iBAAiB,OAAA;AAYjB,qGAAA,WAAW,OAAA;AACX,2GAAA,iBAAiB,OAAA;AACjB,8GAAA,oBAAoB,OAAA;AACpB,yHAAA,+BAA+B,OAAA;AAE/B,oIAAA,0CAA0C,OAAA;AAG1C,6HAAA,mCAAmC,OAAA;AAEnC,uHAAA,6BAA6B,OAAA;AAG7B,8GAAA,oBAAoB,OAAA;AAEtB,0DAAwC;AACxC,qEAAmD;AACnD,qDAAmC;AACnC,0DAAwC;AACxC,yDAAuC;AACvC,wDAAsC;AACtC,iFAA+D;AAC/D,4EAA0D;AAC1D,kFAAgE;AAChE,6EAA2D;AAC3D,yEAAuD;AACvD,mFAAiE;AACjE,yFAAuE;AACvE,8EAA4D;AAC5D,+DAA6C;AAC7C,yEAAuD;AACvD,kFAAgE","sourcesContent":["// reexporting what we want to share with integrators\nexport {\n Candle,\n CandlesResolution,\n MarketEntity,\n LpTransactionHistoryEntity,\n TradingHistoryEntity,\n OrderHistoryEntity,\n PositionEntity,\n TransactionHistoryType,\n MarginAccountTransactionHistoryType,\n MarginAccountTransactionHistoryEntity,\n StrippedMarginAccountEntity,\n LpPositionEntity,\n LpPoolEntity,\n ReyaChainId,\n MoneyInOutChainId,\n LpBalanceGranularity,\n MarginAccountBalanceGranularity,\n GetMarginAccountBalanceChartDataResult,\n MarginAccountCollateralsBalanceGranularity,\n GetMarginAccountCollateralsBalanceChartDataResult,\n GetAllMarginAccountsBalanceChartDataResult,\n AllMarginAccountsBalanceGranularity,\n GetFundingRateChartDataResult,\n FundingRateHistoryGranularity,\n MoneyInOutConfigurationPerTokenName,\n UnifiedConditionalOrderType,\n ConditionalOrderType,\n} from '@reyaxyz/common';\nexport * from './modules/account/types';\nexport * from './modules/conditional-orders/types';\nexport * from './modules/lp/types';\nexport * from './modules/markets/types';\nexport * from './modules/tokens/types';\nexport * from './modules/owner/types';\nexport * from './modules/deposit-existing-MA.simulation/types';\nexport * from './modules/deposit-new-MA.simulation/types';\nexport * from './modules/deposit-passive-pool.simulation/types';\nexport * from './modules/edit-collateral.simulation/types';\nexport * from './modules/withdraw-MA.simulation/types';\nexport * from './modules/withdraw-passive-pool.simulation/types';\nexport * from './modules/transfer-margin-between-MAs.simulation/types';\nexport * from './modules/transfer-MA-Pool.simulation/types';\nexport * from './modules/funding-rate/types';\nexport * from './modules/depth-chart.simulation/types';\nexport * from './modules/deposit-passive-pool.simulation/types';\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"/","sources":["clients/modules/account/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,sBAAsB,EACtB,sBAAsB,EACtB,uBAAuB,EACvB,uBAAuB,EACvB,wCAAwC,EACxC,wCAAwC,EACxC,qCAAqC,EACrC,qCAAqC,EACrC,uBAAuB,EACvB,wBAAwB,EACxB,4CAA4C,EAC5C,uBAAuB,EACvB,wBAAwB,EACxB,2CAA2C,EAC3C,2CAA2C,EAC3C,0CAA0C,EAC1C,0CAA0C,EAC1C,iCAAiC,EACjC,iCAAiC,EACjC,2CAA2C,EAC3C,2CAA2C,EAC3C,uCAAuC,EACvC,uCAAuC,EACxC,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,6BAA6B,EAAE,UAAU,EAAE,MAAM,iBAAiB,CAAC;AAE5E,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,UAAU;IACnD;;;;;;;;;;;SAWK;IAEC,iBAAiB,CACrB,MAAM,EAAE,uBAAuB,GAC9B,OAAO,CAAC,uBAAuB,CAAC;IAUnC;;;;;;;;;;OAUG;IAEG,gBAAgB,CACpB,MAAM,EAAE,sBAAsB,GAC7B,OAAO,CAAC,sBAAsB,CAAC;IAK5B,qCAAqC,CACzC,MAAM,EAAE,2CAA2C,GAClD,OAAO,CAAC,2CAA2C,CAAC;IASjD,oCAAoC,CACxC,MAAM,EAAE,0CAA0C,GACjD,OAAO,CAAC,0CAA0C,CAAC;IAOhD,qCAAqC,CACzC,MAAM,EAAE,2CAA2C,GAClD,OAAO,CAAC,2CAA2C,CAAC;IAOjD,sCAAsC,CAC1C,MAAM,EAAE,4CAA4C,GACnD,OAAO,CAAC,6BAA6B,CAAC;IAKnC,kCAAkC,CACtC,MAAM,EAAE,wCAAwC,GAC/C,OAAO,CAAC,wCAAwC,CAAC;IAO9C,2BAA2B,CAC/B,MAAM,EAAE,iCAAiC,GACxC,OAAO,CAAC,iCAAiC,CAAC;IAOvC,+BAA+B,CACnC,MAAM,EAAE,qCAAqC,GAC5C,OAAO,CAAC,qCAAqC,CAAC;IAQ3C,iBAAiB,CACrB,MAAM,EAAE,uBAAuB,GAC9B,OAAO,CAAC,uBAAuB,CAAC;IAe7B,kBAAkB,CACtB,MAAM,EAAE,wBAAwB,GAC/B,OAAO,CAAC,wBAAwB,CAAC;IAW9B,iCAAiC,CACrC,MAAM,EAAE,uCAAuC,GAC9C,OAAO,CAAC,uCAAuC,CAAC;CAcpD"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"/","sources":["clients/modules/account/index.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,sBAAsB,EACtB,sBAAsB,EACtB,uBAAuB,EACvB,uBAAuB,EACvB,wCAAwC,EACxC,wCAAwC,EACxC,qCAAqC,EACrC,qCAAqC,EACrC,uBAAuB,EACvB,wBAAwB,EACxB,4CAA4C,EAC5C,uBAAuB,EACvB,wBAAwB,EACxB,2CAA2C,EAC3C,2CAA2C,EAC3C,0CAA0C,EAC1C,0CAA0C,EAC1C,iCAAiC,EACjC,iCAAiC,EACjC,2CAA2C,EAC3C,2CAA2C,EAC3C,uCAAuC,EACvC,uCAAuC,EACxC,MAAM,SAAS,CAAC;AACjB,OAAO,EACL,6BAA6B,EAC7B,UAAU,EAEX,MAAM,iBAAiB,CAAC;AAEzB,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,UAAU;IACnD;;;;;;;;;;;SAWK;IAEC,iBAAiB,CACrB,MAAM,EAAE,uBAAuB,GAC9B,OAAO,CAAC,uBAAuB,CAAC;IA2BnC;;;;;;;;;;OAUG;IAEG,gBAAgB,CACpB,MAAM,EAAE,sBAAsB,GAC7B,OAAO,CAAC,sBAAsB,CAAC;IAoB5B,qCAAqC,CACzC,MAAM,EAAE,2CAA2C,GAClD,OAAO,CAAC,2CAA2C,CAAC;IASjD,oCAAoC,CACxC,MAAM,EAAE,0CAA0C,GACjD,OAAO,CAAC,0CAA0C,CAAC;IAOhD,qCAAqC,CACzC,MAAM,EAAE,2CAA2C,GAClD,OAAO,CAAC,2CAA2C,CAAC;IAOjD,sCAAsC,CAC1C,MAAM,EAAE,4CAA4C,GACnD,OAAO,CAAC,6BAA6B,CAAC;IAKnC,kCAAkC,CACtC,MAAM,EAAE,wCAAwC,GAC/C,OAAO,CAAC,wCAAwC,CAAC;IAO9C,2BAA2B,CAC/B,MAAM,EAAE,iCAAiC,GACxC,OAAO,CAAC,iCAAiC,CAAC;IAOvC,+BAA+B,CACnC,MAAM,EAAE,qCAAqC,GAC5C,OAAO,CAAC,qCAAqC,CAAC;IAQ3C,iBAAiB,CACrB,MAAM,EAAE,uBAAuB,GAC9B,OAAO,CAAC,uBAAuB,CAAC;IAe7B,kBAAkB,CACtB,MAAM,EAAE,wBAAwB,GAC/B,OAAO,CAAC,wBAAwB,CAAC;IAW9B,iCAAiC,CACrC,MAAM,EAAE,uCAAuC,GAC9C,OAAO,CAAC,uCAAuC,CAAC;CAcpD"}
@@ -1,4 +1,4 @@
1
- import { MarginAccountEntity, MarginAccountTransactionHistoryEntity, MarketEntity, PositionEntity, OrderHistoryEntity } from '@reyaxyz/common';
1
+ import { MarginAccountTransactionHistoryEntity, MarketEntity, PositionEntity, OrderHistoryEntity, MarginRatioHealth, StrippedMarginAccountEntity } from '@reyaxyz/common';
2
2
  import { MarginAccountBalanceGranularity, MarginAccountCollateralsBalanceGranularity, AllMarginAccountsBalanceGranularity, ReferralFeeTransactionHistoryEntity, AutoExchangeEvent } from '@reyaxyz/common';
3
3
  import { Address } from '@reyaxyz/common';
4
4
  export type GetMarginAccountsParams = {
@@ -7,22 +7,22 @@ export type GetMarginAccountsParams = {
7
7
  };
8
8
  export type GetMarginAccountParams = {
9
9
  address: string;
10
- marginAccountId: MarginAccountEntity['id'];
10
+ marginAccountId: number;
11
11
  };
12
12
  export type GetPositionsForMarginAccountParams = {
13
13
  address: string;
14
- marginAccountId: MarginAccountEntity['id'];
14
+ marginAccountId: number;
15
15
  limit?: number;
16
16
  };
17
- export type GetMarginAccountsResult = MarginAccountEntity[];
18
- export type GetMarginAccountResult = MarginAccountEntity;
17
+ export type GetMarginAccountsResult = StrippedMarginAccountEntity[];
18
+ export type GetMarginAccountResult = StrippedMarginAccountEntity;
19
19
  export type GetMarginAccountTransactionHistoryParams = {
20
- marginAccountId: MarginAccountEntity['id'];
20
+ marginAccountId: number;
21
21
  limit?: number;
22
22
  };
23
23
  export type GetMarginAccountTransactionHistoryResult = MarginAccountTransactionHistoryEntity[];
24
24
  export type GetAccountFeeRebatesHistoryParams = {
25
- marginAccountId: MarginAccountEntity['id'];
25
+ marginAccountId: number;
26
26
  limit?: number;
27
27
  };
28
28
  export type GetAccountFeeRebatesHistoryResult = {
@@ -30,7 +30,7 @@ export type GetAccountFeeRebatesHistoryResult = {
30
30
  };
31
31
  export type GetMaxOrderSizeAvailableParams = {
32
32
  marketId: MarketEntity['id'];
33
- marginAccountId: MarginAccountEntity['id'];
33
+ marginAccountId: number;
34
34
  direction: 'long' | 'short';
35
35
  };
36
36
  export type GetMaxOrderSizeAvailableResult = {
@@ -38,7 +38,7 @@ export type GetMaxOrderSizeAvailableResult = {
38
38
  maxAmountSize: number;
39
39
  };
40
40
  export type GetMaxWithdrawBalanceForAccountParams = {
41
- marginAccountId: MarginAccountEntity['id'];
41
+ marginAccountId: number;
42
42
  tokenAddress: string;
43
43
  };
44
44
  export type GetMaxWithdrawBalanceForAccountResult = number;
@@ -48,12 +48,12 @@ export type GetPositionsForMarginAccountResult = {
48
48
  };
49
49
  export type GetMarginAccountOrderHistoryParams = {
50
50
  address: string;
51
- marginAccountId: MarginAccountEntity['id'];
51
+ marginAccountId: number;
52
52
  limit?: number;
53
53
  };
54
54
  export type GetMarginAccountOrderHistoryPaginatedParams = {
55
55
  address: string;
56
- marginAccountId: MarginAccountEntity['id'];
56
+ marginAccountId: number;
57
57
  page: number;
58
58
  perPage: number;
59
59
  type?: 'order' | 'liquidation';
@@ -80,10 +80,10 @@ export type LiquidationHistoryEntity = {
80
80
  timestamp: number;
81
81
  baseUnderlyingToken: string;
82
82
  marginAccount: {
83
- id: MarginAccountEntity['id'];
84
- name: MarginAccountEntity['name'];
85
- marginRatioPercentage: MarginAccountEntity['marginRatioPercentage'];
86
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
83
+ id: number;
84
+ name: string;
85
+ marginRatioPercentage: number;
86
+ marginRatioHealth: MarginRatioHealth;
87
87
  };
88
88
  };
89
89
  export type GetAutoExchangeHistoryForOwnerAddressParams = GetLiquidationHistoryForOwnerAddressParams;
@@ -92,20 +92,20 @@ export type GetAutoExchangeHistoryForOwnerAddressResult = {
92
92
  };
93
93
  export type GetTransactionSimulationInitialDataParams = {
94
94
  marketId: MarketEntity['id'];
95
- marginAccountId: MarginAccountEntity['id'];
95
+ marginAccountId: number;
96
96
  };
97
97
  export type GetEditCollateralSimulationInitialDataParams = {
98
- marginAccountId: MarginAccountEntity['id'];
98
+ marginAccountId: number;
99
99
  };
100
100
  export type GetMarginAccountBalanceChartDataParams = {
101
- marginAccountId: MarginAccountEntity['id'];
101
+ marginAccountId: number;
102
102
  filters: {
103
103
  timeframeMs: number;
104
104
  granularity: MarginAccountBalanceGranularity;
105
105
  };
106
106
  };
107
107
  export type GetMarginAccountCollateralsBalanceChartDataParams = {
108
- marginAccountId: MarginAccountEntity['id'];
108
+ marginAccountId: number;
109
109
  filters: {
110
110
  timeframeMs: number;
111
111
  granularity: MarginAccountCollateralsBalanceGranularity;
@@ -119,14 +119,14 @@ export type GetAllMarginAccountsBalanceChartDataParams = {
119
119
  };
120
120
  };
121
121
  export type EditMarginAccountParams = {
122
- id: MarginAccountEntity['id'];
123
- name: MarginAccountEntity['name'];
122
+ id: number;
123
+ name: string;
124
124
  };
125
125
  export type EditMarginAccountResult = {
126
126
  success: boolean;
127
127
  };
128
128
  export type CloseMarginAccountParams = {
129
- id: MarginAccountEntity['id'];
129
+ id: number;
130
130
  };
131
131
  export type CloseMarginAccountResult = {
132
132
  success: boolean;
@@ -142,7 +142,7 @@ export type GetAllMarginAccountsSummaryResult = {
142
142
  };
143
143
  export type GetIsolatedOrderMaxSizeAvailableParams = {
144
144
  marketId: MarketEntity['id'];
145
- marginAccountId: MarginAccountEntity['id'];
145
+ marginAccountId: number;
146
146
  direction: 'long' | 'short';
147
147
  };
148
148
  export type GetIsolatedOrderMaxSizeAvailableResult = {
@@ -150,7 +150,7 @@ export type GetIsolatedOrderMaxSizeAvailableResult = {
150
150
  maxAmountSize: number;
151
151
  };
152
152
  export type UpdateLeverageForAccountAndMarketParams = {
153
- accountId: MarginAccountEntity['id'];
153
+ accountId: number;
154
154
  marketId: MarketEntity['id'];
155
155
  leverage: number;
156
156
  };
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/account/types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/account/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,qCAAqC,EACrC,YAAY,EACZ,cAAc,EACd,kBAAkB,EAClB,iBAAiB,EACjB,2BAA2B,EAC5B,MAAM,iBAAiB,CAAC;AACzB,OAAO,EACL,+BAA+B,EAC/B,0CAA0C,EAC1C,mCAAmC,EACnC,mCAAmC,EACnC,iBAAiB,EAClB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAE1C,MAAM,MAAM,uBAAuB,GAAG;IACpC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,sBAAsB,GAAG;IACnC,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,kCAAkC,GAAG;IAC/C,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,2BAA2B,EAAE,CAAC;AAEpE,MAAM,MAAM,sBAAsB,GAAG,2BAA2B,CAAC;AAGjE,MAAM,MAAM,wCAAwC,GAAG;IACrD,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,wCAAwC,GAClD,qCAAqC,EAAE,CAAC;AAE1C,MAAM,MAAM,iCAAiC,GAAG;IAC9C,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,iCAAiC,GAAG;IAC9C,MAAM,EAAE,mCAAmC,EAAE,CAAC;CAC/C,CAAC;AAGF,MAAM,MAAM,8BAA8B,GAAG;IAC3C,QAAQ,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG;IAC3C,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAGF,MAAM,MAAM,qCAAqC,GAAG;IAClD,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,qCAAqC,GAAG,MAAM,CAAC;AAE3D,MAAM,MAAM,kCAAkC,GAAG;IAC/C,SAAS,EAAE,cAAc,EAAE,CAAC;IAC5B,kBAAkB,EAAE,MAAM,CAAC;CAC5B,CAAC;AAIF,MAAM,MAAM,kCAAkC,GAAG;IAC/C,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AACF,MAAM,MAAM,2CAA2C,GAAG;IACxD,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,MAAM,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,GAAG,aAAa,CAAC;CAChC,CAAC;AACF,MAAM,MAAM,kCAAkC,GAAG,kBAAkB,EAAE,CAAC;AACtE,MAAM,MAAM,2CAA2C,GAAG;IACxD,IAAI,EAAE,kBAAkB,EAAE,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC;AAGF,MAAM,MAAM,0CAA0C,GAAG;IACvD,OAAO,EAAE,OAAO,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;CACzB,CAAC;AACF,MAAM,MAAM,0CAA0C,GAAG;IACvD,IAAI,EAAE,wBAAwB,EAAE,CAAC;CAClC,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,kBAAkB,GAAG,mBAAmB,CAAC;IACjD,cAAc,EAAE,MAAM,CAAC;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,mBAAmB,EAAE,MAAM,CAAC;IAC5B,aAAa,EAAE;QACb,EAAE,EAAE,MAAM,CAAC;QACX,IAAI,EAAE,MAAM,CAAC;QACb,qBAAqB,EAAE,MAAM,CAAC;QAC9B,iBAAiB,EAAE,iBAAiB,CAAC;KACtC,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,2CAA2C,GACrD,0CAA0C,CAAC;AAC7C,MAAM,MAAM,2CAA2C,GAAG;IACxD,IAAI,EAAE,iBAAiB,EAAE,CAAC;CAC3B,CAAC;AAIF,MAAM,MAAM,yCAAyC,GAAG;IACtD,QAAQ,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;CACzB,CAAC;AAIF,MAAM,MAAM,4CAA4C,GAAG;IACzD,eAAe,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,sCAAsC,GAAG;IACnD,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE;QACP,WAAW,EAAE,MAAM,CAAC;QACpB,WAAW,EAAE,+BAA+B,CAAC;KAC9C,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,iDAAiD,GAAG;IAC9D,eAAe,EAAE,MAAM,CAAC;IACxB,OAAO,EAAE;QACP,WAAW,EAAE,MAAM,CAAC;QACpB,WAAW,EAAE,0CAA0C,CAAC;KACzD,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,0CAA0C,GAAG;IACvD,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE;QACP,WAAW,EAAE,MAAM,CAAC;QACpB,WAAW,EAAE,mCAAmC,CAAC;KAClD,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IACpC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG;IAAE,OAAO,EAAE,OAAO,CAAA;CAAE,CAAC;AAE3D,MAAM,MAAM,wBAAwB,GAAG;IACrC,EAAE,EAAE,MAAM,CAAC;CACZ,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IAAE,OAAO,EAAE,OAAO,CAAA;CAAE,CAAC;AAE5D,MAAM,MAAM,iCAAiC,GAAG;IAC9C,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,iCAAiC,GAAG;IAC9C,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,EAAE,MAAM,CAAC;IACrB,4BAA4B,EAAE,MAAM,CAAC;IACrC,2BAA2B,EAAE,MAAM,CAAC;CACrC,CAAC;AAEF,MAAM,MAAM,sCAAsC,GAAG;IACnD,QAAQ,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAC7B,eAAe,EAAE,MAAM,CAAC;IACxB,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,sCAAsC,GAAG;IACnD,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,uCAAuC,GAAG;IACpD,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAC7B,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,uCAAuC,GAAG;IACpD,UAAU,EAAE,OAAO,CAAC;IACpB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC"}
@@ -1,9 +1,8 @@
1
1
  import { JsonRpcSigner, Signer } from 'ethers';
2
- import { MarginAccountEntity } from '@reyaxyz/common';
3
2
  import { RegistrationResponseJSON } from '@simplewebauthn/types';
4
3
  export type RegisterParams = {
5
4
  signer: Signer | JsonRpcSigner;
6
- marginAccountId: MarginAccountEntity['id'];
5
+ marginAccountId: number;
7
6
  attestationResponse: RegistrationResponseJSON;
8
7
  };
9
8
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/auth/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAC/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,iBAAiB,CAAC;AACtD,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAEjE,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,GAAG,aAAa,CAAC;IAC/B,eAAe,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;IAC3C,mBAAmB,EAAE,wBAAwB,CAAC;CAC/C,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/auth/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAC/C,OAAO,EAAE,wBAAwB,EAAE,MAAM,uBAAuB,CAAC;AAEjE,MAAM,MAAM,cAAc,GAAG;IAC3B,MAAM,EAAE,MAAM,GAAG,aAAa,CAAC;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,mBAAmB,EAAE,wBAAwB,CAAC;CAC/C,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import { ConditionalOrder, UnifiedConditionalOrderType, ConditionalOrderType } from '@reyaxyz/common';
2
2
  import { Signer, JsonRpcSigner } from 'ethers';
3
- import { MarginAccountEntity, MarketEntity, Address } from '@reyaxyz/common';
3
+ import { MarketEntity, Address } from '@reyaxyz/common';
4
4
  export type CancelConditionalOrderParams = {
5
5
  signer: Signer | JsonRpcSigner;
6
6
  orderId: string;
@@ -22,7 +22,7 @@ export type OrderSupportingParams = {
22
22
  };
23
23
  export type RegisterConditionalOrderParams = {
24
24
  signer: Signer | JsonRpcSigner;
25
- marginAccountId: MarginAccountEntity['id'];
25
+ marginAccountId: number;
26
26
  triggerPrice: number;
27
27
  orderType: ConditionalOrderType;
28
28
  marketId: number;
@@ -49,7 +49,7 @@ export type AlreadyGaveTradePermissionToWalletResult = {
49
49
  };
50
50
  export type GetConditionalOrdersHistoryForMarginAccountParams = {
51
51
  address: string;
52
- marginAccountId: MarginAccountEntity['id'];
52
+ marginAccountId: number;
53
53
  limit?: number;
54
54
  };
55
55
  export type GetConditionalOrdersHistoryForWalletAddressParams = {
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/conditional-orders/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAC/C,OAAO,EAAE,mBAAmB,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAE7E,MAAM,MAAM,4BAA4B,GAAG;IACzC,MAAM,EAAE,MAAM,GAAG,aAAa,CAAC;IAC/B,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG,gBAAgB,CAAC;AAE5D,MAAM,MAAM,uBAAuB,GAAG;IACpC,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,sBAAsB,EAAE,MAAM,EAAE,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,UAAU,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC,YAAY,CAAC,CAAC;IACpD,sBAAsB,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC,wBAAwB,CAAC,CAAC;CAC7E,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG;IAC3C,MAAM,EAAE,MAAM,GAAG,aAAa,CAAC;IAC/B,eAAe,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;IAC3C,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,oBAAoB,CAAC;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,qBAAqB,CAAC;IACxC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,aAAa,EAAE,MAAM,CAAC;CACvB,GAAG,8BAA8B,CAAC;AAEnC,MAAM,MAAM,8BAA8B,GAAG,gBAAgB,CAAC;AAC9D,MAAM,MAAM,4BAA4B,GAAG,gBAAgB,CAAC;AAE5D,MAAM,MAAM,gCAAgC,GAAG;IAC7C,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,gCAAgC,GAAG;IAC7C,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,wCAAwC,GAAG;IACrD,SAAS,EAAE,MAAM,CAAC;IAClB,mBAAmB,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,wCAAwC,GAAG;IACrD,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;AAGF,MAAM,MAAM,iDAAiD,GAAG;IAC9D,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;IAC3C,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,iDAAiD,GAAG;IAC9D,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,iDAAiD,GAC3D,2BAA2B,EAAE,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/conditional-orders/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,gBAAgB,EAChB,2BAA2B,EAC3B,oBAAoB,EACrB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,QAAQ,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAExD,MAAM,MAAM,4BAA4B,GAAG;IACzC,MAAM,EAAE,MAAM,GAAG,aAAa,CAAC;IAC/B,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG,gBAAgB,CAAC;AAE5D,MAAM,MAAM,uBAAuB,GAAG;IACpC,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,sBAAsB,EAAE,MAAM,EAAE,CAAC;IACjC,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,UAAU,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC,YAAY,CAAC,CAAC;IACpD,sBAAsB,EAAE,YAAY,CAAC,WAAW,CAAC,CAAC,wBAAwB,CAAC,CAAC;CAC7E,CAAC;AAEF,MAAM,MAAM,8BAA8B,GAAG;IAC3C,MAAM,EAAE,MAAM,GAAG,aAAa,CAAC;IAC/B,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,SAAS,EAAE,oBAAoB,CAAC;IAChC,QAAQ,EAAE,MAAM,CAAC;IACjB,gBAAgB,EAAE,qBAAqB,CAAC;IACxC,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,aAAa,EAAE,MAAM,CAAC;CACvB,GAAG,8BAA8B,CAAC;AAEnC,MAAM,MAAM,8BAA8B,GAAG,gBAAgB,CAAC;AAC9D,MAAM,MAAM,4BAA4B,GAAG,gBAAgB,CAAC;AAE5D,MAAM,MAAM,gCAAgC,GAAG;IAC7C,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,gCAAgC,GAAG;IAC7C,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,MAAM,MAAM,wCAAwC,GAAG;IACrD,SAAS,EAAE,MAAM,CAAC;IAClB,mBAAmB,EAAE,OAAO,CAAC;CAC9B,CAAC;AAEF,MAAM,MAAM,wCAAwC,GAAG;IACrD,eAAe,EAAE,OAAO,CAAC;CAC1B,CAAC;AAGF,MAAM,MAAM,iDAAiD,GAAG;IAC9D,OAAO,EAAE,MAAM,CAAC;IAChB,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,iDAAiD,GAAG;IAC9D,aAAa,EAAE,MAAM,CAAC;IACtB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,iDAAiD,GAC3D,2BAA2B,EAAE,CAAC"}
@@ -1,4 +1,4 @@
1
- import { MarginAccountEntity, MoneyInOutChainId, SocketDepositFees, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, MoneyInOutChainId, SocketDepositFees, TokenEntity } from '@reyaxyz/common';
2
2
  import { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';
3
3
  export type DepositExistingMASimulationLoadDataParams = EditCollateralSimulationLoadDataParams;
4
4
  export type DepositExistingMASimulationSimulateParams = {
@@ -9,7 +9,7 @@ export type DepositExistingMASimulationSimulateParams = {
9
9
  export type SimulateDepositExistingMAEntity = {
10
10
  socketDepositFees: SocketDepositFees;
11
11
  bridgeTimeInMS: number;
12
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
13
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
12
+ marginRatio: number;
13
+ marginRatioHealth: MarginRatioHealth;
14
14
  };
15
15
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/deposit-existing-MA.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,WAAW,EACZ,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,sCAAsC,EAAE,MAAM,qCAAqC,CAAC;AAE7F,MAAM,MAAM,yCAAyC,GACnD,sCAAsC,CAAC;AAEzC,MAAM,MAAM,yCAAyC,GAAG;IACtD,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,+BAA+B,GAAG;IAC5C,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,mBAAmB,CAAC,uBAAuB,CAAC,CAAC;IAC1D,iBAAiB,EAAE,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;CAC7D,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/deposit-existing-MA.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EACjB,iBAAiB,EACjB,WAAW,EACZ,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,sCAAsC,EAAE,MAAM,qCAAqC,CAAC;AAE7F,MAAM,MAAM,yCAAyC,GACnD,sCAAsC,CAAC;AAEzC,MAAM,MAAM,yCAAyC,GAAG;IACtD,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,+BAA+B,GAAG;IAC5C,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,iBAAiB,CAAC;CACtC,CAAC"}
@@ -1,13 +1,13 @@
1
- import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';
2
2
  export type EditCollateralSimulationLoadDataParams = {
3
- marginAccountId: MarginAccountEntity['id'];
3
+ marginAccountId: number;
4
4
  };
5
5
  export type EditCollateralSimulationSimulateParams = {
6
6
  signedAmount: number;
7
7
  tokenAddress: TokenEntity['address'];
8
8
  };
9
9
  export type SimulateEditCollateralEntity = {
10
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
11
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
10
+ marginRatio: number;
11
+ marginRatioHealth: MarginRatioHealth;
12
12
  };
13
13
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/edit-collateral.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAEnE,MAAM,MAAM,sCAAsC,GAAG;IACnD,eAAe,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;CAC5C,CAAC;AAEF,MAAM,MAAM,sCAAsC,GAAG;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,WAAW,EAAE,mBAAmB,CAAC,uBAAuB,CAAC,CAAC;IAC1D,iBAAiB,EAAE,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;CAC7D,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/edit-collateral.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAEjE,MAAM,MAAM,sCAAsC,GAAG;IACnD,eAAe,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF,MAAM,MAAM,sCAAsC,GAAG;IACnD,YAAY,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,iBAAiB,CAAC;CACtC,CAAC"}
@@ -1,4 +1,4 @@
1
- import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';
2
2
  import { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';
3
3
  export type TransferMAPoolSimulationLoadDataParams = EditCollateralSimulationLoadDataParams;
4
4
  export type TransferMAPoolSimulationSimulateParams = {
@@ -6,7 +6,7 @@ export type TransferMAPoolSimulationSimulateParams = {
6
6
  tokenAddress: TokenEntity['address'];
7
7
  };
8
8
  export type SimulateTransferMAPoolEntity = {
9
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
10
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
9
+ marginRatio: number;
10
+ marginRatioHealth: MarginRatioHealth;
11
11
  };
12
12
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/transfer-MA-Pool.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACnE,OAAO,EAAE,sCAAsC,EAAE,MAAM,qCAAqC,CAAC;AAE7F,MAAM,MAAM,sCAAsC,GAChD,sCAAsC,CAAC;AAEzC,MAAM,MAAM,sCAAsC,GAAG;IACnD,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,WAAW,EAAE,mBAAmB,CAAC,uBAAuB,CAAC,CAAC;IAC1D,iBAAiB,EAAE,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;CAC7D,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/transfer-MA-Pool.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EAAE,sCAAsC,EAAE,MAAM,qCAAqC,CAAC;AAE7F,MAAM,MAAM,sCAAsC,GAChD,sCAAsC,CAAC;AAEzC,MAAM,MAAM,sCAAsC,GAAG;IACnD,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,4BAA4B,GAAG;IACzC,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,iBAAiB,CAAC;CACtC,CAAC"}
@@ -1,16 +1,16 @@
1
- import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';
2
2
  export type TransferMarginBetweenMAsSimulationLoadDataParams = {
3
- fromMarginAccountId: MarginAccountEntity['id'];
4
- toMarginAccountId: MarginAccountEntity['id'];
3
+ fromMarginAccountId: number;
4
+ toMarginAccountId: number;
5
5
  };
6
6
  export type TransferMarginBetweenMAsSimulationSimulateParams = {
7
7
  amount: number;
8
8
  tokenAddress: TokenEntity['address'];
9
9
  };
10
10
  export type SimulateTransferMarginBetweenMAsEntity = {
11
- fromMarginRatio: MarginAccountEntity['marginRatioPercentage'];
12
- fromMarginRatioHealth: MarginAccountEntity['marginRatioHealth'];
13
- toMarginRatio: MarginAccountEntity['marginRatioPercentage'];
14
- toMarginRatioHealth: MarginAccountEntity['marginRatioHealth'];
11
+ fromMarginRatio: number;
12
+ fromMarginRatioHealth: MarginRatioHealth;
13
+ toMarginRatio: number;
14
+ toMarginRatioHealth: MarginRatioHealth;
15
15
  };
16
16
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/transfer-margin-between-MAs.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAEnE,MAAM,MAAM,gDAAgD,GAAG;IAC7D,mBAAmB,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;IAC/C,iBAAiB,EAAE,mBAAmB,CAAC,IAAI,CAAC,CAAC;CAC9C,CAAC;AAEF,MAAM,MAAM,gDAAgD,GAAG;IAC7D,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,sCAAsC,GAAG;IACnD,eAAe,EAAE,mBAAmB,CAAC,uBAAuB,CAAC,CAAC;IAC9D,qBAAqB,EAAE,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;IAChE,aAAa,EAAE,mBAAmB,CAAC,uBAAuB,CAAC,CAAC;IAC5D,mBAAmB,EAAE,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;CAC/D,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/transfer-margin-between-MAs.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAEjE,MAAM,MAAM,gDAAgD,GAAG;IAC7D,mBAAmB,EAAE,MAAM,CAAC;IAC5B,iBAAiB,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF,MAAM,MAAM,gDAAgD,GAAG;IAC7D,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,sCAAsC,GAAG;IACnD,eAAe,EAAE,MAAM,CAAC;IACxB,qBAAqB,EAAE,iBAAiB,CAAC;IACzC,aAAa,EAAE,MAAM,CAAC;IACtB,mBAAmB,EAAE,iBAAiB,CAAC;CACxC,CAAC"}
@@ -1,4 +1,4 @@
1
- import { MarginAccountEntity, MoneyInOutChainId, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, MoneyInOutChainId, TokenEntity } from '@reyaxyz/common';
2
2
  import { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';
3
3
  import { SocketWithdrawFees } from '@reyaxyz/common';
4
4
  export type WithdrawMASimulationLoadDataParams = EditCollateralSimulationLoadDataParams;
@@ -10,7 +10,7 @@ export type WithdrawMASimulationSimulateParams = {
10
10
  export type SimulateWithdrawMAEntity = {
11
11
  socketWithdrawFees: SocketWithdrawFees;
12
12
  bridgeTimeInMS: number;
13
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
14
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
13
+ marginRatio: number;
14
+ marginRatioHealth: MarginRatioHealth;
15
15
  };
16
16
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/withdraw-MA.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,mBAAmB,EACnB,iBAAiB,EACjB,WAAW,EACZ,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,sCAAsC,EAAE,MAAM,qCAAqC,CAAC;AAC7F,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAErD,MAAM,MAAM,kCAAkC,GAC5C,sCAAsC,CAAC;AAEzC,MAAM,MAAM,kCAAkC,GAAG;IAC/C,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,kBAAkB,EAAE,kBAAkB,CAAC;IACvC,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,mBAAmB,CAAC,uBAAuB,CAAC,CAAC;IAC1D,iBAAiB,EAAE,mBAAmB,CAAC,mBAAmB,CAAC,CAAC;CAC7D,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/modules/withdraw-MA.simulation/types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,iBAAiB,EACjB,WAAW,EACZ,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,sCAAsC,EAAE,MAAM,qCAAqC,CAAC;AAC7F,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAErD,MAAM,MAAM,kCAAkC,GAC5C,sCAAsC,CAAC;AAEzC,MAAM,MAAM,kCAAkC,GAAG;IAC/C,iBAAiB,EAAE,iBAAiB,CAAC;IACrC,MAAM,EAAE,MAAM,CAAC;IACf,YAAY,EAAE,WAAW,CAAC,SAAS,CAAC,CAAC;CACtC,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG;IACrC,kBAAkB,EAAE,kBAAkB,CAAC;IACvC,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,iBAAiB,EAAE,iBAAiB,CAAC;CACtC,CAAC"}
@@ -1,4 +1,4 @@
1
- export { Candle, CandlesResolution, MarketEntity, LpTransactionHistoryEntity, TradingHistoryEntity, OrderHistoryEntity, PositionEntity, TransactionHistoryType, MarginAccountTransactionHistoryType, MarginAccountTransactionHistoryEntity, MarginAccountEntity, LpPositionEntity, LpPoolEntity, ReyaChainId, MoneyInOutChainId, LpBalanceGranularity, MarginAccountBalanceGranularity, GetMarginAccountBalanceChartDataResult, MarginAccountCollateralsBalanceGranularity, GetMarginAccountCollateralsBalanceChartDataResult, GetAllMarginAccountsBalanceChartDataResult, AllMarginAccountsBalanceGranularity, GetFundingRateChartDataResult, FundingRateHistoryGranularity, MoneyInOutConfigurationPerTokenName, UnifiedConditionalOrderType, ConditionalOrderType, } from '@reyaxyz/common';
1
+ export { Candle, CandlesResolution, MarketEntity, LpTransactionHistoryEntity, TradingHistoryEntity, OrderHistoryEntity, PositionEntity, TransactionHistoryType, MarginAccountTransactionHistoryType, MarginAccountTransactionHistoryEntity, StrippedMarginAccountEntity, LpPositionEntity, LpPoolEntity, ReyaChainId, MoneyInOutChainId, LpBalanceGranularity, MarginAccountBalanceGranularity, GetMarginAccountBalanceChartDataResult, MarginAccountCollateralsBalanceGranularity, GetMarginAccountCollateralsBalanceChartDataResult, GetAllMarginAccountsBalanceChartDataResult, AllMarginAccountsBalanceGranularity, GetFundingRateChartDataResult, FundingRateHistoryGranularity, MoneyInOutConfigurationPerTokenName, UnifiedConditionalOrderType, ConditionalOrderType, } from '@reyaxyz/common';
2
2
  export * from './modules/account/types';
3
3
  export * from './modules/conditional-orders/types';
4
4
  export * from './modules/lp/types';
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/types.ts"],"names":[],"mappings":"AACA,OAAO,EACL,MAAM,EACN,iBAAiB,EACjB,YAAY,EACZ,0BAA0B,EAC1B,oBAAoB,EACpB,kBAAkB,EAClB,cAAc,EACd,sBAAsB,EACtB,mCAAmC,EACnC,qCAAqC,EACrC,mBAAmB,EACnB,gBAAgB,EAChB,YAAY,EACZ,WAAW,EACX,iBAAiB,EACjB,oBAAoB,EACpB,+BAA+B,EAC/B,sCAAsC,EACtC,0CAA0C,EAC1C,iDAAiD,EACjD,0CAA0C,EAC1C,mCAAmC,EACnC,6BAA6B,EAC7B,6BAA6B,EAC7B,mCAAmC,EACnC,2BAA2B,EAC3B,oBAAoB,GACrB,MAAM,iBAAiB,CAAC;AACzB,cAAc,yBAAyB,CAAC;AACxC,cAAc,oCAAoC,CAAC;AACnD,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,iDAAiD,CAAC;AAChE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,wDAAwD,CAAC;AACvE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wCAAwC,CAAC;AACvD,cAAc,iDAAiD,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"/","sources":["clients/types.ts"],"names":[],"mappings":"AACA,OAAO,EACL,MAAM,EACN,iBAAiB,EACjB,YAAY,EACZ,0BAA0B,EAC1B,oBAAoB,EACpB,kBAAkB,EAClB,cAAc,EACd,sBAAsB,EACtB,mCAAmC,EACnC,qCAAqC,EACrC,2BAA2B,EAC3B,gBAAgB,EAChB,YAAY,EACZ,WAAW,EACX,iBAAiB,EACjB,oBAAoB,EACpB,+BAA+B,EAC/B,sCAAsC,EACtC,0CAA0C,EAC1C,iDAAiD,EACjD,0CAA0C,EAC1C,mCAAmC,EACnC,6BAA6B,EAC7B,6BAA6B,EAC7B,mCAAmC,EACnC,2BAA2B,EAC3B,oBAAoB,GACrB,MAAM,iBAAiB,CAAC;AACzB,cAAc,yBAAyB,CAAC;AACxC,cAAc,oCAAoC,CAAC;AACnD,cAAc,oBAAoB,CAAC;AACnC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,uBAAuB,CAAC;AACtC,cAAc,gDAAgD,CAAC;AAC/D,cAAc,2CAA2C,CAAC;AAC1D,cAAc,iDAAiD,CAAC;AAChE,cAAc,4CAA4C,CAAC;AAC3D,cAAc,wCAAwC,CAAC;AACvD,cAAc,kDAAkD,CAAC;AACjE,cAAc,wDAAwD,CAAC;AACvE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,8BAA8B,CAAC;AAC7C,cAAc,wCAAwC,CAAC;AACvD,cAAc,iDAAiD,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reyaxyz/api-sdk",
3
- "version": "0.158.0",
3
+ "version": "0.159.0",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -33,15 +33,15 @@
33
33
  "generate:coverage-badges": "npx istanbul-badges-readme --silent"
34
34
  },
35
35
  "dependencies": {
36
- "@reyaxyz/common": "0.311.0",
36
+ "@reyaxyz/common": "0.312.0",
37
37
  "@simplewebauthn/types": "10.0.0",
38
38
  "bignumber.js": "9.1.2",
39
39
  "ethers": "6.9.0",
40
40
  "isomorphic-ws": "5.0.0"
41
41
  },
42
42
  "packageManager": "pnpm@8.3.1",
43
- "gitHead": "48c795585a82a1388f2868b80dee23151dd428de",
43
+ "gitHead": "9466fb19baa2841b90d1d99f5eb4ca44bf457e73",
44
44
  "devDependencies": {
45
- "@reyaxyz/database": "0.149.6"
45
+ "@reyaxyz/database": "0.149.7"
46
46
  }
47
47
  }
@@ -23,7 +23,11 @@ import {
23
23
  UpdateLeverageForAccountAndMarketParams,
24
24
  UpdateLeverageForAccountAndMarketResult,
25
25
  } from './types';
26
- import { EditCollateralSimulationState, RestClient } from '@reyaxyz/common';
26
+ import {
27
+ EditCollateralSimulationState,
28
+ RestClient,
29
+ StrippedMarginAccountEntity,
30
+ } from '@reyaxyz/common';
27
31
 
28
32
  export default class AccountClient extends RestClient {
29
33
  /**
@@ -48,7 +52,24 @@ export default class AccountClient extends RestClient {
48
52
  includePositions: false,
49
53
  });
50
54
 
51
- return response;
55
+ const strippedResponse = response.map(
56
+ (account): StrippedMarginAccountEntity => {
57
+ return {
58
+ id: account.id,
59
+ name: account.name,
60
+ marginRatioHealth: account.marginRatioHealth,
61
+ marginRatioPercentage: account.marginRatioPercentage,
62
+ marginRatioHealthDangerThreshold:
63
+ account.marginRatioHealthDangerThreshold,
64
+ marginRatioHealthWarningThreshold:
65
+ account.marginRatioHealthWarningThreshold,
66
+ isApproachingLiquidation: account.isApproachingLiquidation,
67
+ isLiquidationImminent: account.isLiquidationImminent,
68
+ };
69
+ },
70
+ );
71
+
72
+ return strippedResponse;
52
73
  }
53
74
 
54
75
  /**
@@ -67,7 +88,22 @@ export default class AccountClient extends RestClient {
67
88
  params: GetMarginAccountParams,
68
89
  ): Promise<GetMarginAccountResult> {
69
90
  const uri = `/api/accounts/${params.address}/marginAccount/${params.marginAccountId}`;
70
- return this.get(uri);
91
+ const response: GetMarginAccountResult = await this.get(uri);
92
+
93
+ const strippedResponse = {
94
+ id: response.id,
95
+ name: response.name,
96
+ marginRatioHealth: response.marginRatioHealth,
97
+ marginRatioPercentage: response.marginRatioPercentage,
98
+ marginRatioHealthDangerThreshold:
99
+ response.marginRatioHealthDangerThreshold,
100
+ marginRatioHealthWarningThreshold:
101
+ response.marginRatioHealthWarningThreshold,
102
+ isApproachingLiquidation: response.isApproachingLiquidation,
103
+ isLiquidationImminent: response.isLiquidationImminent,
104
+ };
105
+
106
+ return strippedResponse;
71
107
  }
72
108
 
73
109
  async getMarginAccountOrderHistoryPaginated(
@@ -1,9 +1,10 @@
1
1
  import {
2
- MarginAccountEntity,
3
2
  MarginAccountTransactionHistoryEntity,
4
3
  MarketEntity,
5
4
  PositionEntity,
6
5
  OrderHistoryEntity,
6
+ MarginRatioHealth,
7
+ StrippedMarginAccountEntity,
7
8
  } from '@reyaxyz/common';
8
9
  import {
9
10
  MarginAccountBalanceGranularity,
@@ -21,22 +22,22 @@ export type GetMarginAccountsParams = {
21
22
 
22
23
  export type GetMarginAccountParams = {
23
24
  address: string;
24
- marginAccountId: MarginAccountEntity['id'];
25
+ marginAccountId: number;
25
26
  };
26
27
 
27
28
  export type GetPositionsForMarginAccountParams = {
28
29
  address: string;
29
- marginAccountId: MarginAccountEntity['id'];
30
+ marginAccountId: number;
30
31
  limit?: number;
31
32
  };
32
33
 
33
- export type GetMarginAccountsResult = MarginAccountEntity[];
34
+ export type GetMarginAccountsResult = StrippedMarginAccountEntity[];
34
35
 
35
- export type GetMarginAccountResult = MarginAccountEntity;
36
+ export type GetMarginAccountResult = StrippedMarginAccountEntity;
36
37
 
37
38
  // ---- Transaction History
38
39
  export type GetMarginAccountTransactionHistoryParams = {
39
- marginAccountId: MarginAccountEntity['id'];
40
+ marginAccountId: number;
40
41
  limit?: number;
41
42
  };
42
43
 
@@ -44,7 +45,7 @@ export type GetMarginAccountTransactionHistoryResult =
44
45
  MarginAccountTransactionHistoryEntity[];
45
46
 
46
47
  export type GetAccountFeeRebatesHistoryParams = {
47
- marginAccountId: MarginAccountEntity['id'];
48
+ marginAccountId: number;
48
49
  limit?: number;
49
50
  };
50
51
 
@@ -55,7 +56,7 @@ export type GetAccountFeeRebatesHistoryResult = {
55
56
 
56
57
  export type GetMaxOrderSizeAvailableParams = {
57
58
  marketId: MarketEntity['id'];
58
- marginAccountId: MarginAccountEntity['id'];
59
+ marginAccountId: number;
59
60
  direction: 'long' | 'short';
60
61
  };
61
62
 
@@ -66,7 +67,7 @@ export type GetMaxOrderSizeAvailableResult = {
66
67
 
67
68
  // --- Max Withdraw Balance for Margin Account ---
68
69
  export type GetMaxWithdrawBalanceForAccountParams = {
69
- marginAccountId: MarginAccountEntity['id'];
70
+ marginAccountId: number;
70
71
  tokenAddress: string;
71
72
  };
72
73
 
@@ -81,12 +82,12 @@ export type GetPositionsForMarginAccountResult = {
81
82
 
82
83
  export type GetMarginAccountOrderHistoryParams = {
83
84
  address: string;
84
- marginAccountId: MarginAccountEntity['id'];
85
+ marginAccountId: number;
85
86
  limit?: number;
86
87
  };
87
88
  export type GetMarginAccountOrderHistoryPaginatedParams = {
88
89
  address: string;
89
- marginAccountId: MarginAccountEntity['id'];
90
+ marginAccountId: number;
90
91
  page: number;
91
92
  perPage: number;
92
93
  type?: 'order' | 'liquidation';
@@ -116,10 +117,10 @@ export type LiquidationHistoryEntity = {
116
117
  timestamp: number;
117
118
  baseUnderlyingToken: string;
118
119
  marginAccount: {
119
- id: MarginAccountEntity['id'];
120
- name: MarginAccountEntity['name'];
121
- marginRatioPercentage: MarginAccountEntity['marginRatioPercentage'];
122
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
120
+ id: number;
121
+ name: string;
122
+ marginRatioPercentage: number;
123
+ marginRatioHealth: MarginRatioHealth;
123
124
  };
124
125
  };
125
126
 
@@ -133,17 +134,17 @@ export type GetAutoExchangeHistoryForOwnerAddressResult = {
133
134
 
134
135
  export type GetTransactionSimulationInitialDataParams = {
135
136
  marketId: MarketEntity['id'];
136
- marginAccountId: MarginAccountEntity['id'];
137
+ marginAccountId: number;
137
138
  };
138
139
 
139
140
  // ---- Edit Collateral Simulation ----
140
141
 
141
142
  export type GetEditCollateralSimulationInitialDataParams = {
142
- marginAccountId: MarginAccountEntity['id'];
143
+ marginAccountId: number;
143
144
  };
144
145
 
145
146
  export type GetMarginAccountBalanceChartDataParams = {
146
- marginAccountId: MarginAccountEntity['id'];
147
+ marginAccountId: number;
147
148
  filters: {
148
149
  timeframeMs: number;
149
150
  granularity: MarginAccountBalanceGranularity;
@@ -151,7 +152,7 @@ export type GetMarginAccountBalanceChartDataParams = {
151
152
  };
152
153
 
153
154
  export type GetMarginAccountCollateralsBalanceChartDataParams = {
154
- marginAccountId: MarginAccountEntity['id'];
155
+ marginAccountId: number;
155
156
  filters: {
156
157
  timeframeMs: number;
157
158
  granularity: MarginAccountCollateralsBalanceGranularity;
@@ -167,14 +168,14 @@ export type GetAllMarginAccountsBalanceChartDataParams = {
167
168
  };
168
169
 
169
170
  export type EditMarginAccountParams = {
170
- id: MarginAccountEntity['id'];
171
- name: MarginAccountEntity['name'];
171
+ id: number;
172
+ name: string;
172
173
  };
173
174
 
174
175
  export type EditMarginAccountResult = { success: boolean };
175
176
 
176
177
  export type CloseMarginAccountParams = {
177
- id: MarginAccountEntity['id'];
178
+ id: number;
178
179
  };
179
180
 
180
181
  export type CloseMarginAccountResult = { success: boolean };
@@ -192,7 +193,7 @@ export type GetAllMarginAccountsSummaryResult = {
192
193
 
193
194
  export type GetIsolatedOrderMaxSizeAvailableParams = {
194
195
  marketId: MarketEntity['id'];
195
- marginAccountId: MarginAccountEntity['id'];
196
+ marginAccountId: number;
196
197
  direction: 'long' | 'short';
197
198
  };
198
199
 
@@ -202,7 +203,7 @@ export type GetIsolatedOrderMaxSizeAvailableResult = {
202
203
  };
203
204
 
204
205
  export type UpdateLeverageForAccountAndMarketParams = {
205
- accountId: MarginAccountEntity['id'];
206
+ accountId: number;
206
207
  marketId: MarketEntity['id'];
207
208
  leverage: number;
208
209
  };
@@ -1,9 +1,8 @@
1
1
  import { JsonRpcSigner, Signer } from 'ethers';
2
- import { MarginAccountEntity } from '@reyaxyz/common';
3
2
  import { RegistrationResponseJSON } from '@simplewebauthn/types';
4
3
 
5
4
  export type RegisterParams = {
6
5
  signer: Signer | JsonRpcSigner;
7
- marginAccountId: MarginAccountEntity['id'];
6
+ marginAccountId: number;
8
7
  attestationResponse: RegistrationResponseJSON;
9
8
  };
@@ -4,7 +4,7 @@ import {
4
4
  ConditionalOrderType,
5
5
  } from '@reyaxyz/common';
6
6
  import { Signer, JsonRpcSigner } from 'ethers';
7
- import { MarginAccountEntity, MarketEntity, Address } from '@reyaxyz/common';
7
+ import { MarketEntity, Address } from '@reyaxyz/common';
8
8
 
9
9
  export type CancelConditionalOrderParams = {
10
10
  signer: Signer | JsonRpcSigner;
@@ -31,7 +31,7 @@ export type OrderSupportingParams = {
31
31
 
32
32
  export type RegisterConditionalOrderParams = {
33
33
  signer: Signer | JsonRpcSigner;
34
- marginAccountId: MarginAccountEntity['id'];
34
+ marginAccountId: number;
35
35
  triggerPrice: number;
36
36
  orderType: ConditionalOrderType;
37
37
  marketId: number;
@@ -66,7 +66,7 @@ export type AlreadyGaveTradePermissionToWalletResult = {
66
66
  // ---- Conditional Orders History ---
67
67
  export type GetConditionalOrdersHistoryForMarginAccountParams = {
68
68
  address: string;
69
- marginAccountId: MarginAccountEntity['id'];
69
+ marginAccountId: number;
70
70
  limit?: number;
71
71
  };
72
72
 
@@ -1,5 +1,5 @@
1
1
  import {
2
- MarginAccountEntity,
2
+ MarginRatioHealth,
3
3
  MoneyInOutChainId,
4
4
  SocketDepositFees,
5
5
  TokenEntity,
@@ -18,6 +18,6 @@ export type DepositExistingMASimulationSimulateParams = {
18
18
  export type SimulateDepositExistingMAEntity = {
19
19
  socketDepositFees: SocketDepositFees;
20
20
  bridgeTimeInMS: number;
21
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
22
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
21
+ marginRatio: number;
22
+ marginRatioHealth: MarginRatioHealth;
23
23
  };
@@ -1,7 +1,7 @@
1
- import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';
2
2
 
3
3
  export type EditCollateralSimulationLoadDataParams = {
4
- marginAccountId: MarginAccountEntity['id'];
4
+ marginAccountId: number;
5
5
  };
6
6
 
7
7
  export type EditCollateralSimulationSimulateParams = {
@@ -10,6 +10,6 @@ export type EditCollateralSimulationSimulateParams = {
10
10
  };
11
11
 
12
12
  export type SimulateEditCollateralEntity = {
13
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
14
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
13
+ marginRatio: number;
14
+ marginRatioHealth: MarginRatioHealth;
15
15
  };
@@ -1,4 +1,4 @@
1
- import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';
2
2
  import { EditCollateralSimulationLoadDataParams } from '../edit-collateral.simulation/types';
3
3
 
4
4
  export type TransferMAPoolSimulationLoadDataParams =
@@ -10,6 +10,6 @@ export type TransferMAPoolSimulationSimulateParams = {
10
10
  };
11
11
 
12
12
  export type SimulateTransferMAPoolEntity = {
13
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
14
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
13
+ marginRatio: number;
14
+ marginRatioHealth: MarginRatioHealth;
15
15
  };
@@ -1,8 +1,8 @@
1
- import { MarginAccountEntity, TokenEntity } from '@reyaxyz/common';
1
+ import { MarginRatioHealth, TokenEntity } from '@reyaxyz/common';
2
2
 
3
3
  export type TransferMarginBetweenMAsSimulationLoadDataParams = {
4
- fromMarginAccountId: MarginAccountEntity['id'];
5
- toMarginAccountId: MarginAccountEntity['id'];
4
+ fromMarginAccountId: number;
5
+ toMarginAccountId: number;
6
6
  };
7
7
 
8
8
  export type TransferMarginBetweenMAsSimulationSimulateParams = {
@@ -11,8 +11,8 @@ export type TransferMarginBetweenMAsSimulationSimulateParams = {
11
11
  };
12
12
 
13
13
  export type SimulateTransferMarginBetweenMAsEntity = {
14
- fromMarginRatio: MarginAccountEntity['marginRatioPercentage'];
15
- fromMarginRatioHealth: MarginAccountEntity['marginRatioHealth'];
16
- toMarginRatio: MarginAccountEntity['marginRatioPercentage'];
17
- toMarginRatioHealth: MarginAccountEntity['marginRatioHealth'];
14
+ fromMarginRatio: number;
15
+ fromMarginRatioHealth: MarginRatioHealth;
16
+ toMarginRatio: number;
17
+ toMarginRatioHealth: MarginRatioHealth;
18
18
  };
@@ -1,5 +1,5 @@
1
1
  import {
2
- MarginAccountEntity,
2
+ MarginRatioHealth,
3
3
  MoneyInOutChainId,
4
4
  TokenEntity,
5
5
  } from '@reyaxyz/common';
@@ -18,6 +18,6 @@ export type WithdrawMASimulationSimulateParams = {
18
18
  export type SimulateWithdrawMAEntity = {
19
19
  socketWithdrawFees: SocketWithdrawFees;
20
20
  bridgeTimeInMS: number;
21
- marginRatio: MarginAccountEntity['marginRatioPercentage'];
22
- marginRatioHealth: MarginAccountEntity['marginRatioHealth'];
21
+ marginRatio: number;
22
+ marginRatioHealth: MarginRatioHealth;
23
23
  };
@@ -10,7 +10,7 @@ export {
10
10
  TransactionHistoryType,
11
11
  MarginAccountTransactionHistoryType,
12
12
  MarginAccountTransactionHistoryEntity,
13
- MarginAccountEntity,
13
+ StrippedMarginAccountEntity,
14
14
  LpPositionEntity,
15
15
  LpPoolEntity,
16
16
  ReyaChainId,