@xoxno/types 1.0.348 → 1.0.349

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.
@@ -1,11 +1,11 @@
1
- import { PerpOrderType, PerpTransferType } from '../../enums';
1
+ import { PerpOrderType, PerpTransferType, PerpWithdrawalChain } from '../../enums';
2
2
  export declare class PerpTransferTransfer {
3
3
  type: PerpOrderType.SEND_ASSET;
4
4
  destination: string;
5
5
  symbol: string;
6
6
  amount: string;
7
7
  sourceDex: PerpTransferType;
8
- destinationDex: PerpTransferType;
8
+ destinationDex: PerpTransferType | PerpWithdrawalChain;
9
9
  }
10
10
  export declare class PerpTransfer {
11
11
  action: PerpTransferTransfer;
@@ -149,7 +149,9 @@ export declare enum PerpOrderDetailedStatus {
149
149
  }
150
150
  export declare enum PerpTransferType {
151
151
  SPOT = "Spot",
152
- PERP = "Perps",
152
+ PERP = "Perps"
153
+ }
154
+ export declare enum PerpWithdrawalChain {
153
155
  MVX = "MVX",
154
156
  ETH = "ETH",
155
157
  BSC = "BSC"
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PerpTransferType = exports.PerpOrderDetailedStatus = exports.PerpOrderDirection = exports.PerpOrderDetailedType = exports.PerpOrderStatus = exports.PerpOrderType = exports.PerpOrderTpsl = exports.PerpOrderTimeInForce = exports.PerpOrderGrouping = exports.PerpDepositAsset = exports.PerpAgainstAsset = exports.PerpPositionLeverageDirection = exports.PerpPositionLeverageType = exports.PerpAssetExchange = exports.PerpAssetSession = exports.PerpAssetType = exports.PerpAssetTimezone = exports.PerpAssetIntervals = exports.PerpCoinTypes = exports.PerpTradesSide = exports.PerpEnum = void 0;
3
+ exports.PerpWithdrawalChain = exports.PerpTransferType = exports.PerpOrderDetailedStatus = exports.PerpOrderDirection = exports.PerpOrderDetailedType = exports.PerpOrderStatus = exports.PerpOrderType = exports.PerpOrderTpsl = exports.PerpOrderTimeInForce = exports.PerpOrderGrouping = exports.PerpDepositAsset = exports.PerpAgainstAsset = exports.PerpPositionLeverageDirection = exports.PerpPositionLeverageType = exports.PerpAssetExchange = exports.PerpAssetSession = exports.PerpAssetType = exports.PerpAssetTimezone = exports.PerpAssetIntervals = exports.PerpCoinTypes = exports.PerpTradesSide = exports.PerpEnum = void 0;
4
4
  var PerpEnum;
5
5
  (function (PerpEnum) {
6
6
  PerpEnum["L2BOOK"] = "l2Book";
@@ -178,7 +178,10 @@ var PerpTransferType;
178
178
  (function (PerpTransferType) {
179
179
  PerpTransferType["SPOT"] = "Spot";
180
180
  PerpTransferType["PERP"] = "Perps";
181
- PerpTransferType["MVX"] = "MVX";
182
- PerpTransferType["ETH"] = "ETH";
183
- PerpTransferType["BSC"] = "BSC";
184
181
  })(PerpTransferType || (exports.PerpTransferType = PerpTransferType = {}));
182
+ var PerpWithdrawalChain;
183
+ (function (PerpWithdrawalChain) {
184
+ PerpWithdrawalChain["MVX"] = "MVX";
185
+ PerpWithdrawalChain["ETH"] = "ETH";
186
+ PerpWithdrawalChain["BSC"] = "BSC";
187
+ })(PerpWithdrawalChain || (exports.PerpWithdrawalChain = PerpWithdrawalChain = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xoxno/types",
3
- "version": "1.0.348",
3
+ "version": "1.0.349",
4
4
  "description": "Shared types and utilities for XOXNO API.",
5
5
  "exports": {
6
6
  ".": {