@orderly.network/types 2.3.2-alpha.0 → 2.4.0-alpha.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.
- package/dist/index.d.mts +42 -6
- package/dist/index.d.ts +42 -6
- package/dist/index.js +12 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -8,7 +8,7 @@ declare global {
|
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
-
declare const _default: "2.
|
|
11
|
+
declare const _default: "2.4.0-alpha.0";
|
|
12
12
|
|
|
13
13
|
declare enum AccountStatusEnum {
|
|
14
14
|
EnableTradingWithoutConnected = -1,
|
|
@@ -131,7 +131,11 @@ declare enum OrderType {
|
|
|
131
131
|
/**
|
|
132
132
|
* Only for POSITIONAL_TP_SL type algo order
|
|
133
133
|
*/
|
|
134
|
-
CLOSE_POSITION = "CLOSE_POSITION"
|
|
134
|
+
CLOSE_POSITION = "CLOSE_POSITION",
|
|
135
|
+
/**
|
|
136
|
+
* Scaled order
|
|
137
|
+
*/
|
|
138
|
+
SCALED = "SCALED"
|
|
135
139
|
}
|
|
136
140
|
declare enum BBOOrderType {
|
|
137
141
|
COUNTERPARTY1 = "counterparty1",
|
|
@@ -196,8 +200,23 @@ interface BaseOrder {
|
|
|
196
200
|
order_tag: string;
|
|
197
201
|
level: OrderLevel;
|
|
198
202
|
post_only_adjust: boolean;
|
|
203
|
+
/** custom order id, it is used to identify the order from ws */
|
|
204
|
+
client_order_id: string;
|
|
205
|
+
}
|
|
206
|
+
/** Scaled order fields */
|
|
207
|
+
interface ScaledOrder {
|
|
208
|
+
/** upper price */
|
|
209
|
+
max_price?: string;
|
|
210
|
+
/** lower price */
|
|
211
|
+
min_price?: string;
|
|
212
|
+
/** total orders */
|
|
213
|
+
total_orders?: number;
|
|
214
|
+
/** quantity distribution type */
|
|
215
|
+
distribution_type?: DistributionType;
|
|
216
|
+
/** the ratio between upper and lower price. */
|
|
217
|
+
skew?: number;
|
|
199
218
|
}
|
|
200
|
-
interface RegularOrder extends BaseOrder, OrderExt {
|
|
219
|
+
interface RegularOrder extends BaseOrder, OrderExt, ScaledOrder {
|
|
201
220
|
}
|
|
202
221
|
interface AlgoOrder extends BaseOrder, OrderExt {
|
|
203
222
|
quantity: string;
|
|
@@ -241,7 +260,7 @@ interface ChildOrder {
|
|
|
241
260
|
reduce_only: boolean;
|
|
242
261
|
trigger_price_type?: string;
|
|
243
262
|
}
|
|
244
|
-
interface OrderEntity {
|
|
263
|
+
interface OrderEntity extends ScaledOrder {
|
|
245
264
|
symbol: string;
|
|
246
265
|
order_type: OrderType;
|
|
247
266
|
algo_type?: AlgoOrderRootType;
|
|
@@ -260,6 +279,12 @@ interface OrderEntity {
|
|
|
260
279
|
order_tag?: string;
|
|
261
280
|
level?: OrderLevel;
|
|
262
281
|
}
|
|
282
|
+
declare enum DistributionType {
|
|
283
|
+
FLAT = "flat",
|
|
284
|
+
ASCENDING = "ascending",
|
|
285
|
+
DESCENDING = "descending",
|
|
286
|
+
CUSTOM = "custom"
|
|
287
|
+
}
|
|
263
288
|
type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
264
289
|
type RequireKeys<T extends object, K extends keyof T> = Required<Pick<T, K>> & Partial<Omit<T, K>>;
|
|
265
290
|
interface BaseAlgoOrderEntity<T extends AlgoOrderRootType> extends OrderEntity {
|
|
@@ -406,7 +431,7 @@ declare namespace API {
|
|
|
406
431
|
executed: number;
|
|
407
432
|
total_fee: number;
|
|
408
433
|
fee_asset: string;
|
|
409
|
-
client_order_id
|
|
434
|
+
client_order_id?: string;
|
|
410
435
|
average_executed_price: number;
|
|
411
436
|
total_executed_quantity: number;
|
|
412
437
|
visible_quantity: number;
|
|
@@ -445,6 +470,7 @@ declare namespace API {
|
|
|
445
470
|
created_time: number;
|
|
446
471
|
updated_time: number;
|
|
447
472
|
order_tag?: string;
|
|
473
|
+
client_order_id?: string;
|
|
448
474
|
}
|
|
449
475
|
interface AlgoOrderExt extends AlgoOrder {
|
|
450
476
|
mark_price: string;
|
|
@@ -738,6 +764,16 @@ declare namespace API {
|
|
|
738
764
|
transfer_amount_to_insurance_fund: number;
|
|
739
765
|
positions_by_perp: LiquidationPositionByPerp[];
|
|
740
766
|
}
|
|
767
|
+
interface RestrictedAreas {
|
|
768
|
+
invalid_web_country: string;
|
|
769
|
+
invalid_web_city: string;
|
|
770
|
+
}
|
|
771
|
+
interface IpInfo {
|
|
772
|
+
ip: string;
|
|
773
|
+
city: string;
|
|
774
|
+
region: string;
|
|
775
|
+
checked: boolean;
|
|
776
|
+
}
|
|
741
777
|
}
|
|
742
778
|
declare namespace WSMessage {
|
|
743
779
|
interface Ticker {
|
|
@@ -1646,4 +1682,4 @@ declare enum AssetHistoryStatusEnum {
|
|
|
1646
1682
|
PENDING_REBALANCE = "PENDING_REBALANCE"
|
|
1647
1683
|
}
|
|
1648
1684
|
|
|
1649
|
-
export { ABSTRACT_CHAIN_ID_MAP, ABSTRACT_MAINNET_CHAINID, ABSTRACT_TESTNET_CHAINID, API, ARBITRUM_MAINNET_CHAINID, ARBITRUM_MAINNET_CHAINID_HEX, ARBITRUM_TESTNET_CHAINID, ARBITRUM_TESTNET_CHAINID_HEX, AbstractChains, AbstractTestnetChainInfo, AbstractTestnetTokenInfo, AccountStatusEnum, type AlgoOrder, type AlgoOrderChildOrders, type AlgoOrderEntity, AlgoOrderRootType, AlgoOrderType, AnnouncementType, ApiError, Arbitrum, ArbitrumGoerli, ArbitrumSepolia, ArbitrumSepoliaChainInfo, ArbitrumSepoliaTokenInfo, AssetHistoryStatusEnum, Avalanche, BBOOrderType, BNB, BSC_TESTNET_CHAINID, Base, type BaseAlgoOrderEntity, type BaseOrder, BaseSepolia, type BracketOrder, type BracketOrderEntry, type Chain, type Chain as ChainConfig, type ChainInfo, ChainKey, ChainNamespace, type ChildOrder, ConnectorKey, type CurrentChain, DEPOSIT_FEE_RATE, Ethereum, ExchangeStatusEnum, Fantom, Fuji, LedgerWalletKey, Linea, LinkDeviceKey, MANTLE_TESTNET_CHAINID, MANTLE_TESTNET_CHAINID_HEX, MEDIA_TABLET, MONAD_TESTNET_CHAINID, Mantle, MantleSepolia, MaxUint256, type NativeCurrency, type NetworkId, NetworkStatusEnum, Optimism, OptimismGoerli, OptimismSepolia, type Optional, type OrderEntity, OrderLevel, OrderSide, OrderStatus, OrderType, type OrderlyOrder, Polygon, PolygonAmoy, PolygonzkEVM, PositionSide, type RegularOrder, type RequireKeys, SDKError, SOLANA_MAINNET_CHAINID, SOLANA_TESTNET_CHAINID, STORY_TESTNET_CHAINID, Sei, SolanaChains, SolanaDevnet, SolanaDevnetChainInfo, SolanaDevnetTokenInfo, StoryOdysseyTestnet, StoryTestnet, SystemStateEnum, type TPSLOrderEntry, TesntTokenFallback, TestnetChains, TrackerEventName, TriggerPriceType, WSMessage, WS_WalletStatusEnum, WithdrawStatus, chainsInfoMap, defaultMainnetChains, defaultTestnetChains, definedTypes, isNativeTokenChecker, nativeTokenAddress, _default as version, zkSyncEra };
|
|
1685
|
+
export { ABSTRACT_CHAIN_ID_MAP, ABSTRACT_MAINNET_CHAINID, ABSTRACT_TESTNET_CHAINID, API, ARBITRUM_MAINNET_CHAINID, ARBITRUM_MAINNET_CHAINID_HEX, ARBITRUM_TESTNET_CHAINID, ARBITRUM_TESTNET_CHAINID_HEX, AbstractChains, AbstractTestnetChainInfo, AbstractTestnetTokenInfo, AccountStatusEnum, type AlgoOrder, type AlgoOrderChildOrders, type AlgoOrderEntity, AlgoOrderRootType, AlgoOrderType, AnnouncementType, ApiError, Arbitrum, ArbitrumGoerli, ArbitrumSepolia, ArbitrumSepoliaChainInfo, ArbitrumSepoliaTokenInfo, AssetHistoryStatusEnum, Avalanche, BBOOrderType, BNB, BSC_TESTNET_CHAINID, Base, type BaseAlgoOrderEntity, type BaseOrder, BaseSepolia, type BracketOrder, type BracketOrderEntry, type Chain, type Chain as ChainConfig, type ChainInfo, ChainKey, ChainNamespace, type ChildOrder, ConnectorKey, type CurrentChain, DEPOSIT_FEE_RATE, DistributionType, Ethereum, ExchangeStatusEnum, Fantom, Fuji, LedgerWalletKey, Linea, LinkDeviceKey, MANTLE_TESTNET_CHAINID, MANTLE_TESTNET_CHAINID_HEX, MEDIA_TABLET, MONAD_TESTNET_CHAINID, Mantle, MantleSepolia, MaxUint256, type NativeCurrency, type NetworkId, NetworkStatusEnum, Optimism, OptimismGoerli, OptimismSepolia, type Optional, type OrderEntity, OrderLevel, OrderSide, OrderStatus, OrderType, type OrderlyOrder, Polygon, PolygonAmoy, PolygonzkEVM, PositionSide, type RegularOrder, type RequireKeys, SDKError, SOLANA_MAINNET_CHAINID, SOLANA_TESTNET_CHAINID, STORY_TESTNET_CHAINID, Sei, SolanaChains, SolanaDevnet, SolanaDevnetChainInfo, SolanaDevnetTokenInfo, StoryOdysseyTestnet, StoryTestnet, SystemStateEnum, type TPSLOrderEntry, TesntTokenFallback, TestnetChains, TrackerEventName, TriggerPriceType, WSMessage, WS_WalletStatusEnum, WithdrawStatus, chainsInfoMap, defaultMainnetChains, defaultTestnetChains, definedTypes, isNativeTokenChecker, nativeTokenAddress, _default as version, zkSyncEra };
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ declare global {
|
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
|
-
declare const _default: "2.
|
|
11
|
+
declare const _default: "2.4.0-alpha.0";
|
|
12
12
|
|
|
13
13
|
declare enum AccountStatusEnum {
|
|
14
14
|
EnableTradingWithoutConnected = -1,
|
|
@@ -131,7 +131,11 @@ declare enum OrderType {
|
|
|
131
131
|
/**
|
|
132
132
|
* Only for POSITIONAL_TP_SL type algo order
|
|
133
133
|
*/
|
|
134
|
-
CLOSE_POSITION = "CLOSE_POSITION"
|
|
134
|
+
CLOSE_POSITION = "CLOSE_POSITION",
|
|
135
|
+
/**
|
|
136
|
+
* Scaled order
|
|
137
|
+
*/
|
|
138
|
+
SCALED = "SCALED"
|
|
135
139
|
}
|
|
136
140
|
declare enum BBOOrderType {
|
|
137
141
|
COUNTERPARTY1 = "counterparty1",
|
|
@@ -196,8 +200,23 @@ interface BaseOrder {
|
|
|
196
200
|
order_tag: string;
|
|
197
201
|
level: OrderLevel;
|
|
198
202
|
post_only_adjust: boolean;
|
|
203
|
+
/** custom order id, it is used to identify the order from ws */
|
|
204
|
+
client_order_id: string;
|
|
205
|
+
}
|
|
206
|
+
/** Scaled order fields */
|
|
207
|
+
interface ScaledOrder {
|
|
208
|
+
/** upper price */
|
|
209
|
+
max_price?: string;
|
|
210
|
+
/** lower price */
|
|
211
|
+
min_price?: string;
|
|
212
|
+
/** total orders */
|
|
213
|
+
total_orders?: number;
|
|
214
|
+
/** quantity distribution type */
|
|
215
|
+
distribution_type?: DistributionType;
|
|
216
|
+
/** the ratio between upper and lower price. */
|
|
217
|
+
skew?: number;
|
|
199
218
|
}
|
|
200
|
-
interface RegularOrder extends BaseOrder, OrderExt {
|
|
219
|
+
interface RegularOrder extends BaseOrder, OrderExt, ScaledOrder {
|
|
201
220
|
}
|
|
202
221
|
interface AlgoOrder extends BaseOrder, OrderExt {
|
|
203
222
|
quantity: string;
|
|
@@ -241,7 +260,7 @@ interface ChildOrder {
|
|
|
241
260
|
reduce_only: boolean;
|
|
242
261
|
trigger_price_type?: string;
|
|
243
262
|
}
|
|
244
|
-
interface OrderEntity {
|
|
263
|
+
interface OrderEntity extends ScaledOrder {
|
|
245
264
|
symbol: string;
|
|
246
265
|
order_type: OrderType;
|
|
247
266
|
algo_type?: AlgoOrderRootType;
|
|
@@ -260,6 +279,12 @@ interface OrderEntity {
|
|
|
260
279
|
order_tag?: string;
|
|
261
280
|
level?: OrderLevel;
|
|
262
281
|
}
|
|
282
|
+
declare enum DistributionType {
|
|
283
|
+
FLAT = "flat",
|
|
284
|
+
ASCENDING = "ascending",
|
|
285
|
+
DESCENDING = "descending",
|
|
286
|
+
CUSTOM = "custom"
|
|
287
|
+
}
|
|
263
288
|
type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
264
289
|
type RequireKeys<T extends object, K extends keyof T> = Required<Pick<T, K>> & Partial<Omit<T, K>>;
|
|
265
290
|
interface BaseAlgoOrderEntity<T extends AlgoOrderRootType> extends OrderEntity {
|
|
@@ -406,7 +431,7 @@ declare namespace API {
|
|
|
406
431
|
executed: number;
|
|
407
432
|
total_fee: number;
|
|
408
433
|
fee_asset: string;
|
|
409
|
-
client_order_id
|
|
434
|
+
client_order_id?: string;
|
|
410
435
|
average_executed_price: number;
|
|
411
436
|
total_executed_quantity: number;
|
|
412
437
|
visible_quantity: number;
|
|
@@ -445,6 +470,7 @@ declare namespace API {
|
|
|
445
470
|
created_time: number;
|
|
446
471
|
updated_time: number;
|
|
447
472
|
order_tag?: string;
|
|
473
|
+
client_order_id?: string;
|
|
448
474
|
}
|
|
449
475
|
interface AlgoOrderExt extends AlgoOrder {
|
|
450
476
|
mark_price: string;
|
|
@@ -738,6 +764,16 @@ declare namespace API {
|
|
|
738
764
|
transfer_amount_to_insurance_fund: number;
|
|
739
765
|
positions_by_perp: LiquidationPositionByPerp[];
|
|
740
766
|
}
|
|
767
|
+
interface RestrictedAreas {
|
|
768
|
+
invalid_web_country: string;
|
|
769
|
+
invalid_web_city: string;
|
|
770
|
+
}
|
|
771
|
+
interface IpInfo {
|
|
772
|
+
ip: string;
|
|
773
|
+
city: string;
|
|
774
|
+
region: string;
|
|
775
|
+
checked: boolean;
|
|
776
|
+
}
|
|
741
777
|
}
|
|
742
778
|
declare namespace WSMessage {
|
|
743
779
|
interface Ticker {
|
|
@@ -1646,4 +1682,4 @@ declare enum AssetHistoryStatusEnum {
|
|
|
1646
1682
|
PENDING_REBALANCE = "PENDING_REBALANCE"
|
|
1647
1683
|
}
|
|
1648
1684
|
|
|
1649
|
-
export { ABSTRACT_CHAIN_ID_MAP, ABSTRACT_MAINNET_CHAINID, ABSTRACT_TESTNET_CHAINID, API, ARBITRUM_MAINNET_CHAINID, ARBITRUM_MAINNET_CHAINID_HEX, ARBITRUM_TESTNET_CHAINID, ARBITRUM_TESTNET_CHAINID_HEX, AbstractChains, AbstractTestnetChainInfo, AbstractTestnetTokenInfo, AccountStatusEnum, type AlgoOrder, type AlgoOrderChildOrders, type AlgoOrderEntity, AlgoOrderRootType, AlgoOrderType, AnnouncementType, ApiError, Arbitrum, ArbitrumGoerli, ArbitrumSepolia, ArbitrumSepoliaChainInfo, ArbitrumSepoliaTokenInfo, AssetHistoryStatusEnum, Avalanche, BBOOrderType, BNB, BSC_TESTNET_CHAINID, Base, type BaseAlgoOrderEntity, type BaseOrder, BaseSepolia, type BracketOrder, type BracketOrderEntry, type Chain, type Chain as ChainConfig, type ChainInfo, ChainKey, ChainNamespace, type ChildOrder, ConnectorKey, type CurrentChain, DEPOSIT_FEE_RATE, Ethereum, ExchangeStatusEnum, Fantom, Fuji, LedgerWalletKey, Linea, LinkDeviceKey, MANTLE_TESTNET_CHAINID, MANTLE_TESTNET_CHAINID_HEX, MEDIA_TABLET, MONAD_TESTNET_CHAINID, Mantle, MantleSepolia, MaxUint256, type NativeCurrency, type NetworkId, NetworkStatusEnum, Optimism, OptimismGoerli, OptimismSepolia, type Optional, type OrderEntity, OrderLevel, OrderSide, OrderStatus, OrderType, type OrderlyOrder, Polygon, PolygonAmoy, PolygonzkEVM, PositionSide, type RegularOrder, type RequireKeys, SDKError, SOLANA_MAINNET_CHAINID, SOLANA_TESTNET_CHAINID, STORY_TESTNET_CHAINID, Sei, SolanaChains, SolanaDevnet, SolanaDevnetChainInfo, SolanaDevnetTokenInfo, StoryOdysseyTestnet, StoryTestnet, SystemStateEnum, type TPSLOrderEntry, TesntTokenFallback, TestnetChains, TrackerEventName, TriggerPriceType, WSMessage, WS_WalletStatusEnum, WithdrawStatus, chainsInfoMap, defaultMainnetChains, defaultTestnetChains, definedTypes, isNativeTokenChecker, nativeTokenAddress, _default as version, zkSyncEra };
|
|
1685
|
+
export { ABSTRACT_CHAIN_ID_MAP, ABSTRACT_MAINNET_CHAINID, ABSTRACT_TESTNET_CHAINID, API, ARBITRUM_MAINNET_CHAINID, ARBITRUM_MAINNET_CHAINID_HEX, ARBITRUM_TESTNET_CHAINID, ARBITRUM_TESTNET_CHAINID_HEX, AbstractChains, AbstractTestnetChainInfo, AbstractTestnetTokenInfo, AccountStatusEnum, type AlgoOrder, type AlgoOrderChildOrders, type AlgoOrderEntity, AlgoOrderRootType, AlgoOrderType, AnnouncementType, ApiError, Arbitrum, ArbitrumGoerli, ArbitrumSepolia, ArbitrumSepoliaChainInfo, ArbitrumSepoliaTokenInfo, AssetHistoryStatusEnum, Avalanche, BBOOrderType, BNB, BSC_TESTNET_CHAINID, Base, type BaseAlgoOrderEntity, type BaseOrder, BaseSepolia, type BracketOrder, type BracketOrderEntry, type Chain, type Chain as ChainConfig, type ChainInfo, ChainKey, ChainNamespace, type ChildOrder, ConnectorKey, type CurrentChain, DEPOSIT_FEE_RATE, DistributionType, Ethereum, ExchangeStatusEnum, Fantom, Fuji, LedgerWalletKey, Linea, LinkDeviceKey, MANTLE_TESTNET_CHAINID, MANTLE_TESTNET_CHAINID_HEX, MEDIA_TABLET, MONAD_TESTNET_CHAINID, Mantle, MantleSepolia, MaxUint256, type NativeCurrency, type NetworkId, NetworkStatusEnum, Optimism, OptimismGoerli, OptimismSepolia, type Optional, type OrderEntity, OrderLevel, OrderSide, OrderStatus, OrderType, type OrderlyOrder, Polygon, PolygonAmoy, PolygonzkEVM, PositionSide, type RegularOrder, type RequireKeys, SDKError, SOLANA_MAINNET_CHAINID, SOLANA_TESTNET_CHAINID, STORY_TESTNET_CHAINID, Sei, SolanaChains, SolanaDevnet, SolanaDevnetChainInfo, SolanaDevnetTokenInfo, StoryOdysseyTestnet, StoryTestnet, SystemStateEnum, type TPSLOrderEntry, TesntTokenFallback, TestnetChains, TrackerEventName, TriggerPriceType, WSMessage, WS_WalletStatusEnum, WithdrawStatus, chainsInfoMap, defaultMainnetChains, defaultTestnetChains, definedTypes, isNativeTokenChecker, nativeTokenAddress, _default as version, zkSyncEra };
|
package/dist/index.js
CHANGED
|
@@ -61,6 +61,7 @@ __export(src_exports, {
|
|
|
61
61
|
ChainNamespace: () => ChainNamespace,
|
|
62
62
|
ConnectorKey: () => ConnectorKey,
|
|
63
63
|
DEPOSIT_FEE_RATE: () => DEPOSIT_FEE_RATE,
|
|
64
|
+
DistributionType: () => DistributionType,
|
|
64
65
|
Ethereum: () => Ethereum,
|
|
65
66
|
ExchangeStatusEnum: () => ExchangeStatusEnum,
|
|
66
67
|
Fantom: () => Fantom,
|
|
@@ -119,9 +120,9 @@ module.exports = __toCommonJS(src_exports);
|
|
|
119
120
|
// src/version.ts
|
|
120
121
|
if (typeof window !== "undefined") {
|
|
121
122
|
window.__ORDERLY_VERSION__ = window.__ORDERLY_VERSION__ || {};
|
|
122
|
-
window.__ORDERLY_VERSION__["@orderly.network/types"] = "2.
|
|
123
|
+
window.__ORDERLY_VERSION__["@orderly.network/types"] = "2.4.0-alpha.0";
|
|
123
124
|
}
|
|
124
|
-
var version_default = "2.
|
|
125
|
+
var version_default = "2.4.0-alpha.0";
|
|
125
126
|
|
|
126
127
|
// src/constants.ts
|
|
127
128
|
var AccountStatusEnum = /* @__PURE__ */ ((AccountStatusEnum2) => {
|
|
@@ -256,6 +257,7 @@ var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
|
256
257
|
OrderType2["STOP_LIMIT"] = "STOP_LIMIT";
|
|
257
258
|
OrderType2["STOP_MARKET"] = "STOP_MARKET";
|
|
258
259
|
OrderType2["CLOSE_POSITION"] = "CLOSE_POSITION";
|
|
260
|
+
OrderType2["SCALED"] = "SCALED";
|
|
259
261
|
return OrderType2;
|
|
260
262
|
})(OrderType || {});
|
|
261
263
|
var BBOOrderType = /* @__PURE__ */ ((BBOOrderType2) => {
|
|
@@ -306,6 +308,13 @@ var OrderStatus = /* @__PURE__ */ ((OrderStatus2) => {
|
|
|
306
308
|
OrderStatus2["REJECTED"] = "REJECTED";
|
|
307
309
|
return OrderStatus2;
|
|
308
310
|
})(OrderStatus || {});
|
|
311
|
+
var DistributionType = /* @__PURE__ */ ((DistributionType2) => {
|
|
312
|
+
DistributionType2["FLAT"] = "flat";
|
|
313
|
+
DistributionType2["ASCENDING"] = "ascending";
|
|
314
|
+
DistributionType2["DESCENDING"] = "descending";
|
|
315
|
+
DistributionType2["CUSTOM"] = "custom";
|
|
316
|
+
return DistributionType2;
|
|
317
|
+
})(DistributionType || {});
|
|
309
318
|
|
|
310
319
|
// src/withdraw.ts
|
|
311
320
|
var WithdrawStatus = /* @__PURE__ */ ((WithdrawStatus2) => {
|
|
@@ -1131,6 +1140,7 @@ var AssetHistoryStatusEnum = /* @__PURE__ */ ((AssetHistoryStatusEnum2) => {
|
|
|
1131
1140
|
ChainNamespace,
|
|
1132
1141
|
ConnectorKey,
|
|
1133
1142
|
DEPOSIT_FEE_RATE,
|
|
1143
|
+
DistributionType,
|
|
1134
1144
|
Ethereum,
|
|
1135
1145
|
ExchangeStatusEnum,
|
|
1136
1146
|
Fantom,
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/version.ts","../src/constants.ts","../src/types/api.ts","../src/order.ts","../src/withdraw.ts","../src/chains.ts","../src/track.ts","../src/wallet.ts","../src/storageKey.ts","../src/errors.ts","../src/sign.ts","../src/assetHistory.ts"],"sourcesContent":["export { default as version } from \"./version\";\nexport * from \"./constants\";\nexport * from \"./types/api\";\n// export * from \"./order\";\nexport {\n OrderType,\n OrderSide,\n OrderStatus,\n AlgoOrderRootType,\n AlgoOrderType,\n TriggerPriceType,\n BBOOrderType,\n OrderLevel,\n} from \"./order\";\nexport type {\n OrderEntity,\n AlgoOrderEntity,\n TPSLOrderEntry,\n BaseAlgoOrderEntity,\n AlgoOrderChildOrders,\n Optional,\n PositionSide,\n BracketOrderEntry,\n RequireKeys,\n BaseOrder,\n RegularOrder,\n AlgoOrder,\n OrderlyOrder,\n ChildOrder,\n BracketOrder,\n} from \"./order\";\nexport * from \"./withdraw\";\nexport * from \"./chains\";\nexport * from \"./track\";\nexport type { Chain as ChainConfig, ChainInfo, NativeCurrency } from \"./chains\";\nexport * from \"./wallet\";\nexport * from \"./storageKey\";\nexport { ApiError, SDKError } from \"./errors\";\n\nexport { definedTypes } from \"./sign\";\nexport * as superstruct from \"superstruct\";\nexport * from \"./assetHistory\";\n","\ndeclare global {\n interface Window {\n __ORDERLY_VERSION__?: {\n [key: string]: string;\n };\n }\n}\nif(typeof window !== 'undefined') {\n window.__ORDERLY_VERSION__ = window.__ORDERLY_VERSION__ || {};\n window.__ORDERLY_VERSION__[\"@orderly.network/types\"] = \"2.3.2-alpha.0\";\n};\n\nexport default \"2.3.2-alpha.0\";\n","export enum AccountStatusEnum {\n EnableTradingWithoutConnected = -1,\n NotConnected = 0,\n Connected = 1,\n NotSignedIn = 2,\n SignedIn = 3,\n DisabledTrading = 4,\n EnableTrading = 5,\n}\n\nexport enum SystemStateEnum {\n Loading = 0,\n Error = 1,\n Ready = 10,\n}\n\nexport enum ExchangeStatusEnum {\n Normal = 0,\n Maintain = 1,\n}\n\nexport type NetworkId = \"testnet\" | \"mainnet\";\n\nexport enum NetworkStatusEnum {\n unknown = 0,\n unsupported = 1,\n supported = 2,\n}\n\n// Testnet\n// Arbitrum Goerli\n// export const ARBITRUM_TESTNET_CHAINID = 421613;\n// export const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EED\";\n\n// Arbitrum Sepolia\nexport const ARBITRUM_TESTNET_CHAINID = 421614;\nexport const SOLANA_TESTNET_CHAINID = 901901901;\nexport const SOLANA_MAINNET_CHAINID = 900900900;\nexport const STORY_TESTNET_CHAINID = 1516;\nexport const MONAD_TESTNET_CHAINID = 10143;\nexport const ABSTRACT_TESTNET_CHAINID = 11124;\nexport const ABSTRACT_MAINNET_CHAINID = 2741;\nexport const BSC_TESTNET_CHAINID = 97;\nexport const ABSTRACT_CHAIN_ID_MAP = new Set([\n ABSTRACT_TESTNET_CHAINID,\n ABSTRACT_MAINNET_CHAINID,\n]);\n\nexport const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EEE\";\n\nexport const MANTLE_TESTNET_CHAINID = 5003;\nexport const MANTLE_TESTNET_CHAINID_HEX = \"0x138b\";\n\n// Mainnet\nexport const ARBITRUM_MAINNET_CHAINID = 42161;\nexport const ARBITRUM_MAINNET_CHAINID_HEX = \"0xa4b1\";\n\nexport const MEDIA_TABLET = \"(max-width: 768px)\";\n\nexport const DEPOSIT_FEE_RATE = 1.05;\n\n/**\n * A constant for the maximum value for a ``uint256``.\n */\nexport const MaxUint256: bigint = BigInt(\n \"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\",\n);\n\nexport const nativeTokenAddress = \"0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE\";\n\nexport const isNativeTokenChecker = (address: string) =>\n address === nativeTokenAddress;\n\nexport const ArbitrumSepoliaChainInfo = {\n name: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.gateway.tenderly.co\",\n chain_id: \"421614\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n vault_address: \"0x0EaC556c0C2321BA25b9DC01e4e3c95aD5CDCd2f\",\n};\nexport const AbstractTestnetChainInfo = {\n name: \"Abstract Testnet\",\n public_rpc_url: \"https://api.testnet.abs.xyz\",\n chain_id: \"11124\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.abscan.org\",\n vault_address: \"0xf14Ff11F3bb1011ff42665Ec869c7827c43745Fd\",\n};\nexport const AbstractTestnetTokenInfo = {\n chain_id: \"11124\",\n contract_address: \"0xa0BB43E2eA7fcE91F07e628d72fD6333e80F47D2\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\nexport const SolanaDevnetChainInfo = {\n chain_id: \"901901901\",\n currency_decimal: 9,\n currency_symbol: \"SOL\",\n explorer_base_url: \"https://explorer.solana.com/?cluster=devnet\",\n name: \"Solana-Devnet\",\n public_rpc_url: \"https://api.devnet.solana.com\",\n vault_address: \"9shwxWDUNhtwkHocsUAmrNAQfBH2DHh4njdAEdHZZkF2\",\n};\n\nexport const SolanaDevnetTokenInfo = {\n chain_id: \"901901901\",\n contract_address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 5,\n display_name: \"USDC\",\n};\nexport const ArbitrumSepoliaTokenInfo = {\n chain_id: \"421614\",\n contract_address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\n\nexport const TesntTokenFallback = (testnetTokens: any) => [\n {\n token: \"USDC\",\n token_hash:\n \"0xd6aca1be9729c13d677335161321649cccae6a591554772516700f986f942eaa\",\n decimals: 6,\n minimum_withdraw_amount: 0.000001,\n chain_details: testnetTokens,\n },\n];\n","/* eslint-disable @typescript-eslint/no-namespace */\nimport { AlgoOrderRootType, OrderSide, OrderType } from \"../order\";\n\nexport enum AnnouncementType {\n Listing = \"LISTING\",\n Maintenance = \"MAINTENANCE\",\n Delisting = \"DELISTING\",\n}\n\nexport declare namespace API {\n //v1/public/token\n export interface Token {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n //v1/public/token\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n }\n\n // ws market, api v1/public/futures\n export interface MarketInfo {\n symbol: string;\n index_price: number;\n mark_price: number;\n sum_unitary_funding: number;\n est_funding_rate: number;\n last_funding_rate: number;\n next_funding_time: number;\n open_interest: string;\n \"24h_open\": number;\n \"24h_close\": number;\n \"24h_high\": number;\n \"24h_low\": number;\n /**\n * @deprecated\n * spelling mistake, use 24h_volume to instead, will be remove next version\n */\n \"24h_volumn\": number;\n \"24h_volume\": number;\n \"24h_amount\": number;\n }\n\n export interface MarketInfoExt extends MarketInfo {\n change: number;\n \"24h_volume\": number;\n }\n\n export interface Announcement {\n last_updated_time?: number | null;\n rows?: Array<{\n announcement_id: number | string;\n message: string;\n i18n?: Record<PropertyKey, string | null>;\n url?: string | null;\n type?: AnnouncementType | null;\n updated_time?: number | null;\n }>;\n }\n\n /**\n * v1/public/info\n */\n export interface Symbol {\n symbol: string;\n quote_min: number;\n quote_max: number;\n quote_tick: number;\n base_min: number;\n base_max: number;\n base_tick: number;\n min_notional: number;\n price_range: number;\n price_scope: number;\n std_liquidation_fee: number;\n liquidator_fee: number;\n claim_insurance_fund_discount: number;\n funding_period: number;\n cap_funding: number;\n floor_funding: number;\n interest_rate: number;\n created_time: number;\n updated_time: number;\n imr_factor: number;\n base_mmr: number;\n base_imr: number;\n }\n\n export interface TokenItem {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface SymbolExt extends Symbol {\n base: string;\n base_dp: number;\n\n quote: string;\n quote_dp: number;\n type: string;\n name: string;\n }\n\n export interface Order {\n symbol: string;\n status: string;\n side: string;\n order_id: number;\n algo_order_id?: number;\n user_id: number;\n price: number | null;\n type: string;\n quantity: number;\n amount: null;\n visible: number;\n executed: number;\n total_fee: number;\n fee_asset: string;\n client_order_id: null;\n average_executed_price: number;\n total_executed_quantity: number;\n visible_quantity: number;\n created_time: number;\n updated_time: number;\n reduce_only: boolean;\n trigger_price?: number;\n order_tag?: string;\n }\n\n export interface OrderExt extends Order {\n mark_price: string;\n }\n\n export interface AlgoOrder {\n algo_order_id: number;\n root_algo_order_id: number;\n parent_algo_order_id: number;\n parent_algo_type: AlgoOrderRootType;\n symbol: string;\n algo_type: string;\n child_orders: AlgoOrder[];\n side: string;\n quantity: number;\n is_triggered: boolean;\n is_activated: boolean;\n trigger_price: number;\n trigger_price_type: string;\n type: OrderType;\n root_algo_status: string;\n algo_status: string;\n price?: number;\n total_executed_quantity: number;\n visible_quantity: number;\n total_fee: number;\n fee_asset: string;\n reduce_only: boolean;\n created_time: number;\n updated_time: number;\n order_tag?: string;\n }\n\n export interface AlgoOrderExt extends AlgoOrder {\n mark_price: string;\n position?: Partial<Position>;\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n }\n\n export interface OrderResponse {\n rows: (Order | AlgoOrder)[];\n meta: {\n total: number;\n current_page: number;\n records_per_page: number;\n };\n }\n\n export interface FundingRate {\n symbol: string;\n est_funding_rate: number;\n est_funding_rate_timestamp: number;\n last_funding_rate: number;\n last_funding_rate_timestamp: number;\n next_funding_time: number;\n sum_unitary_funding: number;\n }\n\n export interface FundingPeriodData {\n rate: number;\n positive: number;\n negative: number;\n }\n\n export interface FundingHistory {\n symbol: string;\n data_start_time: string;\n funding: {\n last: FundingPeriodData;\n \"1d\": FundingPeriodData;\n \"3d\": FundingPeriodData;\n \"7d\": FundingPeriodData;\n \"14d\": FundingPeriodData;\n \"30d\": FundingPeriodData;\n \"90d\": FundingPeriodData;\n };\n }\n\n export interface PositionInfo extends PositionAggregated {\n // margin_ratio: number;\n // initial_margin_ratio: number;\n // maintenance_margin_ratio: number;\n // open_margin_ratio: number;\n // current_margin_ratio_with_orders: number;\n // initial_margin_ratio_with_orders: number;\n // maintenance_margin_ratio_with_orders: number;\n // total_collateral_value: number;\n // free_collateral: number;\n rows: Position[];\n // total_pnl_24_h: number;\n }\n\n export interface PositionAggregated {\n margin_ratio: number;\n initial_margin_ratio: number;\n maintenance_margin_ratio: number;\n open_margin_ratio: number;\n current_margin_ratio_with_orders: number;\n initial_margin_ratio_with_orders: number;\n maintenance_margin_ratio_with_orders: number;\n total_collateral_value: number;\n free_collateral: number;\n total_pnl_24_h: number;\n /**\n * @deprecated use total_unreal_pnl instead\n */\n unrealPnL: number;\n total_unreal_pnl: number;\n total_unreal_pnl_index?: number;\n /**\n * @deprecated use total_unsettled_pnl instead\n */\n unsettledPnL: number;\n total_unsettled_pnl: number;\n notional: number;\n unrealPnlROI: number;\n unrealPnlROI_index?: number;\n }\n\n export interface Position {\n account_id?: string;\n symbol: string;\n position_qty: number;\n cost_position: number;\n last_sum_unitary_funding: number;\n pending_long_qty: number;\n pending_short_qty: number;\n settle_price: number;\n average_open_price: number;\n unrealized_pnl: number;\n unrealized_pnl_index?: number;\n unrealized_pnl_ROI: number;\n unsettled_pnl: number;\n unsettled_pnl_ROI: number;\n unrealized_pnl_ROI_index?: number;\n mark_price: number;\n index_price?: number;\n est_liq_price: number | null;\n timestamp: number;\n /**\n * Maintenance margin ratio\n */\n mmr: number;\n imr: number;\n IMR_withdraw_orders: number;\n MMR_with_orders: number;\n pnl_24_h: number;\n fee_24_h: number;\n fundingFee?: number;\n }\n\n export interface PositionExt extends Position {\n notional: number;\n mm: number;\n }\n\n export interface PositionTPSLExt extends PositionExt {\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n\n // has_position_tp_sl: boolean;\n\n /**\n * related position tp/sl order\n */\n algo_order?: AlgoOrder;\n }\n\n export interface PositionsTPSLExt extends PositionAggregated {\n rows: PositionTPSLExt[];\n }\n\n export interface Trade {\n symbol: Symbol;\n side: OrderSide;\n ts: number;\n executed_price: number;\n executed_quantity: number;\n executed_timestamp: number;\n }\n\n export interface Holding {\n token: string;\n holding: number;\n frozen: number;\n pending_short: number;\n updated_time: number;\n }\n\n export interface AccountInfo {\n account_id: string;\n email: string;\n account_mode: string;\n tier: string;\n futures_tier: string;\n maintenance_cancel_orders: boolean;\n taker_fee_rate: number;\n maker_fee_rate: number;\n max_leverage: number;\n futures_taker_fee_rate: number;\n futures_maker_fee_rate: number;\n imr_factor: { [key: string]: number };\n max_notional: { [key: string]: number };\n }\n\n export interface Chain {\n dexs: string[];\n network_infos: NetworkInfos;\n token_infos: TokenInfo[];\n nativeToken?: TokenInfo;\n // nativeToken\n }\n\n export interface NetworkInfos {\n name: string;\n shortName: string;\n public_rpc_url: string;\n chain_id: number;\n currency_symbol: string;\n bridge_enable: boolean;\n mainnet: boolean;\n est_txn_mins: number | null;\n explorer_base_url: string;\n bridgeless?: boolean;\n withdrawal_fee?: number;\n minimum_withdraw_amount?: number;\n }\n\n export interface TokenInfo {\n address: string;\n symbol: string;\n decimals: number;\n display_name: string;\n precision: number;\n }\n\n export interface Chain {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n // export interface Token{\n\n // }\n\n export interface ChainDetail {\n chain_id: string;\n chain_name?: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface AssetHistory {\n meta: RecordsMeta;\n rows: AssetHistoryRow[];\n }\n\n export interface RecordsMeta {\n total: number;\n records_per_page: number;\n current_page: number;\n }\n\n export interface AssetHistoryRow {\n id: string;\n tx_id: string;\n side: string;\n token: string;\n amount: number;\n fee: number;\n trans_status: string;\n created_time: number;\n updated_time: number;\n chain_id: string;\n }\n\n export interface FundingFeeHistory {\n meta: RecordsMeta;\n rows: FundingFeeRow[];\n }\n\n export interface FundingFeeRow {\n symbol: string;\n funding_rate: number;\n mark_price: number;\n funding_fee: number;\n payment_type: string;\n status: string;\n created_time: number;\n updated_time: number;\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface TransferHistory {\n meta: RecordsMeta;\n rows: TransferHistoryRow[];\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface DailyRow {\n account_value: number;\n broker_id: string;\n date: string;\n perp_volume: number;\n pnl: number;\n snapshot_time?: number;\n }\n\n export interface PositionHistory {\n position_id: number; // Unique identifier for the position\n liquidation_id?: number; // Unique identifier for the position\n position_status: string; // Status of the position\n type: string; // Type of the position activity\n symbol: string; // Trading pair symbol\n avg_open_price: number; // Average open price of the position\n avg_close_price: number; // Average close price of the position\n max_position_qty: number; // Maximum quantity held in the position\n closed_position_qty: number; // Quantity closed in the position\n side: \"LONG\" | \"SHORT\"; // Side of the position\n trading_fee: number; // Fee charged for trading\n accumulated_funding_fee: number; // Accumulated funding fee for the position\n insurance_fund_fee: number; // Fee contributed to the insurance fund\n liquidator_fee: number; // Fee paid to the liquidator\n realized_pnl: number; // Realized profit and loss\n open_timestamp: number; // Timestamp when the position was opened\n close_timestamp: number; // Timestamp when the position was closed\n last_update_time: number; // Timestamp of the last update to the position\n }\n\n export interface LiquidationPositionByPerp {\n abs_liquidation_fee: number;\n cost_position_transfer: number;\n liquidator_fee: number;\n position_qty: number;\n symbol: string;\n transfer_price: number;\n }\n\n export interface Liquidation {\n liquidation_id: number;\n timestamp: number;\n transfer_amount_to_insurance_fund: number;\n positions_by_perp: LiquidationPositionByPerp[];\n }\n}\n\nexport declare namespace WSMessage {\n export interface Ticker {\n symbol: string;\n open: number;\n close: number;\n high: number;\n low: number;\n volume: number;\n amount: number;\n count: number;\n change: number;\n open_interest?: number;\n index_price?: number;\n }\n\n export interface MarkPrice {\n symbol: string;\n price: number;\n }\n\n export interface Position {\n symbol: string;\n positionQty: number;\n costPosition: number;\n lastSumUnitaryFunding: number;\n sumUnitaryFundingVersion: number;\n pendingLongQty: number;\n pendingShortQty: number;\n settlePrice: number;\n averageOpenPrice: number;\n unsettledPnl: number;\n pnl24H: number;\n fee24H: number;\n markPrice: number;\n estLiqPrice: number;\n version: number;\n imr: number;\n imrwithOrders: number;\n mmrwithOrders: number;\n mmr: number;\n }\n\n export interface VaultBalance {\n chain_id: string;\n token: string;\n balance: number;\n }\n\n export interface Order {\n symbol: string;\n clientOrderId: string;\n orderId: number;\n type: string;\n side: string;\n quantity: number;\n price: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n avgPrice: number;\n status: string;\n reason: string;\n totalFee: number;\n visible: number;\n /**\n * update time\n */\n timestamp: number;\n reduceOnly: boolean;\n maker: boolean;\n }\n\n export interface Holding {\n holding: number;\n frozen: number;\n interest: number;\n pendingShortQty: number;\n pendingExposure: number;\n pendingLongQty: number;\n pendingLongExposure: number;\n version: number;\n staked: number;\n unbonding: number;\n vault: number;\n fee24H: number;\n markPrice: number;\n }\n\n export interface AlgoOrder {\n symbol: string;\n rootAlgoOrderId: number;\n parentAlgoOrderId: number;\n algoOrderId: number;\n status: string;\n algoType: string;\n side: string;\n quantity: number;\n triggerStatus: string;\n price: number;\n type: string;\n triggerTradePrice: number;\n triggerTime: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n averageExecutedPrice: number;\n totalFee: number;\n timestamp: number;\n visibleQuantity: number;\n reduceOnly: boolean;\n triggered: boolean;\n maker: boolean;\n rootAlgoStatus: string;\n algoStatus: string;\n }\n\n export interface Announcement {\n announcement_id: string;\n message: string;\n i18n: Record<PropertyKey, string | null>;\n url?: string | null;\n type: AnnouncementType | null;\n updated_time: number;\n }\n}\n","/**\n * Supported types for placing an order\n */\nexport enum OrderType {\n LIMIT = \"LIMIT\",\n MARKET = \"MARKET\",\n IOC = \"IOC\",\n FOK = \"FOK\",\n POST_ONLY = \"POST_ONLY\",\n ASK = \"ASK\",\n BID = \"BID\",\n STOP_LIMIT = \"STOP_LIMIT\",\n STOP_MARKET = \"STOP_MARKET\",\n /**\n * Only for POSITIONAL_TP_SL type algo order\n */\n CLOSE_POSITION = \"CLOSE_POSITION\",\n}\n\nexport enum BBOOrderType {\n COUNTERPARTY1 = \"counterparty1\",\n COUNTERPARTY5 = \"counterparty5\",\n QUEUE1 = \"queue1\",\n QUEUE5 = \"queue5\",\n}\n\nexport enum OrderLevel {\n ONE = 0,\n TWO = 1,\n THREE = 2,\n FOUR = 3,\n FIVE = 4,\n}\n\nexport enum AlgoOrderRootType {\n TP_SL = \"TP_SL\",\n POSITIONAL_TP_SL = \"POSITIONAL_TP_SL\",\n STOP = \"STOP\",\n BRACKET = \"BRACKET\",\n}\n\nexport enum TriggerPriceType {\n MARK_PRICE = \"MARK_PRICE\",\n}\n\nexport enum AlgoOrderType {\n TAKE_PROFIT = \"TAKE_PROFIT\",\n STOP_LOSS = \"STOP_LOSS\",\n}\n\nexport enum OrderSide {\n BUY = \"BUY\",\n SELL = \"SELL\",\n}\n\nexport enum PositionSide {\n LONG = \"LONG\",\n SHORT = \"SHORT\",\n}\n\nexport enum OrderStatus {\n /** @deprecated */\n OPEN = \"OPEN\",\n NEW = \"NEW\",\n FILLED = \"FILLED\",\n PARTIAL_FILLED = \"PARTIAL_FILLED\",\n CANCELLED = \"CANCELLED\",\n REPLACED = \"REPLACED\",\n // CANCELLED + FILLED\n COMPLETED = \"COMPLETED\",\n // NEW + PARTIAL_FILLED\n INCOMPLETE = \"INCOMPLETE\",\n REJECTED = \"REJECTED\",\n}\n\nexport interface OrderExt {\n total: string;\n}\n\nexport interface BaseOrder {\n symbol: string;\n order_type: OrderType;\n order_type_ext?: OrderType;\n order_price: string;\n order_quantity: string;\n order_amount?: number;\n visible_quantity: number;\n side: OrderSide;\n reduce_only: boolean;\n slippage: number;\n order_tag: string;\n level: OrderLevel;\n post_only_adjust: boolean;\n}\n\nexport interface RegularOrder extends BaseOrder, OrderExt {\n // symbol: string;\n // client_order_id: string;\n // type: OrderType;\n // price: number;\n // quantity: number;\n}\n\nexport interface AlgoOrder extends BaseOrder, OrderExt {\n // symbol: string;\n quantity: string;\n type: OrderType;\n price: string;\n algo_type: AlgoOrderRootType;\n trigger_price_type: string;\n trigger_price: string;\n child_orders: AlgoOrderChildOrders[];\n}\n\nexport interface BracketOrder extends AlgoOrder, OrderExt {\n /**\n * Computed take profit\n */\n tp_pnl?: string;\n tp_offset?: string;\n tp_offset_percentage?: string;\n tp_ROI?: string;\n tp_trigger_price?: string;\n\n /**\n * Computed stop loss\n */\n sl_pnl?: string;\n sl_offset?: string;\n sl_offset_percentage?: string;\n sl_ROI?: string;\n sl_trigger_price?: string;\n}\n\nexport type OrderlyOrder = RegularOrder & AlgoOrder & BracketOrder;\n\nexport interface AlgoOrderChildOrders {\n symbol: string;\n algo_type: string;\n child_orders: ChildOrder[];\n}\n\nexport interface ChildOrder {\n symbol: string;\n algo_type: AlgoOrderType;\n side: string;\n type: OrderType;\n trigger_price: string;\n\n reduce_only: boolean;\n trigger_price_type?: string;\n}\n\n// export interface OrderEntity {}\n\nexport interface OrderEntity {\n symbol: string;\n order_type: OrderType;\n algo_type?: AlgoOrderRootType;\n order_type_ext?: OrderType;\n order_price?: string;\n order_quantity?: string;\n order_amount?: number;\n // Whether to display in the orderbook, default=order_quantity, not displayed when =0,\n visible_quantity?: number;\n reduce_only?: boolean;\n side: OrderSide;\n broker_id?: string;\n slippage?: number;\n\n // internal fields\n total?: string;\n // hideInOrderbook?: boolean;\n isStopOrder?: boolean;\n trigger_price?: string;\n order_tag?: string;\n level?: OrderLevel;\n}\n\nexport type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;\nexport type RequireKeys<T extends object, K extends keyof T> = Required<\n Pick<T, K>\n> &\n Partial<Omit<T, K>>;\n\nexport interface BaseAlgoOrderEntity<T extends AlgoOrderRootType>\n extends OrderEntity {\n algo_type: AlgoOrderRootType;\n child_orders: (Partial<Omit<AlgoOrderEntity<T>, \"algo_type\" | \"type\">> & {\n algo_type: AlgoOrderType;\n type: OrderType;\n child_orders?: BaseAlgoOrderEntity<T>[\"child_orders\"];\n // trigger_price: number | string;\n })[];\n // if update the order, then need to provide the order_id\n algo_order_id?: number;\n client_order_id?: string;\n order_tag?: string;\n price?: number | string;\n quantity: number | string;\n reduce_only?: boolean;\n side: OrderSide;\n symbol: string;\n trigger_price: string;\n trigger_price_type: TriggerPriceType;\n type: OrderType;\n visible_quantity?: number;\n is_activated?: boolean;\n tp_trigger_price?: string | number;\n sl_trigger_price?: string | number;\n}\n\nexport type AlgoOrderEntity<\n T extends AlgoOrderRootType = AlgoOrderRootType.STOP,\n> = T extends AlgoOrderRootType.TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\"\n >\n : T extends AlgoOrderRootType.POSITIONAL_TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\" | \"quantity\"\n >\n : Omit<BaseAlgoOrderEntity<T>, \"child_orders\" | \"order_type\">;\n\nexport type TPSLOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.TP_SL>,\n \"side\" | \"type\" | \"trigger_price\"\n>;\n\nexport type BracketOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.BRACKET>,\n \"side\"\n>;\n","export enum WithdrawStatus {\n NotSupported = \"NotSupported\",\n NotConnected = \"NotConnected\",\n Unsettle = \"Unsettle\",\n InsufficientBalance = \"InsufficientBalance\",\n Normal = \"Normal\",\n}\n","export interface Chain {\n id: number;\n chainNameShort: string;\n chainLogo: string;\n chainInfo: ChainInfo;\n minGasBalance: number;\n minCrossGasBalance: number;\n maxPrepayCrossGas: number;\n blockExplorerName: string;\n chainName: string;\n requestRpc: string;\n}\n\nexport interface ChainInfo {\n chainId: string;\n chainName: string;\n nativeCurrency: NativeCurrency;\n rpcUrls: string[];\n blockExplorerUrls: string[];\n}\n\nexport interface NativeCurrency {\n name: string;\n symbol: string;\n decimals: number;\n fix: number;\n}\n\nexport const Ethereum = {\n chainNameShort: \"Ethereum\",\n id: 1,\n chainLogo: \"\",\n chainInfo: {\n chainId: `0x${(1).toString(16)}`,\n chainName: \"Ethereum Mainnet\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 8,\n },\n rpcUrls: [\"https://mainnet.infura.io/v3/9155d40884554acdb17699a18a1fe348\"],\n blockExplorerUrls: [\"https://etherscan.io/\"],\n },\n minGasBalance: 0.002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.025,\n blockExplorerName: \"EthScan\",\n chainName: \"Ethereum Mainnet\",\n requestRpc: \"https://rpc.ankr.com/eth\",\n};\n\nexport const Avalanche = {\n id: 43114,\n chainInfo: {\n chainId: `0x${(43114).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche\",\n chainNameShort: \"Avalanche\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const Fuji = {\n id: 43113,\n chainInfo: {\n chainId: `0x${(43113).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche Fuji Testnet\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche Fuji\",\n chainNameShort: \"Avalanche Fuji\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const BNB = {\n id: 56,\n chainInfo: {\n chainId: `0x${(56).toString(16)}`, // 0x38\n chainName: \"BNB Chain\",\n nativeCurrency: {\n name: \"bnb\",\n symbol: \"BNB\",\n decimals: 18,\n fix: 6,\n },\n rpcUrls: [\"https://bsc-dataseed1.binance.org/\"],\n blockExplorerUrls: [\"https://bscscan.com/\"],\n },\n minGasBalance: 0.02,\n minCrossGasBalance: 0.02,\n maxPrepayCrossGas: 0.1,\n blockExplorerName: \"BscScan\",\n chainName: \"Binance Smart Chain\",\n chainNameShort: \"BNB Chain\",\n requestRpc: \"https://rpc.ankr.com/bsc\",\n chainLogo: \"\",\n};\n\nexport const Fantom = {\n id: 250,\n chainInfo: {\n chainId: `0x${(250).toString(16)}`, // 0x38\n chainName: \"Fantom\",\n nativeCurrency: {\n name: \"ftm\",\n symbol: \"FTM\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpcapi.fantom.network\"],\n blockExplorerUrls: [\"https://ftmscan.com/\"],\n },\n minGasBalance: 1,\n minCrossGasBalance: 10,\n maxPrepayCrossGas: 60,\n blockExplorerName: \"FTMScan\",\n chainName: \"Fantom\",\n chainNameShort: \"Fantom\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/fantom\",\n};\n\nexport const Polygon = {\n id: 137,\n chainInfo: {\n chainId: `0x${(137).toString(16)}`,\n chainName: \"Polygon\",\n nativeCurrency: {\n name: \"matic\",\n symbol: \"MATIC\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-mainnet.matic.network\"],\n blockExplorerUrls: [\"https://polygonscan.com/\"],\n },\n minGasBalance: 0.1,\n minCrossGasBalance: 1,\n maxPrepayCrossGas: 30,\n blockExplorerName: \"Polygonscan\",\n chainName: \"Polygon\",\n chainNameShort: \"Polygon\",\n requestRpc: \"https://rpc.ankr.com/polygon\",\n chainLogo: \"\",\n};\n\nexport const Arbitrum = {\n id: 42161,\n chainInfo: {\n chainId: `0x${(42161).toString(16)}`,\n chainName: \"Arbitrum\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arb1.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://arbiscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbiscan\",\n chainName: \"Arbitrum\",\n chainNameShort: \"Arbitrum\",\n requestRpc: \"https://arb1.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const Optimism = {\n id: 10,\n chainInfo: {\n chainId: `0x${(10).toString(16)}`,\n chainName: \"Optimism\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://mainnet.optimism.io\"],\n blockExplorerUrls: [\"https://optimistic.etherscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism\",\n chainName: \"Optimism\",\n chainNameShort: \"Optimism\",\n requestRpc: \"https://rpc.ankr.com/optimism\",\n chainLogo: \"\",\n};\n\nexport const zkSyncEra = {\n id: 324,\n chainInfo: {\n chainId: `0x${(324).toString(16)}`,\n chainName: \"zkSync Era\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zksync2-mainnet.zksync.io\"],\n blockExplorerUrls: [\"https://explorer.zksync.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"zkSync Era\",\n chainName: \"zkSync Era\",\n chainNameShort: \"zkSync Era\",\n requestRpc: \"https://zksync2-mainnet.zksync.io/\",\n chainLogo: \"\",\n // blockExplorerName: 'zkSync Era Goerli',\n // chainName: 'zkSync Era Goerli',\n // chainNameShort: 'zkSync Era Goerli',\n // requestRpc: 'https://zksync2-testnet.zksync.dev/',\n // chainLogo: '',\n};\n\nexport const PolygonzkEVM = {\n id: 1101,\n chainInfo: {\n chainId: `0x${(1101).toString(16)}`,\n chainName: \"Polygon zkEVM\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zkevm-rpc.com\"],\n blockExplorerUrls: [\"https://zkevm.polygonscan.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon zkEVM\",\n chainName: \"Polygon zkEVM\",\n chainNameShort: \"Polygon zkEVM\",\n requestRpc: \"https://zkevm-rpc.com\",\n chainLogo: \"\",\n};\n\nexport const Linea = {\n id: 59144,\n chainInfo: {\n chainId: `0x${(59144).toString(16)}`,\n chainName: \"Linea\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.linea.build\"],\n blockExplorerUrls: [\"https://lineascan.build/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Linea\",\n chainName: \"Linea\",\n chainNameShort: \"Linea\",\n requestRpc: \"https://rpc.linea.build\",\n chainLogo: \"\",\n};\n\nexport const Base = {\n id: 8453,\n chainInfo: {\n chainId: `0x${(8453).toString(16)}`,\n chainName: \"Base Network\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://developer-access-mainnet.base.org/\"],\n blockExplorerUrls: [\"https://basescan.org\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base\",\n chainName: \"Base\",\n chainNameShort: \"Base\",\n requestRpc: \"https://developer-access-mainnet.base.org/\",\n chainLogo: \"\",\n};\n\nexport const Mantle = {\n id: 5000,\n chainInfo: {\n chainId: `0x${(5000).toString(16)}`,\n chainName: \"Mantle\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.mantle.xyz/\"],\n blockExplorerUrls: [\"https://mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle\",\n chainName: \"Mantle\",\n chainNameShort: \"Mantle\",\n requestRpc: \"https://rpc.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumGoerli = {\n id: 421613,\n chainInfo: {\n chainId: `0x${(421613).toString(16)}`,\n chainName: \"Arbitrum Goerli\",\n nativeCurrency: {\n name: \"AGOR\",\n symbol: \"AGOR\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://goerli-rollup.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://goerli-rollup-explorer.arbitrum.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Goerli\",\n chainName: \"Arbitrum Goerli\",\n chainNameShort: \"Arbitrum Goerli\",\n requestRpc: \"https://goerli-rollup.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumSepolia = {\n id: 421614,\n chainInfo: {\n chainId: `0x${(421614).toString(16)}`,\n chainName: \"Arbitrum Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\"],\n blockExplorerUrls: [\"https://sepolia-explorer.arbitrum.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Sepolia\",\n chainName: \"Arbitrum Sepolia\",\n chainNameShort: \"Arbitrum Sepolia\",\n requestRpc: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chainLogo: \"\",\n};\n\nexport const OptimismGoerli = {\n id: 420,\n chainInfo: {\n chainId: `0x${(420).toString(16)}`,\n chainName: \"Optimism Goerli\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://optimism-goerli.gateway.tenderly.co\"],\n blockExplorerUrls: [\"https://goerli-optimism.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Goerli\",\n chainName: \"Optimism Goerli\",\n chainNameShort: \"Optimism Goerli\",\n requestRpc: \"https://optimism-goerli.gateway.tenderly.co\",\n chainLogo: \"\",\n};\n\nexport const OptimismSepolia = {\n id: 11155420,\n chainInfo: {\n chainId: `0x${(11155420).toString(16)}`,\n chainName: \"Optimism Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://sepolia.optimism.io\"],\n blockExplorerUrls: [\"https://sepolia-optimistic.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Sepolia\",\n chainName: \"Optimism Sepolia\",\n chainNameShort: \"Optimism Sepolia\",\n requestRpc: \"https://sepolia.optimism.io\",\n chainLogo: \"\",\n};\n\nexport const BaseSepolia = {\n id: 84532,\n chainInfo: {\n chainId: `0x${(84532).toString(16)}`,\n chainName: \"Base Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://base-sepolia-rpc.publicnode.com\"],\n blockExplorerUrls: [\"https://base-sepolia.blockscout.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base Sepolia\",\n chainName: \"Base Sepolia\",\n chainNameShort: \"Base Sepolia\",\n requestRpc: \"https://base-sepolia-rpc.publicnode.com\",\n chainLogo: \"\",\n};\n\nexport const MantleSepolia = {\n id: 5003,\n chainInfo: {\n chainId: `0x${(5003).toString(16)}`,\n chainName: \"Mantle Sepolia\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.sepolia.mantle.xyz/\"],\n blockExplorerUrls: [\"https://sepolia.mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle Sepolia\",\n chainName: \"Mantle Sepolia\",\n chainNameShort: \"Mantle Sepolia\",\n requestRpc: \"https://rpc.sepolia.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const PolygonAmoy = {\n id: 80002,\n chainInfo: {\n chainId: `0x${(80002).toString(16)}`,\n chainName: \"Polygon Amoy\",\n nativeCurrency: {\n name: \"MATIC\",\n symbol: \"MATIC\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-amoy.polygon.technology/\"],\n blockExplorerUrls: [\"https://www.oklink.com/amoy\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon Amoy\",\n chainName: \"Polygon Amoy\",\n chainNameShort: \"Polygon Amoy\",\n requestRpc: \"https://rpc-amoy.polygon.technology/\",\n chainLogo: \"\",\n};\n\nexport const Sei = {\n id: 1329,\n chainInfo: {\n chainId: `0x${(1329).toString(16)}`,\n chainName: \"Sei Network\",\n nativeCurrency: {\n name: \"SEI\",\n symbol: \"SEI\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://evm-rpc.sei-apis.com\"],\n blockExplorerUrls: [\"https://seitrace.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\n\nexport const StoryTestnet = {\n name: \"Story Odyssey Testnet\",\n public_rpc_url: \"https://rpc.odyssey.storyrpc.io/\",\n chain_id: 1516,\n currency_symbol: \"IP\",\n explorer_base_url: \"\",\n vault_address: \"\",\n};\nexport const StoryOdysseyTestnet = {\n id: 1329,\n chainInfo: {\n chainId: `0x${StoryTestnet.chain_id.toString(16)}`,\n chainName: StoryTestnet.name,\n nativeCurrency: {\n name: \"IP\",\n symbol: \"IP\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [StoryTestnet.public_rpc_url],\n blockExplorerUrls: [],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\nexport const chainsInfoMap: Map<number, Chain> = new Map([\n [Ethereum.id, Ethereum],\n [Avalanche.id, Avalanche],\n [Fuji.id, Fuji],\n [BNB.id, BNB],\n [Fantom.id, Fantom],\n [Polygon.id, Polygon],\n [Arbitrum.id, Arbitrum],\n [Optimism.id, Optimism],\n [zkSyncEra.id, zkSyncEra],\n [PolygonzkEVM.id, PolygonzkEVM],\n [Linea.id, Linea],\n [Base.id, Base],\n [Mantle.id, Mantle],\n [ArbitrumGoerli.id, ArbitrumGoerli],\n [ArbitrumSepolia.id, ArbitrumSepolia],\n [OptimismGoerli.id, OptimismGoerli],\n [OptimismSepolia.id, OptimismSepolia],\n [BaseSepolia.id, BaseSepolia],\n [MantleSepolia.id, MantleSepolia],\n [PolygonAmoy.id, PolygonAmoy],\n [Sei.id, Sei],\n [StoryOdysseyTestnet.id, StoryOdysseyTestnet],\n]);\n\nexport const SolanaDevnet = {\n id: 901901901,\n chainInfo: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chainId: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n} as unknown as typeof Arbitrum;\n\nexport const TestnetChains = [\n {\n network_infos: {\n name: \"Arbitrum Sepolia\",\n shortName: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chain_id: 421614,\n currency_symbol: \"ETH\",\n bridge_enable: true,\n mainnet: false,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n est_txn_mins: null,\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chain_id: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: StoryTestnet,\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0xF1815bd50389c46847f0Bda824eC8da914045D14\",\n decimals: 6,\n },\n ],\n },\n // {\n // network_infos: {\n // name: \"Mantle Sepolia\",\n // shortName: \"Mantle Sepolia\",\n // public_rpc_url: \"https://rpc.sepolia.mantle.xyz/\",\n // chain_id: 5003,\n // currency_symbol: \"MNT\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://sepolia.mantlescan.xyz/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xAcab8129E2cE587fD203FD770ec9ECAFA2C88080\",\n // decimals: 6,\n // display_name: \"USDC.e\",\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Arbitrum Goerli\",\n // shortName: \"Arbitrum Goerli\",\n // public_rpc_url: \"https://goerli-rollup.arbitrum.io/rpc\",\n // chain_id: 421613,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli.arbiscan.io/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xfd064A18f3BF249cf1f87FC203E90D8f650f2d63\",\n // decimals: 6,\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Optimism Goerli\",\n // shortName: \"Optimism Goerli\",\n // public_rpc_url: \"https://optimism-goerli.gateway.tenderly.co\",\n // chain_id: 420,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli-optimism.etherscan.io\",\n // est_txn_mins: null,\n // },\n // },\n];\n\nexport const defaultMainnetChains = [Arbitrum, Base, Optimism];\nexport const defaultTestnetChains = [ArbitrumSepolia];\n\nexport enum ChainNamespace {\n evm = \"EVM\",\n solana = \"SOL\",\n}\n\nexport const AbstractChains = new Set([2741, 11124]);\nexport const SolanaChains = new Set([901901901, 900900900]);\n","export enum TrackerEventName {\n /** virtual event (not send this event name to tracker) */\n trackIdentifyUserId = \"track_identify_user_id\",\n trackIdentify = \"track_identify\",\n trackCustomEvent = \"track_custom_event\",\n\n /** real event name (send this event name to tracker) */\n withdrawSuccess = \"withdraw_request_success\",\n withdrawFailed = \"withdraw_request_failure\",\n depositSuccess = \"deposit_request_success\",\n depositFailed = \"deposit_request_failure\",\n signinSuccess = \"sign_message_success\",\n placeOrderSuccess = \"place_order_success\",\n walletConnect = \"connect_wallet_success\",\n clickLinkDeviceButton = \"click_link_device_button\",\n signLinkDeviceMessageSuccess = \"sign_link_device_message_success\",\n linkDeviceModalClickConfirm = \"link_device_modal_click_confirm\",\n socialLoginSuccess = \"social_login_success\",\n clickSwitchNetwork = \"click_switch_network\",\n clickSwitchWallet = \"click_switch_wallet\",\n switchNetworkSuccess = \"switch_network_success\",\n clickExportPrivateKey = \"click_export_private_key\",\n switchLanguage = \"switch_language\",\n leaderboardCampaignClickTradeNow = \"leaderboard_campaign_click_trade_now\",\n leaderboardCampaignClickLearnMore = \"leaderboard_campaign_click_learn_more\",\n}\n","import { API } from \"./types/api\";\n\n// export type Chain = {\n// id: string;\n// name?: string;\n// };\n\nexport type CurrentChain = {\n id: number;\n info: API.Chain;\n};\n\nexport enum WS_WalletStatusEnum {\n NO = \"NO\",\n FAILED = \"FAILED\",\n PENDING = \"PENDING\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n}\n","export const LedgerWalletKey = \"orderly:ledger-wallet\";\nexport const ConnectorKey = \"orderly:connectorKey\";\nexport const ChainKey = \"order:chain\";\nexport const LinkDeviceKey = \"orderly_link_device\";\n","export class ApiError extends Error {\n constructor(message: string, private readonly code: number) {\n super(message);\n this.name = \"ApiError\";\n }\n}\n\nexport class SDKError extends Error {\n constructor(message: string) {\n super(`[ORDERLY SDK ERROR]:${message}`);\n this.name = \"SDKError\";\n }\n}\n","export const definedTypes = {\n EIP712Domain: [\n { name: \"name\", type: \"string\" },\n { name: \"version\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"verifyingContract\", type: \"address\" },\n ],\n Registration: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"registrationNonce\", type: \"uint256\" },\n ],\n Withdraw: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"receiver\", type: \"address\" },\n { name: \"token\", type: \"string\" },\n { name: \"amount\", type: \"uint256\" },\n { name: \"withdrawNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n AddOrderlyKey: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"orderlyKey\", type: \"string\" },\n { name: \"scope\", type: \"string\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"expiration\", type: \"uint64\" },\n ],\n SettlePnl: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"settleNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n } as const;","export enum AssetHistoryStatusEnum {\n NEW = \"NEW\",\n CONFIRM = \"CONFIRM\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n FAILED = \"FAILED\",\n PENDING_REBALANCE = \"PENDING_REBALANCE\",\n}\n"],"mappings":"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","names":["AccountStatusEnum","SystemStateEnum","ExchangeStatusEnum","NetworkStatusEnum","AnnouncementType","OrderType","BBOOrderType","OrderLevel","AlgoOrderRootType","TriggerPriceType","AlgoOrderType","OrderSide","OrderStatus","WithdrawStatus","ChainNamespace","TrackerEventName","WS_WalletStatusEnum","AssetHistoryStatusEnum"]}
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/version.ts","../src/constants.ts","../src/types/api.ts","../src/order.ts","../src/withdraw.ts","../src/chains.ts","../src/track.ts","../src/wallet.ts","../src/storageKey.ts","../src/errors.ts","../src/sign.ts","../src/assetHistory.ts"],"sourcesContent":["export { default as version } from \"./version\";\nexport * from \"./constants\";\nexport * from \"./types/api\";\n// export * from \"./order\";\nexport {\n OrderType,\n OrderSide,\n OrderStatus,\n AlgoOrderRootType,\n AlgoOrderType,\n TriggerPriceType,\n BBOOrderType,\n OrderLevel,\n DistributionType,\n} from \"./order\";\nexport type {\n OrderEntity,\n AlgoOrderEntity,\n TPSLOrderEntry,\n BaseAlgoOrderEntity,\n AlgoOrderChildOrders,\n Optional,\n PositionSide,\n BracketOrderEntry,\n RequireKeys,\n BaseOrder,\n RegularOrder,\n AlgoOrder,\n OrderlyOrder,\n ChildOrder,\n BracketOrder,\n} from \"./order\";\nexport * from \"./withdraw\";\nexport * from \"./chains\";\nexport * from \"./track\";\nexport type { Chain as ChainConfig, ChainInfo, NativeCurrency } from \"./chains\";\nexport * from \"./wallet\";\nexport * from \"./storageKey\";\nexport { ApiError, SDKError } from \"./errors\";\n\nexport { definedTypes } from \"./sign\";\nexport * as superstruct from \"superstruct\";\nexport * from \"./assetHistory\";\n","\ndeclare global {\n interface Window {\n __ORDERLY_VERSION__?: {\n [key: string]: string;\n };\n }\n}\nif(typeof window !== 'undefined') {\n window.__ORDERLY_VERSION__ = window.__ORDERLY_VERSION__ || {};\n window.__ORDERLY_VERSION__[\"@orderly.network/types\"] = \"2.4.0-alpha.0\";\n};\n\nexport default \"2.4.0-alpha.0\";\n","export enum AccountStatusEnum {\n EnableTradingWithoutConnected = -1,\n NotConnected = 0,\n Connected = 1,\n NotSignedIn = 2,\n SignedIn = 3,\n DisabledTrading = 4,\n EnableTrading = 5,\n}\n\nexport enum SystemStateEnum {\n Loading = 0,\n Error = 1,\n Ready = 10,\n}\n\nexport enum ExchangeStatusEnum {\n Normal = 0,\n Maintain = 1,\n}\n\nexport type NetworkId = \"testnet\" | \"mainnet\";\n\nexport enum NetworkStatusEnum {\n unknown = 0,\n unsupported = 1,\n supported = 2,\n}\n\n// Testnet\n// Arbitrum Goerli\n// export const ARBITRUM_TESTNET_CHAINID = 421613;\n// export const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EED\";\n\n// Arbitrum Sepolia\nexport const ARBITRUM_TESTNET_CHAINID = 421614;\nexport const SOLANA_TESTNET_CHAINID = 901901901;\nexport const SOLANA_MAINNET_CHAINID = 900900900;\nexport const STORY_TESTNET_CHAINID = 1516;\nexport const MONAD_TESTNET_CHAINID = 10143;\nexport const ABSTRACT_TESTNET_CHAINID = 11124;\nexport const ABSTRACT_MAINNET_CHAINID = 2741;\nexport const BSC_TESTNET_CHAINID = 97;\nexport const ABSTRACT_CHAIN_ID_MAP = new Set([\n ABSTRACT_TESTNET_CHAINID,\n ABSTRACT_MAINNET_CHAINID,\n]);\n\nexport const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EEE\";\n\nexport const MANTLE_TESTNET_CHAINID = 5003;\nexport const MANTLE_TESTNET_CHAINID_HEX = \"0x138b\";\n\n// Mainnet\nexport const ARBITRUM_MAINNET_CHAINID = 42161;\nexport const ARBITRUM_MAINNET_CHAINID_HEX = \"0xa4b1\";\n\nexport const MEDIA_TABLET = \"(max-width: 768px)\";\n\nexport const DEPOSIT_FEE_RATE = 1.05;\n\n/**\n * A constant for the maximum value for a ``uint256``.\n */\nexport const MaxUint256: bigint = BigInt(\n \"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\",\n);\n\nexport const nativeTokenAddress = \"0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE\";\n\nexport const isNativeTokenChecker = (address: string) =>\n address === nativeTokenAddress;\n\nexport const ArbitrumSepoliaChainInfo = {\n name: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.gateway.tenderly.co\",\n chain_id: \"421614\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n vault_address: \"0x0EaC556c0C2321BA25b9DC01e4e3c95aD5CDCd2f\",\n};\nexport const AbstractTestnetChainInfo = {\n name: \"Abstract Testnet\",\n public_rpc_url: \"https://api.testnet.abs.xyz\",\n chain_id: \"11124\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.abscan.org\",\n vault_address: \"0xf14Ff11F3bb1011ff42665Ec869c7827c43745Fd\",\n};\nexport const AbstractTestnetTokenInfo = {\n chain_id: \"11124\",\n contract_address: \"0xa0BB43E2eA7fcE91F07e628d72fD6333e80F47D2\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\nexport const SolanaDevnetChainInfo = {\n chain_id: \"901901901\",\n currency_decimal: 9,\n currency_symbol: \"SOL\",\n explorer_base_url: \"https://explorer.solana.com/?cluster=devnet\",\n name: \"Solana-Devnet\",\n public_rpc_url: \"https://api.devnet.solana.com\",\n vault_address: \"9shwxWDUNhtwkHocsUAmrNAQfBH2DHh4njdAEdHZZkF2\",\n};\n\nexport const SolanaDevnetTokenInfo = {\n chain_id: \"901901901\",\n contract_address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 5,\n display_name: \"USDC\",\n};\nexport const ArbitrumSepoliaTokenInfo = {\n chain_id: \"421614\",\n contract_address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\n\nexport const TesntTokenFallback = (testnetTokens: any) => [\n {\n token: \"USDC\",\n token_hash:\n \"0xd6aca1be9729c13d677335161321649cccae6a591554772516700f986f942eaa\",\n decimals: 6,\n minimum_withdraw_amount: 0.000001,\n chain_details: testnetTokens,\n },\n];\n","/* eslint-disable @typescript-eslint/no-namespace */\nimport { AlgoOrderRootType, OrderSide, OrderType } from \"../order\";\n\nexport enum AnnouncementType {\n Listing = \"LISTING\",\n Maintenance = \"MAINTENANCE\",\n Delisting = \"DELISTING\",\n}\n\nexport declare namespace API {\n //v1/public/token\n export interface Token {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n //v1/public/token\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n }\n\n // ws market, api v1/public/futures\n export interface MarketInfo {\n symbol: string;\n index_price: number;\n mark_price: number;\n sum_unitary_funding: number;\n est_funding_rate: number;\n last_funding_rate: number;\n next_funding_time: number;\n open_interest: string;\n \"24h_open\": number;\n \"24h_close\": number;\n \"24h_high\": number;\n \"24h_low\": number;\n /**\n * @deprecated\n * spelling mistake, use 24h_volume to instead, will be remove next version\n */\n \"24h_volumn\": number;\n \"24h_volume\": number;\n \"24h_amount\": number;\n }\n\n export interface MarketInfoExt extends MarketInfo {\n change: number;\n \"24h_volume\": number;\n }\n\n export interface Announcement {\n last_updated_time?: number | null;\n rows?: Array<{\n announcement_id: number | string;\n message: string;\n i18n?: Record<PropertyKey, string | null>;\n url?: string | null;\n type?: AnnouncementType | null;\n updated_time?: number | null;\n }>;\n }\n\n /**\n * v1/public/info\n */\n export interface Symbol {\n symbol: string;\n quote_min: number;\n quote_max: number;\n quote_tick: number;\n base_min: number;\n base_max: number;\n base_tick: number;\n min_notional: number;\n price_range: number;\n price_scope: number;\n std_liquidation_fee: number;\n liquidator_fee: number;\n claim_insurance_fund_discount: number;\n funding_period: number;\n cap_funding: number;\n floor_funding: number;\n interest_rate: number;\n created_time: number;\n updated_time: number;\n imr_factor: number;\n base_mmr: number;\n base_imr: number;\n }\n\n export interface TokenItem {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface SymbolExt extends Symbol {\n base: string;\n base_dp: number;\n\n quote: string;\n quote_dp: number;\n type: string;\n name: string;\n }\n\n export interface Order {\n symbol: string;\n status: string;\n side: string;\n order_id: number;\n algo_order_id?: number;\n user_id: number;\n price: number | null;\n type: string;\n quantity: number;\n amount: null;\n visible: number;\n executed: number;\n total_fee: number;\n fee_asset: string;\n client_order_id?: string;\n average_executed_price: number;\n total_executed_quantity: number;\n visible_quantity: number;\n created_time: number;\n updated_time: number;\n reduce_only: boolean;\n trigger_price?: number;\n order_tag?: string;\n }\n\n export interface OrderExt extends Order {\n mark_price: string;\n }\n\n export interface AlgoOrder {\n algo_order_id: number;\n root_algo_order_id: number;\n parent_algo_order_id: number;\n parent_algo_type: AlgoOrderRootType;\n symbol: string;\n algo_type: string;\n child_orders: AlgoOrder[];\n side: string;\n quantity: number;\n is_triggered: boolean;\n is_activated: boolean;\n trigger_price: number;\n trigger_price_type: string;\n type: OrderType;\n root_algo_status: string;\n algo_status: string;\n price?: number;\n total_executed_quantity: number;\n visible_quantity: number;\n total_fee: number;\n fee_asset: string;\n reduce_only: boolean;\n created_time: number;\n updated_time: number;\n order_tag?: string;\n client_order_id?: string;\n }\n\n export interface AlgoOrderExt extends AlgoOrder {\n mark_price: string;\n position?: Partial<Position>;\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n }\n\n export interface OrderResponse {\n rows: (Order | AlgoOrder)[];\n meta: {\n total: number;\n current_page: number;\n records_per_page: number;\n };\n }\n\n export interface FundingRate {\n symbol: string;\n est_funding_rate: number;\n est_funding_rate_timestamp: number;\n last_funding_rate: number;\n last_funding_rate_timestamp: number;\n next_funding_time: number;\n sum_unitary_funding: number;\n }\n\n export interface FundingPeriodData {\n rate: number;\n positive: number;\n negative: number;\n }\n\n export interface FundingHistory {\n symbol: string;\n data_start_time: string;\n funding: {\n last: FundingPeriodData;\n \"1d\": FundingPeriodData;\n \"3d\": FundingPeriodData;\n \"7d\": FundingPeriodData;\n \"14d\": FundingPeriodData;\n \"30d\": FundingPeriodData;\n \"90d\": FundingPeriodData;\n };\n }\n\n export interface PositionInfo extends PositionAggregated {\n // margin_ratio: number;\n // initial_margin_ratio: number;\n // maintenance_margin_ratio: number;\n // open_margin_ratio: number;\n // current_margin_ratio_with_orders: number;\n // initial_margin_ratio_with_orders: number;\n // maintenance_margin_ratio_with_orders: number;\n // total_collateral_value: number;\n // free_collateral: number;\n rows: Position[];\n // total_pnl_24_h: number;\n }\n\n export interface PositionAggregated {\n margin_ratio: number;\n initial_margin_ratio: number;\n maintenance_margin_ratio: number;\n open_margin_ratio: number;\n current_margin_ratio_with_orders: number;\n initial_margin_ratio_with_orders: number;\n maintenance_margin_ratio_with_orders: number;\n total_collateral_value: number;\n free_collateral: number;\n total_pnl_24_h: number;\n /**\n * @deprecated use total_unreal_pnl instead\n */\n unrealPnL: number;\n total_unreal_pnl: number;\n total_unreal_pnl_index?: number;\n /**\n * @deprecated use total_unsettled_pnl instead\n */\n unsettledPnL: number;\n total_unsettled_pnl: number;\n notional: number;\n unrealPnlROI: number;\n unrealPnlROI_index?: number;\n }\n\n export interface Position {\n account_id?: string;\n symbol: string;\n position_qty: number;\n cost_position: number;\n last_sum_unitary_funding: number;\n pending_long_qty: number;\n pending_short_qty: number;\n settle_price: number;\n average_open_price: number;\n unrealized_pnl: number;\n unrealized_pnl_index?: number;\n unrealized_pnl_ROI: number;\n unsettled_pnl: number;\n unsettled_pnl_ROI: number;\n unrealized_pnl_ROI_index?: number;\n mark_price: number;\n index_price?: number;\n est_liq_price: number | null;\n timestamp: number;\n /**\n * Maintenance margin ratio\n */\n mmr: number;\n imr: number;\n IMR_withdraw_orders: number;\n MMR_with_orders: number;\n pnl_24_h: number;\n fee_24_h: number;\n fundingFee?: number;\n }\n\n export interface PositionExt extends Position {\n notional: number;\n mm: number;\n }\n\n export interface PositionTPSLExt extends PositionExt {\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n\n // has_position_tp_sl: boolean;\n\n /**\n * related position tp/sl order\n */\n algo_order?: AlgoOrder;\n }\n\n export interface PositionsTPSLExt extends PositionAggregated {\n rows: PositionTPSLExt[];\n }\n\n export interface Trade {\n symbol: Symbol;\n side: OrderSide;\n ts: number;\n executed_price: number;\n executed_quantity: number;\n executed_timestamp: number;\n }\n\n export interface Holding {\n token: string;\n holding: number;\n frozen: number;\n pending_short: number;\n updated_time: number;\n }\n\n export interface AccountInfo {\n account_id: string;\n email: string;\n account_mode: string;\n tier: string;\n futures_tier: string;\n maintenance_cancel_orders: boolean;\n taker_fee_rate: number;\n maker_fee_rate: number;\n max_leverage: number;\n futures_taker_fee_rate: number;\n futures_maker_fee_rate: number;\n imr_factor: { [key: string]: number };\n max_notional: { [key: string]: number };\n }\n\n export interface Chain {\n dexs: string[];\n network_infos: NetworkInfos;\n token_infos: TokenInfo[];\n nativeToken?: TokenInfo;\n // nativeToken\n }\n\n export interface NetworkInfos {\n name: string;\n shortName: string;\n public_rpc_url: string;\n chain_id: number;\n currency_symbol: string;\n bridge_enable: boolean;\n mainnet: boolean;\n est_txn_mins: number | null;\n explorer_base_url: string;\n bridgeless?: boolean;\n withdrawal_fee?: number;\n minimum_withdraw_amount?: number;\n }\n\n export interface TokenInfo {\n address: string;\n symbol: string;\n decimals: number;\n display_name: string;\n precision: number;\n }\n\n export interface Chain {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n // export interface Token{\n\n // }\n\n export interface ChainDetail {\n chain_id: string;\n chain_name?: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface AssetHistory {\n meta: RecordsMeta;\n rows: AssetHistoryRow[];\n }\n\n export interface RecordsMeta {\n total: number;\n records_per_page: number;\n current_page: number;\n }\n\n export interface AssetHistoryRow {\n id: string;\n tx_id: string;\n side: string;\n token: string;\n amount: number;\n fee: number;\n trans_status: string;\n created_time: number;\n updated_time: number;\n chain_id: string;\n }\n\n export interface FundingFeeHistory {\n meta: RecordsMeta;\n rows: FundingFeeRow[];\n }\n\n export interface FundingFeeRow {\n symbol: string;\n funding_rate: number;\n mark_price: number;\n funding_fee: number;\n payment_type: string;\n status: string;\n created_time: number;\n updated_time: number;\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface TransferHistory {\n meta: RecordsMeta;\n rows: TransferHistoryRow[];\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface DailyRow {\n account_value: number;\n broker_id: string;\n date: string;\n perp_volume: number;\n pnl: number;\n snapshot_time?: number;\n }\n\n export interface PositionHistory {\n position_id: number; // Unique identifier for the position\n liquidation_id?: number; // Unique identifier for the position\n position_status: string; // Status of the position\n type: string; // Type of the position activity\n symbol: string; // Trading pair symbol\n avg_open_price: number; // Average open price of the position\n avg_close_price: number; // Average close price of the position\n max_position_qty: number; // Maximum quantity held in the position\n closed_position_qty: number; // Quantity closed in the position\n side: \"LONG\" | \"SHORT\"; // Side of the position\n trading_fee: number; // Fee charged for trading\n accumulated_funding_fee: number; // Accumulated funding fee for the position\n insurance_fund_fee: number; // Fee contributed to the insurance fund\n liquidator_fee: number; // Fee paid to the liquidator\n realized_pnl: number; // Realized profit and loss\n open_timestamp: number; // Timestamp when the position was opened\n close_timestamp: number; // Timestamp when the position was closed\n last_update_time: number; // Timestamp of the last update to the position\n }\n\n export interface LiquidationPositionByPerp {\n abs_liquidation_fee: number;\n cost_position_transfer: number;\n liquidator_fee: number;\n position_qty: number;\n symbol: string;\n transfer_price: number;\n }\n\n export interface Liquidation {\n liquidation_id: number;\n timestamp: number;\n transfer_amount_to_insurance_fund: number;\n positions_by_perp: LiquidationPositionByPerp[];\n }\n\n export interface RestrictedAreas {\n invalid_web_country: string;\n invalid_web_city: string;\n }\n\n export interface IpInfo {\n ip: string;\n city: string;\n region: string;\n checked: boolean;\n }\n}\n\nexport declare namespace WSMessage {\n export interface Ticker {\n symbol: string;\n open: number;\n close: number;\n high: number;\n low: number;\n volume: number;\n amount: number;\n count: number;\n change: number;\n open_interest?: number;\n index_price?: number;\n }\n\n export interface MarkPrice {\n symbol: string;\n price: number;\n }\n\n export interface Position {\n symbol: string;\n positionQty: number;\n costPosition: number;\n lastSumUnitaryFunding: number;\n sumUnitaryFundingVersion: number;\n pendingLongQty: number;\n pendingShortQty: number;\n settlePrice: number;\n averageOpenPrice: number;\n unsettledPnl: number;\n pnl24H: number;\n fee24H: number;\n markPrice: number;\n estLiqPrice: number;\n version: number;\n imr: number;\n imrwithOrders: number;\n mmrwithOrders: number;\n mmr: number;\n }\n\n export interface VaultBalance {\n chain_id: string;\n token: string;\n balance: number;\n }\n\n export interface Order {\n symbol: string;\n clientOrderId: string;\n orderId: number;\n type: string;\n side: string;\n quantity: number;\n price: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n avgPrice: number;\n status: string;\n reason: string;\n totalFee: number;\n visible: number;\n /**\n * update time\n */\n timestamp: number;\n reduceOnly: boolean;\n maker: boolean;\n }\n\n export interface Holding {\n holding: number;\n frozen: number;\n interest: number;\n pendingShortQty: number;\n pendingExposure: number;\n pendingLongQty: number;\n pendingLongExposure: number;\n version: number;\n staked: number;\n unbonding: number;\n vault: number;\n fee24H: number;\n markPrice: number;\n }\n\n export interface AlgoOrder {\n symbol: string;\n rootAlgoOrderId: number;\n parentAlgoOrderId: number;\n algoOrderId: number;\n status: string;\n algoType: string;\n side: string;\n quantity: number;\n triggerStatus: string;\n price: number;\n type: string;\n triggerTradePrice: number;\n triggerTime: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n averageExecutedPrice: number;\n totalFee: number;\n timestamp: number;\n visibleQuantity: number;\n reduceOnly: boolean;\n triggered: boolean;\n maker: boolean;\n rootAlgoStatus: string;\n algoStatus: string;\n }\n\n export interface Announcement {\n announcement_id: string;\n message: string;\n i18n: Record<PropertyKey, string | null>;\n url?: string | null;\n type: AnnouncementType | null;\n updated_time: number;\n }\n}\n","/**\n * Supported types for placing an order\n */\nexport enum OrderType {\n LIMIT = \"LIMIT\",\n MARKET = \"MARKET\",\n IOC = \"IOC\",\n FOK = \"FOK\",\n POST_ONLY = \"POST_ONLY\",\n ASK = \"ASK\",\n BID = \"BID\",\n STOP_LIMIT = \"STOP_LIMIT\",\n STOP_MARKET = \"STOP_MARKET\",\n /**\n * Only for POSITIONAL_TP_SL type algo order\n */\n CLOSE_POSITION = \"CLOSE_POSITION\",\n /**\n * Scaled order\n */\n SCALED = \"SCALED\",\n}\n\nexport enum BBOOrderType {\n COUNTERPARTY1 = \"counterparty1\",\n COUNTERPARTY5 = \"counterparty5\",\n QUEUE1 = \"queue1\",\n QUEUE5 = \"queue5\",\n}\n\nexport enum OrderLevel {\n ONE = 0,\n TWO = 1,\n THREE = 2,\n FOUR = 3,\n FIVE = 4,\n}\n\nexport enum AlgoOrderRootType {\n TP_SL = \"TP_SL\",\n POSITIONAL_TP_SL = \"POSITIONAL_TP_SL\",\n STOP = \"STOP\",\n BRACKET = \"BRACKET\",\n}\n\nexport enum TriggerPriceType {\n MARK_PRICE = \"MARK_PRICE\",\n}\n\nexport enum AlgoOrderType {\n TAKE_PROFIT = \"TAKE_PROFIT\",\n STOP_LOSS = \"STOP_LOSS\",\n}\n\nexport enum OrderSide {\n BUY = \"BUY\",\n SELL = \"SELL\",\n}\n\nexport enum PositionSide {\n LONG = \"LONG\",\n SHORT = \"SHORT\",\n}\n\nexport enum OrderStatus {\n /** @deprecated */\n OPEN = \"OPEN\",\n NEW = \"NEW\",\n FILLED = \"FILLED\",\n PARTIAL_FILLED = \"PARTIAL_FILLED\",\n CANCELLED = \"CANCELLED\",\n REPLACED = \"REPLACED\",\n // CANCELLED + FILLED\n COMPLETED = \"COMPLETED\",\n // NEW + PARTIAL_FILLED\n INCOMPLETE = \"INCOMPLETE\",\n REJECTED = \"REJECTED\",\n}\n\nexport interface OrderExt {\n total: string;\n}\n\nexport interface BaseOrder {\n symbol: string;\n order_type: OrderType;\n order_type_ext?: OrderType;\n order_price: string;\n order_quantity: string;\n order_amount?: number;\n visible_quantity: number;\n side: OrderSide;\n reduce_only: boolean;\n slippage: number;\n order_tag: string;\n level: OrderLevel;\n post_only_adjust: boolean;\n /** custom order id, it is used to identify the order from ws */\n client_order_id: string;\n}\n\n/** Scaled order fields */\nexport interface ScaledOrder {\n /** upper price */\n max_price?: string;\n /** lower price */\n min_price?: string;\n /** total orders */\n total_orders?: number;\n /** quantity distribution type */\n distribution_type?: DistributionType;\n /** the ratio between upper and lower price. */\n skew?: number;\n}\n\nexport interface RegularOrder extends BaseOrder, OrderExt, ScaledOrder {\n // symbol: string;\n // client_order_id: string;\n // type: OrderType;\n // price: number;\n // quantity: number;\n}\n\nexport interface AlgoOrder extends BaseOrder, OrderExt {\n // symbol: string;\n quantity: string;\n type: OrderType;\n price: string;\n algo_type: AlgoOrderRootType;\n trigger_price_type: string;\n trigger_price: string;\n child_orders: AlgoOrderChildOrders[];\n}\n\nexport interface BracketOrder extends AlgoOrder, OrderExt {\n /**\n * Computed take profit\n */\n tp_pnl?: string;\n tp_offset?: string;\n tp_offset_percentage?: string;\n tp_ROI?: string;\n tp_trigger_price?: string;\n\n /**\n * Computed stop loss\n */\n sl_pnl?: string;\n sl_offset?: string;\n sl_offset_percentage?: string;\n sl_ROI?: string;\n sl_trigger_price?: string;\n}\n\nexport type OrderlyOrder = RegularOrder & AlgoOrder & BracketOrder;\n\nexport interface AlgoOrderChildOrders {\n symbol: string;\n algo_type: string;\n child_orders: ChildOrder[];\n}\n\nexport interface ChildOrder {\n symbol: string;\n algo_type: AlgoOrderType;\n side: string;\n type: OrderType;\n trigger_price: string;\n\n reduce_only: boolean;\n trigger_price_type?: string;\n}\n\nexport interface OrderEntity extends ScaledOrder {\n symbol: string;\n order_type: OrderType;\n algo_type?: AlgoOrderRootType;\n order_type_ext?: OrderType;\n order_price?: string;\n order_quantity?: string;\n order_amount?: number;\n // Whether to display in the orderbook, default=order_quantity, not displayed when =0,\n visible_quantity?: number;\n reduce_only?: boolean;\n side: OrderSide;\n broker_id?: string;\n slippage?: number;\n\n // internal fields\n total?: string;\n // hideInOrderbook?: boolean;\n isStopOrder?: boolean;\n trigger_price?: string;\n order_tag?: string;\n level?: OrderLevel;\n}\n\nexport enum DistributionType {\n // enum value need to use lowercase to match the track params\n FLAT = \"flat\",\n ASCENDING = \"ascending\",\n DESCENDING = \"descending\",\n CUSTOM = \"custom\",\n}\n\nexport type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;\nexport type RequireKeys<T extends object, K extends keyof T> = Required<\n Pick<T, K>\n> &\n Partial<Omit<T, K>>;\n\nexport interface BaseAlgoOrderEntity<T extends AlgoOrderRootType>\n extends OrderEntity {\n algo_type: AlgoOrderRootType;\n child_orders: (Partial<Omit<AlgoOrderEntity<T>, \"algo_type\" | \"type\">> & {\n algo_type: AlgoOrderType;\n type: OrderType;\n child_orders?: BaseAlgoOrderEntity<T>[\"child_orders\"];\n // trigger_price: number | string;\n })[];\n // if update the order, then need to provide the order_id\n algo_order_id?: number;\n client_order_id?: string;\n order_tag?: string;\n price?: number | string;\n quantity: number | string;\n reduce_only?: boolean;\n side: OrderSide;\n symbol: string;\n trigger_price: string;\n trigger_price_type: TriggerPriceType;\n type: OrderType;\n visible_quantity?: number;\n is_activated?: boolean;\n tp_trigger_price?: string | number;\n sl_trigger_price?: string | number;\n}\n\nexport type AlgoOrderEntity<\n T extends AlgoOrderRootType = AlgoOrderRootType.STOP,\n> = T extends AlgoOrderRootType.TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\"\n >\n : T extends AlgoOrderRootType.POSITIONAL_TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\" | \"quantity\"\n >\n : Omit<BaseAlgoOrderEntity<T>, \"child_orders\" | \"order_type\">;\n\nexport type TPSLOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.TP_SL>,\n \"side\" | \"type\" | \"trigger_price\"\n>;\n\nexport type BracketOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.BRACKET>,\n \"side\"\n>;\n","export enum WithdrawStatus {\n NotSupported = \"NotSupported\",\n NotConnected = \"NotConnected\",\n Unsettle = \"Unsettle\",\n InsufficientBalance = \"InsufficientBalance\",\n Normal = \"Normal\",\n}\n","export interface Chain {\n id: number;\n chainNameShort: string;\n chainLogo: string;\n chainInfo: ChainInfo;\n minGasBalance: number;\n minCrossGasBalance: number;\n maxPrepayCrossGas: number;\n blockExplorerName: string;\n chainName: string;\n requestRpc: string;\n}\n\nexport interface ChainInfo {\n chainId: string;\n chainName: string;\n nativeCurrency: NativeCurrency;\n rpcUrls: string[];\n blockExplorerUrls: string[];\n}\n\nexport interface NativeCurrency {\n name: string;\n symbol: string;\n decimals: number;\n fix: number;\n}\n\nexport const Ethereum = {\n chainNameShort: \"Ethereum\",\n id: 1,\n chainLogo: \"\",\n chainInfo: {\n chainId: `0x${(1).toString(16)}`,\n chainName: \"Ethereum Mainnet\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 8,\n },\n rpcUrls: [\"https://mainnet.infura.io/v3/9155d40884554acdb17699a18a1fe348\"],\n blockExplorerUrls: [\"https://etherscan.io/\"],\n },\n minGasBalance: 0.002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.025,\n blockExplorerName: \"EthScan\",\n chainName: \"Ethereum Mainnet\",\n requestRpc: \"https://rpc.ankr.com/eth\",\n};\n\nexport const Avalanche = {\n id: 43114,\n chainInfo: {\n chainId: `0x${(43114).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche\",\n chainNameShort: \"Avalanche\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const Fuji = {\n id: 43113,\n chainInfo: {\n chainId: `0x${(43113).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche Fuji Testnet\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche Fuji\",\n chainNameShort: \"Avalanche Fuji\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const BNB = {\n id: 56,\n chainInfo: {\n chainId: `0x${(56).toString(16)}`, // 0x38\n chainName: \"BNB Chain\",\n nativeCurrency: {\n name: \"bnb\",\n symbol: \"BNB\",\n decimals: 18,\n fix: 6,\n },\n rpcUrls: [\"https://bsc-dataseed1.binance.org/\"],\n blockExplorerUrls: [\"https://bscscan.com/\"],\n },\n minGasBalance: 0.02,\n minCrossGasBalance: 0.02,\n maxPrepayCrossGas: 0.1,\n blockExplorerName: \"BscScan\",\n chainName: \"Binance Smart Chain\",\n chainNameShort: \"BNB Chain\",\n requestRpc: \"https://rpc.ankr.com/bsc\",\n chainLogo: \"\",\n};\n\nexport const Fantom = {\n id: 250,\n chainInfo: {\n chainId: `0x${(250).toString(16)}`, // 0x38\n chainName: \"Fantom\",\n nativeCurrency: {\n name: \"ftm\",\n symbol: \"FTM\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpcapi.fantom.network\"],\n blockExplorerUrls: [\"https://ftmscan.com/\"],\n },\n minGasBalance: 1,\n minCrossGasBalance: 10,\n maxPrepayCrossGas: 60,\n blockExplorerName: \"FTMScan\",\n chainName: \"Fantom\",\n chainNameShort: \"Fantom\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/fantom\",\n};\n\nexport const Polygon = {\n id: 137,\n chainInfo: {\n chainId: `0x${(137).toString(16)}`,\n chainName: \"Polygon\",\n nativeCurrency: {\n name: \"matic\",\n symbol: \"MATIC\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-mainnet.matic.network\"],\n blockExplorerUrls: [\"https://polygonscan.com/\"],\n },\n minGasBalance: 0.1,\n minCrossGasBalance: 1,\n maxPrepayCrossGas: 30,\n blockExplorerName: \"Polygonscan\",\n chainName: \"Polygon\",\n chainNameShort: \"Polygon\",\n requestRpc: \"https://rpc.ankr.com/polygon\",\n chainLogo: \"\",\n};\n\nexport const Arbitrum = {\n id: 42161,\n chainInfo: {\n chainId: `0x${(42161).toString(16)}`,\n chainName: \"Arbitrum\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arb1.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://arbiscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbiscan\",\n chainName: \"Arbitrum\",\n chainNameShort: \"Arbitrum\",\n requestRpc: \"https://arb1.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const Optimism = {\n id: 10,\n chainInfo: {\n chainId: `0x${(10).toString(16)}`,\n chainName: \"Optimism\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://mainnet.optimism.io\"],\n blockExplorerUrls: [\"https://optimistic.etherscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism\",\n chainName: \"Optimism\",\n chainNameShort: \"Optimism\",\n requestRpc: \"https://rpc.ankr.com/optimism\",\n chainLogo: \"\",\n};\n\nexport const zkSyncEra = {\n id: 324,\n chainInfo: {\n chainId: `0x${(324).toString(16)}`,\n chainName: \"zkSync Era\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zksync2-mainnet.zksync.io\"],\n blockExplorerUrls: [\"https://explorer.zksync.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"zkSync Era\",\n chainName: \"zkSync Era\",\n chainNameShort: \"zkSync Era\",\n requestRpc: \"https://zksync2-mainnet.zksync.io/\",\n chainLogo: \"\",\n // blockExplorerName: 'zkSync Era Goerli',\n // chainName: 'zkSync Era Goerli',\n // chainNameShort: 'zkSync Era Goerli',\n // requestRpc: 'https://zksync2-testnet.zksync.dev/',\n // chainLogo: '',\n};\n\nexport const PolygonzkEVM = {\n id: 1101,\n chainInfo: {\n chainId: `0x${(1101).toString(16)}`,\n chainName: \"Polygon zkEVM\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zkevm-rpc.com\"],\n blockExplorerUrls: [\"https://zkevm.polygonscan.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon zkEVM\",\n chainName: \"Polygon zkEVM\",\n chainNameShort: \"Polygon zkEVM\",\n requestRpc: \"https://zkevm-rpc.com\",\n chainLogo: \"\",\n};\n\nexport const Linea = {\n id: 59144,\n chainInfo: {\n chainId: `0x${(59144).toString(16)}`,\n chainName: \"Linea\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.linea.build\"],\n blockExplorerUrls: [\"https://lineascan.build/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Linea\",\n chainName: \"Linea\",\n chainNameShort: \"Linea\",\n requestRpc: \"https://rpc.linea.build\",\n chainLogo: \"\",\n};\n\nexport const Base = {\n id: 8453,\n chainInfo: {\n chainId: `0x${(8453).toString(16)}`,\n chainName: \"Base Network\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://developer-access-mainnet.base.org/\"],\n blockExplorerUrls: [\"https://basescan.org\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base\",\n chainName: \"Base\",\n chainNameShort: \"Base\",\n requestRpc: \"https://developer-access-mainnet.base.org/\",\n chainLogo: \"\",\n};\n\nexport const Mantle = {\n id: 5000,\n chainInfo: {\n chainId: `0x${(5000).toString(16)}`,\n chainName: \"Mantle\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.mantle.xyz/\"],\n blockExplorerUrls: [\"https://mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle\",\n chainName: \"Mantle\",\n chainNameShort: \"Mantle\",\n requestRpc: \"https://rpc.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumGoerli = {\n id: 421613,\n chainInfo: {\n chainId: `0x${(421613).toString(16)}`,\n chainName: \"Arbitrum Goerli\",\n nativeCurrency: {\n name: \"AGOR\",\n symbol: \"AGOR\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://goerli-rollup.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://goerli-rollup-explorer.arbitrum.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Goerli\",\n chainName: \"Arbitrum Goerli\",\n chainNameShort: \"Arbitrum Goerli\",\n requestRpc: \"https://goerli-rollup.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumSepolia = {\n id: 421614,\n chainInfo: {\n chainId: `0x${(421614).toString(16)}`,\n chainName: \"Arbitrum Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\"],\n blockExplorerUrls: [\"https://sepolia-explorer.arbitrum.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Sepolia\",\n chainName: \"Arbitrum Sepolia\",\n chainNameShort: \"Arbitrum Sepolia\",\n requestRpc: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chainLogo: \"\",\n};\n\nexport const OptimismGoerli = {\n id: 420,\n chainInfo: {\n chainId: `0x${(420).toString(16)}`,\n chainName: \"Optimism Goerli\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://optimism-goerli.gateway.tenderly.co\"],\n blockExplorerUrls: [\"https://goerli-optimism.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Goerli\",\n chainName: \"Optimism Goerli\",\n chainNameShort: \"Optimism Goerli\",\n requestRpc: \"https://optimism-goerli.gateway.tenderly.co\",\n chainLogo: \"\",\n};\n\nexport const OptimismSepolia = {\n id: 11155420,\n chainInfo: {\n chainId: `0x${(11155420).toString(16)}`,\n chainName: \"Optimism Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://sepolia.optimism.io\"],\n blockExplorerUrls: [\"https://sepolia-optimistic.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Sepolia\",\n chainName: \"Optimism Sepolia\",\n chainNameShort: \"Optimism Sepolia\",\n requestRpc: \"https://sepolia.optimism.io\",\n chainLogo: \"\",\n};\n\nexport const BaseSepolia = {\n id: 84532,\n chainInfo: {\n chainId: `0x${(84532).toString(16)}`,\n chainName: \"Base Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://base-sepolia-rpc.publicnode.com\"],\n blockExplorerUrls: [\"https://base-sepolia.blockscout.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base Sepolia\",\n chainName: \"Base Sepolia\",\n chainNameShort: \"Base Sepolia\",\n requestRpc: \"https://base-sepolia-rpc.publicnode.com\",\n chainLogo: \"\",\n};\n\nexport const MantleSepolia = {\n id: 5003,\n chainInfo: {\n chainId: `0x${(5003).toString(16)}`,\n chainName: \"Mantle Sepolia\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.sepolia.mantle.xyz/\"],\n blockExplorerUrls: [\"https://sepolia.mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle Sepolia\",\n chainName: \"Mantle Sepolia\",\n chainNameShort: \"Mantle Sepolia\",\n requestRpc: \"https://rpc.sepolia.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const PolygonAmoy = {\n id: 80002,\n chainInfo: {\n chainId: `0x${(80002).toString(16)}`,\n chainName: \"Polygon Amoy\",\n nativeCurrency: {\n name: \"MATIC\",\n symbol: \"MATIC\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-amoy.polygon.technology/\"],\n blockExplorerUrls: [\"https://www.oklink.com/amoy\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon Amoy\",\n chainName: \"Polygon Amoy\",\n chainNameShort: \"Polygon Amoy\",\n requestRpc: \"https://rpc-amoy.polygon.technology/\",\n chainLogo: \"\",\n};\n\nexport const Sei = {\n id: 1329,\n chainInfo: {\n chainId: `0x${(1329).toString(16)}`,\n chainName: \"Sei Network\",\n nativeCurrency: {\n name: \"SEI\",\n symbol: \"SEI\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://evm-rpc.sei-apis.com\"],\n blockExplorerUrls: [\"https://seitrace.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\n\nexport const StoryTestnet = {\n name: \"Story Odyssey Testnet\",\n public_rpc_url: \"https://rpc.odyssey.storyrpc.io/\",\n chain_id: 1516,\n currency_symbol: \"IP\",\n explorer_base_url: \"\",\n vault_address: \"\",\n};\nexport const StoryOdysseyTestnet = {\n id: 1329,\n chainInfo: {\n chainId: `0x${StoryTestnet.chain_id.toString(16)}`,\n chainName: StoryTestnet.name,\n nativeCurrency: {\n name: \"IP\",\n symbol: \"IP\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [StoryTestnet.public_rpc_url],\n blockExplorerUrls: [],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\nexport const chainsInfoMap: Map<number, Chain> = new Map([\n [Ethereum.id, Ethereum],\n [Avalanche.id, Avalanche],\n [Fuji.id, Fuji],\n [BNB.id, BNB],\n [Fantom.id, Fantom],\n [Polygon.id, Polygon],\n [Arbitrum.id, Arbitrum],\n [Optimism.id, Optimism],\n [zkSyncEra.id, zkSyncEra],\n [PolygonzkEVM.id, PolygonzkEVM],\n [Linea.id, Linea],\n [Base.id, Base],\n [Mantle.id, Mantle],\n [ArbitrumGoerli.id, ArbitrumGoerli],\n [ArbitrumSepolia.id, ArbitrumSepolia],\n [OptimismGoerli.id, OptimismGoerli],\n [OptimismSepolia.id, OptimismSepolia],\n [BaseSepolia.id, BaseSepolia],\n [MantleSepolia.id, MantleSepolia],\n [PolygonAmoy.id, PolygonAmoy],\n [Sei.id, Sei],\n [StoryOdysseyTestnet.id, StoryOdysseyTestnet],\n]);\n\nexport const SolanaDevnet = {\n id: 901901901,\n chainInfo: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chainId: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n} as unknown as typeof Arbitrum;\n\nexport const TestnetChains = [\n {\n network_infos: {\n name: \"Arbitrum Sepolia\",\n shortName: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chain_id: 421614,\n currency_symbol: \"ETH\",\n bridge_enable: true,\n mainnet: false,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n est_txn_mins: null,\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chain_id: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: StoryTestnet,\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0xF1815bd50389c46847f0Bda824eC8da914045D14\",\n decimals: 6,\n },\n ],\n },\n // {\n // network_infos: {\n // name: \"Mantle Sepolia\",\n // shortName: \"Mantle Sepolia\",\n // public_rpc_url: \"https://rpc.sepolia.mantle.xyz/\",\n // chain_id: 5003,\n // currency_symbol: \"MNT\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://sepolia.mantlescan.xyz/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xAcab8129E2cE587fD203FD770ec9ECAFA2C88080\",\n // decimals: 6,\n // display_name: \"USDC.e\",\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Arbitrum Goerli\",\n // shortName: \"Arbitrum Goerli\",\n // public_rpc_url: \"https://goerli-rollup.arbitrum.io/rpc\",\n // chain_id: 421613,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli.arbiscan.io/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xfd064A18f3BF249cf1f87FC203E90D8f650f2d63\",\n // decimals: 6,\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Optimism Goerli\",\n // shortName: \"Optimism Goerli\",\n // public_rpc_url: \"https://optimism-goerli.gateway.tenderly.co\",\n // chain_id: 420,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli-optimism.etherscan.io\",\n // est_txn_mins: null,\n // },\n // },\n];\n\nexport const defaultMainnetChains = [Arbitrum, Base, Optimism];\nexport const defaultTestnetChains = [ArbitrumSepolia];\n\nexport enum ChainNamespace {\n evm = \"EVM\",\n solana = \"SOL\",\n}\n\nexport const AbstractChains = new Set([2741, 11124]);\nexport const SolanaChains = new Set([901901901, 900900900]);\n","export enum TrackerEventName {\n /** virtual event (not send this event name to tracker) */\n trackIdentifyUserId = \"track_identify_user_id\",\n trackIdentify = \"track_identify\",\n trackCustomEvent = \"track_custom_event\",\n\n /** real event name (send this event name to tracker) */\n withdrawSuccess = \"withdraw_request_success\",\n withdrawFailed = \"withdraw_request_failure\",\n depositSuccess = \"deposit_request_success\",\n depositFailed = \"deposit_request_failure\",\n signinSuccess = \"sign_message_success\",\n placeOrderSuccess = \"place_order_success\",\n walletConnect = \"connect_wallet_success\",\n clickLinkDeviceButton = \"click_link_device_button\",\n signLinkDeviceMessageSuccess = \"sign_link_device_message_success\",\n linkDeviceModalClickConfirm = \"link_device_modal_click_confirm\",\n socialLoginSuccess = \"social_login_success\",\n clickSwitchNetwork = \"click_switch_network\",\n clickSwitchWallet = \"click_switch_wallet\",\n switchNetworkSuccess = \"switch_network_success\",\n clickExportPrivateKey = \"click_export_private_key\",\n switchLanguage = \"switch_language\",\n leaderboardCampaignClickTradeNow = \"leaderboard_campaign_click_trade_now\",\n leaderboardCampaignClickLearnMore = \"leaderboard_campaign_click_learn_more\",\n}\n","import { API } from \"./types/api\";\n\n// export type Chain = {\n// id: string;\n// name?: string;\n// };\n\nexport type CurrentChain = {\n id: number;\n info: API.Chain;\n};\n\nexport enum WS_WalletStatusEnum {\n NO = \"NO\",\n FAILED = \"FAILED\",\n PENDING = \"PENDING\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n}\n","export const LedgerWalletKey = \"orderly:ledger-wallet\";\nexport const ConnectorKey = \"orderly:connectorKey\";\nexport const ChainKey = \"order:chain\";\nexport const LinkDeviceKey = \"orderly_link_device\";\n","export class ApiError extends Error {\n constructor(message: string, private readonly code: number) {\n super(message);\n this.name = \"ApiError\";\n }\n}\n\nexport class SDKError extends Error {\n constructor(message: string) {\n super(`[ORDERLY SDK ERROR]:${message}`);\n this.name = \"SDKError\";\n }\n}\n","export const definedTypes = {\n EIP712Domain: [\n { name: \"name\", type: \"string\" },\n { name: \"version\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"verifyingContract\", type: \"address\" },\n ],\n Registration: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"registrationNonce\", type: \"uint256\" },\n ],\n Withdraw: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"receiver\", type: \"address\" },\n { name: \"token\", type: \"string\" },\n { name: \"amount\", type: \"uint256\" },\n { name: \"withdrawNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n AddOrderlyKey: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"orderlyKey\", type: \"string\" },\n { name: \"scope\", type: \"string\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"expiration\", type: \"uint64\" },\n ],\n SettlePnl: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"settleNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n } as const;","export enum AssetHistoryStatusEnum {\n NEW = \"NEW\",\n CONFIRM = \"CONFIRM\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n FAILED = \"FAILED\",\n PENDING_REBALANCE = \"PENDING_REBALANCE\",\n}\n"],"mappings":"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","names":["AccountStatusEnum","SystemStateEnum","ExchangeStatusEnum","NetworkStatusEnum","AnnouncementType","OrderType","BBOOrderType","OrderLevel","AlgoOrderRootType","TriggerPriceType","AlgoOrderType","OrderSide","OrderStatus","DistributionType","WithdrawStatus","ChainNamespace","TrackerEventName","WS_WalletStatusEnum","AssetHistoryStatusEnum"]}
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// src/version.ts
|
|
2
2
|
if (typeof window !== "undefined") {
|
|
3
3
|
window.__ORDERLY_VERSION__ = window.__ORDERLY_VERSION__ || {};
|
|
4
|
-
window.__ORDERLY_VERSION__["@orderly.network/types"] = "2.
|
|
4
|
+
window.__ORDERLY_VERSION__["@orderly.network/types"] = "2.4.0-alpha.0";
|
|
5
5
|
}
|
|
6
|
-
var version_default = "2.
|
|
6
|
+
var version_default = "2.4.0-alpha.0";
|
|
7
7
|
|
|
8
8
|
// src/constants.ts
|
|
9
9
|
var AccountStatusEnum = /* @__PURE__ */ ((AccountStatusEnum2) => {
|
|
@@ -138,6 +138,7 @@ var OrderType = /* @__PURE__ */ ((OrderType2) => {
|
|
|
138
138
|
OrderType2["STOP_LIMIT"] = "STOP_LIMIT";
|
|
139
139
|
OrderType2["STOP_MARKET"] = "STOP_MARKET";
|
|
140
140
|
OrderType2["CLOSE_POSITION"] = "CLOSE_POSITION";
|
|
141
|
+
OrderType2["SCALED"] = "SCALED";
|
|
141
142
|
return OrderType2;
|
|
142
143
|
})(OrderType || {});
|
|
143
144
|
var BBOOrderType = /* @__PURE__ */ ((BBOOrderType2) => {
|
|
@@ -188,6 +189,13 @@ var OrderStatus = /* @__PURE__ */ ((OrderStatus2) => {
|
|
|
188
189
|
OrderStatus2["REJECTED"] = "REJECTED";
|
|
189
190
|
return OrderStatus2;
|
|
190
191
|
})(OrderStatus || {});
|
|
192
|
+
var DistributionType = /* @__PURE__ */ ((DistributionType2) => {
|
|
193
|
+
DistributionType2["FLAT"] = "flat";
|
|
194
|
+
DistributionType2["ASCENDING"] = "ascending";
|
|
195
|
+
DistributionType2["DESCENDING"] = "descending";
|
|
196
|
+
DistributionType2["CUSTOM"] = "custom";
|
|
197
|
+
return DistributionType2;
|
|
198
|
+
})(DistributionType || {});
|
|
191
199
|
|
|
192
200
|
// src/withdraw.ts
|
|
193
201
|
var WithdrawStatus = /* @__PURE__ */ ((WithdrawStatus2) => {
|
|
@@ -1012,6 +1020,7 @@ export {
|
|
|
1012
1020
|
ChainNamespace,
|
|
1013
1021
|
ConnectorKey,
|
|
1014
1022
|
DEPOSIT_FEE_RATE,
|
|
1023
|
+
DistributionType,
|
|
1015
1024
|
Ethereum,
|
|
1016
1025
|
ExchangeStatusEnum,
|
|
1017
1026
|
Fantom,
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/version.ts","../src/constants.ts","../src/types/api.ts","../src/order.ts","../src/withdraw.ts","../src/chains.ts","../src/track.ts","../src/wallet.ts","../src/storageKey.ts","../src/errors.ts","../src/sign.ts","../src/index.ts","../src/assetHistory.ts"],"sourcesContent":["\ndeclare global {\n interface Window {\n __ORDERLY_VERSION__?: {\n [key: string]: string;\n };\n }\n}\nif(typeof window !== 'undefined') {\n window.__ORDERLY_VERSION__ = window.__ORDERLY_VERSION__ || {};\n window.__ORDERLY_VERSION__[\"@orderly.network/types\"] = \"2.3.2-alpha.0\";\n};\n\nexport default \"2.3.2-alpha.0\";\n","export enum AccountStatusEnum {\n EnableTradingWithoutConnected = -1,\n NotConnected = 0,\n Connected = 1,\n NotSignedIn = 2,\n SignedIn = 3,\n DisabledTrading = 4,\n EnableTrading = 5,\n}\n\nexport enum SystemStateEnum {\n Loading = 0,\n Error = 1,\n Ready = 10,\n}\n\nexport enum ExchangeStatusEnum {\n Normal = 0,\n Maintain = 1,\n}\n\nexport type NetworkId = \"testnet\" | \"mainnet\";\n\nexport enum NetworkStatusEnum {\n unknown = 0,\n unsupported = 1,\n supported = 2,\n}\n\n// Testnet\n// Arbitrum Goerli\n// export const ARBITRUM_TESTNET_CHAINID = 421613;\n// export const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EED\";\n\n// Arbitrum Sepolia\nexport const ARBITRUM_TESTNET_CHAINID = 421614;\nexport const SOLANA_TESTNET_CHAINID = 901901901;\nexport const SOLANA_MAINNET_CHAINID = 900900900;\nexport const STORY_TESTNET_CHAINID = 1516;\nexport const MONAD_TESTNET_CHAINID = 10143;\nexport const ABSTRACT_TESTNET_CHAINID = 11124;\nexport const ABSTRACT_MAINNET_CHAINID = 2741;\nexport const BSC_TESTNET_CHAINID = 97;\nexport const ABSTRACT_CHAIN_ID_MAP = new Set([\n ABSTRACT_TESTNET_CHAINID,\n ABSTRACT_MAINNET_CHAINID,\n]);\n\nexport const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EEE\";\n\nexport const MANTLE_TESTNET_CHAINID = 5003;\nexport const MANTLE_TESTNET_CHAINID_HEX = \"0x138b\";\n\n// Mainnet\nexport const ARBITRUM_MAINNET_CHAINID = 42161;\nexport const ARBITRUM_MAINNET_CHAINID_HEX = \"0xa4b1\";\n\nexport const MEDIA_TABLET = \"(max-width: 768px)\";\n\nexport const DEPOSIT_FEE_RATE = 1.05;\n\n/**\n * A constant for the maximum value for a ``uint256``.\n */\nexport const MaxUint256: bigint = BigInt(\n \"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\",\n);\n\nexport const nativeTokenAddress = \"0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE\";\n\nexport const isNativeTokenChecker = (address: string) =>\n address === nativeTokenAddress;\n\nexport const ArbitrumSepoliaChainInfo = {\n name: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.gateway.tenderly.co\",\n chain_id: \"421614\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n vault_address: \"0x0EaC556c0C2321BA25b9DC01e4e3c95aD5CDCd2f\",\n};\nexport const AbstractTestnetChainInfo = {\n name: \"Abstract Testnet\",\n public_rpc_url: \"https://api.testnet.abs.xyz\",\n chain_id: \"11124\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.abscan.org\",\n vault_address: \"0xf14Ff11F3bb1011ff42665Ec869c7827c43745Fd\",\n};\nexport const AbstractTestnetTokenInfo = {\n chain_id: \"11124\",\n contract_address: \"0xa0BB43E2eA7fcE91F07e628d72fD6333e80F47D2\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\nexport const SolanaDevnetChainInfo = {\n chain_id: \"901901901\",\n currency_decimal: 9,\n currency_symbol: \"SOL\",\n explorer_base_url: \"https://explorer.solana.com/?cluster=devnet\",\n name: \"Solana-Devnet\",\n public_rpc_url: \"https://api.devnet.solana.com\",\n vault_address: \"9shwxWDUNhtwkHocsUAmrNAQfBH2DHh4njdAEdHZZkF2\",\n};\n\nexport const SolanaDevnetTokenInfo = {\n chain_id: \"901901901\",\n contract_address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 5,\n display_name: \"USDC\",\n};\nexport const ArbitrumSepoliaTokenInfo = {\n chain_id: \"421614\",\n contract_address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\n\nexport const TesntTokenFallback = (testnetTokens: any) => [\n {\n token: \"USDC\",\n token_hash:\n \"0xd6aca1be9729c13d677335161321649cccae6a591554772516700f986f942eaa\",\n decimals: 6,\n minimum_withdraw_amount: 0.000001,\n chain_details: testnetTokens,\n },\n];\n","/* eslint-disable @typescript-eslint/no-namespace */\nimport { AlgoOrderRootType, OrderSide, OrderType } from \"../order\";\n\nexport enum AnnouncementType {\n Listing = \"LISTING\",\n Maintenance = \"MAINTENANCE\",\n Delisting = \"DELISTING\",\n}\n\nexport declare namespace API {\n //v1/public/token\n export interface Token {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n //v1/public/token\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n }\n\n // ws market, api v1/public/futures\n export interface MarketInfo {\n symbol: string;\n index_price: number;\n mark_price: number;\n sum_unitary_funding: number;\n est_funding_rate: number;\n last_funding_rate: number;\n next_funding_time: number;\n open_interest: string;\n \"24h_open\": number;\n \"24h_close\": number;\n \"24h_high\": number;\n \"24h_low\": number;\n /**\n * @deprecated\n * spelling mistake, use 24h_volume to instead, will be remove next version\n */\n \"24h_volumn\": number;\n \"24h_volume\": number;\n \"24h_amount\": number;\n }\n\n export interface MarketInfoExt extends MarketInfo {\n change: number;\n \"24h_volume\": number;\n }\n\n export interface Announcement {\n last_updated_time?: number | null;\n rows?: Array<{\n announcement_id: number | string;\n message: string;\n i18n?: Record<PropertyKey, string | null>;\n url?: string | null;\n type?: AnnouncementType | null;\n updated_time?: number | null;\n }>;\n }\n\n /**\n * v1/public/info\n */\n export interface Symbol {\n symbol: string;\n quote_min: number;\n quote_max: number;\n quote_tick: number;\n base_min: number;\n base_max: number;\n base_tick: number;\n min_notional: number;\n price_range: number;\n price_scope: number;\n std_liquidation_fee: number;\n liquidator_fee: number;\n claim_insurance_fund_discount: number;\n funding_period: number;\n cap_funding: number;\n floor_funding: number;\n interest_rate: number;\n created_time: number;\n updated_time: number;\n imr_factor: number;\n base_mmr: number;\n base_imr: number;\n }\n\n export interface TokenItem {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface SymbolExt extends Symbol {\n base: string;\n base_dp: number;\n\n quote: string;\n quote_dp: number;\n type: string;\n name: string;\n }\n\n export interface Order {\n symbol: string;\n status: string;\n side: string;\n order_id: number;\n algo_order_id?: number;\n user_id: number;\n price: number | null;\n type: string;\n quantity: number;\n amount: null;\n visible: number;\n executed: number;\n total_fee: number;\n fee_asset: string;\n client_order_id: null;\n average_executed_price: number;\n total_executed_quantity: number;\n visible_quantity: number;\n created_time: number;\n updated_time: number;\n reduce_only: boolean;\n trigger_price?: number;\n order_tag?: string;\n }\n\n export interface OrderExt extends Order {\n mark_price: string;\n }\n\n export interface AlgoOrder {\n algo_order_id: number;\n root_algo_order_id: number;\n parent_algo_order_id: number;\n parent_algo_type: AlgoOrderRootType;\n symbol: string;\n algo_type: string;\n child_orders: AlgoOrder[];\n side: string;\n quantity: number;\n is_triggered: boolean;\n is_activated: boolean;\n trigger_price: number;\n trigger_price_type: string;\n type: OrderType;\n root_algo_status: string;\n algo_status: string;\n price?: number;\n total_executed_quantity: number;\n visible_quantity: number;\n total_fee: number;\n fee_asset: string;\n reduce_only: boolean;\n created_time: number;\n updated_time: number;\n order_tag?: string;\n }\n\n export interface AlgoOrderExt extends AlgoOrder {\n mark_price: string;\n position?: Partial<Position>;\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n }\n\n export interface OrderResponse {\n rows: (Order | AlgoOrder)[];\n meta: {\n total: number;\n current_page: number;\n records_per_page: number;\n };\n }\n\n export interface FundingRate {\n symbol: string;\n est_funding_rate: number;\n est_funding_rate_timestamp: number;\n last_funding_rate: number;\n last_funding_rate_timestamp: number;\n next_funding_time: number;\n sum_unitary_funding: number;\n }\n\n export interface FundingPeriodData {\n rate: number;\n positive: number;\n negative: number;\n }\n\n export interface FundingHistory {\n symbol: string;\n data_start_time: string;\n funding: {\n last: FundingPeriodData;\n \"1d\": FundingPeriodData;\n \"3d\": FundingPeriodData;\n \"7d\": FundingPeriodData;\n \"14d\": FundingPeriodData;\n \"30d\": FundingPeriodData;\n \"90d\": FundingPeriodData;\n };\n }\n\n export interface PositionInfo extends PositionAggregated {\n // margin_ratio: number;\n // initial_margin_ratio: number;\n // maintenance_margin_ratio: number;\n // open_margin_ratio: number;\n // current_margin_ratio_with_orders: number;\n // initial_margin_ratio_with_orders: number;\n // maintenance_margin_ratio_with_orders: number;\n // total_collateral_value: number;\n // free_collateral: number;\n rows: Position[];\n // total_pnl_24_h: number;\n }\n\n export interface PositionAggregated {\n margin_ratio: number;\n initial_margin_ratio: number;\n maintenance_margin_ratio: number;\n open_margin_ratio: number;\n current_margin_ratio_with_orders: number;\n initial_margin_ratio_with_orders: number;\n maintenance_margin_ratio_with_orders: number;\n total_collateral_value: number;\n free_collateral: number;\n total_pnl_24_h: number;\n /**\n * @deprecated use total_unreal_pnl instead\n */\n unrealPnL: number;\n total_unreal_pnl: number;\n total_unreal_pnl_index?: number;\n /**\n * @deprecated use total_unsettled_pnl instead\n */\n unsettledPnL: number;\n total_unsettled_pnl: number;\n notional: number;\n unrealPnlROI: number;\n unrealPnlROI_index?: number;\n }\n\n export interface Position {\n account_id?: string;\n symbol: string;\n position_qty: number;\n cost_position: number;\n last_sum_unitary_funding: number;\n pending_long_qty: number;\n pending_short_qty: number;\n settle_price: number;\n average_open_price: number;\n unrealized_pnl: number;\n unrealized_pnl_index?: number;\n unrealized_pnl_ROI: number;\n unsettled_pnl: number;\n unsettled_pnl_ROI: number;\n unrealized_pnl_ROI_index?: number;\n mark_price: number;\n index_price?: number;\n est_liq_price: number | null;\n timestamp: number;\n /**\n * Maintenance margin ratio\n */\n mmr: number;\n imr: number;\n IMR_withdraw_orders: number;\n MMR_with_orders: number;\n pnl_24_h: number;\n fee_24_h: number;\n fundingFee?: number;\n }\n\n export interface PositionExt extends Position {\n notional: number;\n mm: number;\n }\n\n export interface PositionTPSLExt extends PositionExt {\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n\n // has_position_tp_sl: boolean;\n\n /**\n * related position tp/sl order\n */\n algo_order?: AlgoOrder;\n }\n\n export interface PositionsTPSLExt extends PositionAggregated {\n rows: PositionTPSLExt[];\n }\n\n export interface Trade {\n symbol: Symbol;\n side: OrderSide;\n ts: number;\n executed_price: number;\n executed_quantity: number;\n executed_timestamp: number;\n }\n\n export interface Holding {\n token: string;\n holding: number;\n frozen: number;\n pending_short: number;\n updated_time: number;\n }\n\n export interface AccountInfo {\n account_id: string;\n email: string;\n account_mode: string;\n tier: string;\n futures_tier: string;\n maintenance_cancel_orders: boolean;\n taker_fee_rate: number;\n maker_fee_rate: number;\n max_leverage: number;\n futures_taker_fee_rate: number;\n futures_maker_fee_rate: number;\n imr_factor: { [key: string]: number };\n max_notional: { [key: string]: number };\n }\n\n export interface Chain {\n dexs: string[];\n network_infos: NetworkInfos;\n token_infos: TokenInfo[];\n nativeToken?: TokenInfo;\n // nativeToken\n }\n\n export interface NetworkInfos {\n name: string;\n shortName: string;\n public_rpc_url: string;\n chain_id: number;\n currency_symbol: string;\n bridge_enable: boolean;\n mainnet: boolean;\n est_txn_mins: number | null;\n explorer_base_url: string;\n bridgeless?: boolean;\n withdrawal_fee?: number;\n minimum_withdraw_amount?: number;\n }\n\n export interface TokenInfo {\n address: string;\n symbol: string;\n decimals: number;\n display_name: string;\n precision: number;\n }\n\n export interface Chain {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n // export interface Token{\n\n // }\n\n export interface ChainDetail {\n chain_id: string;\n chain_name?: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface AssetHistory {\n meta: RecordsMeta;\n rows: AssetHistoryRow[];\n }\n\n export interface RecordsMeta {\n total: number;\n records_per_page: number;\n current_page: number;\n }\n\n export interface AssetHistoryRow {\n id: string;\n tx_id: string;\n side: string;\n token: string;\n amount: number;\n fee: number;\n trans_status: string;\n created_time: number;\n updated_time: number;\n chain_id: string;\n }\n\n export interface FundingFeeHistory {\n meta: RecordsMeta;\n rows: FundingFeeRow[];\n }\n\n export interface FundingFeeRow {\n symbol: string;\n funding_rate: number;\n mark_price: number;\n funding_fee: number;\n payment_type: string;\n status: string;\n created_time: number;\n updated_time: number;\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface TransferHistory {\n meta: RecordsMeta;\n rows: TransferHistoryRow[];\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface DailyRow {\n account_value: number;\n broker_id: string;\n date: string;\n perp_volume: number;\n pnl: number;\n snapshot_time?: number;\n }\n\n export interface PositionHistory {\n position_id: number; // Unique identifier for the position\n liquidation_id?: number; // Unique identifier for the position\n position_status: string; // Status of the position\n type: string; // Type of the position activity\n symbol: string; // Trading pair symbol\n avg_open_price: number; // Average open price of the position\n avg_close_price: number; // Average close price of the position\n max_position_qty: number; // Maximum quantity held in the position\n closed_position_qty: number; // Quantity closed in the position\n side: \"LONG\" | \"SHORT\"; // Side of the position\n trading_fee: number; // Fee charged for trading\n accumulated_funding_fee: number; // Accumulated funding fee for the position\n insurance_fund_fee: number; // Fee contributed to the insurance fund\n liquidator_fee: number; // Fee paid to the liquidator\n realized_pnl: number; // Realized profit and loss\n open_timestamp: number; // Timestamp when the position was opened\n close_timestamp: number; // Timestamp when the position was closed\n last_update_time: number; // Timestamp of the last update to the position\n }\n\n export interface LiquidationPositionByPerp {\n abs_liquidation_fee: number;\n cost_position_transfer: number;\n liquidator_fee: number;\n position_qty: number;\n symbol: string;\n transfer_price: number;\n }\n\n export interface Liquidation {\n liquidation_id: number;\n timestamp: number;\n transfer_amount_to_insurance_fund: number;\n positions_by_perp: LiquidationPositionByPerp[];\n }\n}\n\nexport declare namespace WSMessage {\n export interface Ticker {\n symbol: string;\n open: number;\n close: number;\n high: number;\n low: number;\n volume: number;\n amount: number;\n count: number;\n change: number;\n open_interest?: number;\n index_price?: number;\n }\n\n export interface MarkPrice {\n symbol: string;\n price: number;\n }\n\n export interface Position {\n symbol: string;\n positionQty: number;\n costPosition: number;\n lastSumUnitaryFunding: number;\n sumUnitaryFundingVersion: number;\n pendingLongQty: number;\n pendingShortQty: number;\n settlePrice: number;\n averageOpenPrice: number;\n unsettledPnl: number;\n pnl24H: number;\n fee24H: number;\n markPrice: number;\n estLiqPrice: number;\n version: number;\n imr: number;\n imrwithOrders: number;\n mmrwithOrders: number;\n mmr: number;\n }\n\n export interface VaultBalance {\n chain_id: string;\n token: string;\n balance: number;\n }\n\n export interface Order {\n symbol: string;\n clientOrderId: string;\n orderId: number;\n type: string;\n side: string;\n quantity: number;\n price: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n avgPrice: number;\n status: string;\n reason: string;\n totalFee: number;\n visible: number;\n /**\n * update time\n */\n timestamp: number;\n reduceOnly: boolean;\n maker: boolean;\n }\n\n export interface Holding {\n holding: number;\n frozen: number;\n interest: number;\n pendingShortQty: number;\n pendingExposure: number;\n pendingLongQty: number;\n pendingLongExposure: number;\n version: number;\n staked: number;\n unbonding: number;\n vault: number;\n fee24H: number;\n markPrice: number;\n }\n\n export interface AlgoOrder {\n symbol: string;\n rootAlgoOrderId: number;\n parentAlgoOrderId: number;\n algoOrderId: number;\n status: string;\n algoType: string;\n side: string;\n quantity: number;\n triggerStatus: string;\n price: number;\n type: string;\n triggerTradePrice: number;\n triggerTime: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n averageExecutedPrice: number;\n totalFee: number;\n timestamp: number;\n visibleQuantity: number;\n reduceOnly: boolean;\n triggered: boolean;\n maker: boolean;\n rootAlgoStatus: string;\n algoStatus: string;\n }\n\n export interface Announcement {\n announcement_id: string;\n message: string;\n i18n: Record<PropertyKey, string | null>;\n url?: string | null;\n type: AnnouncementType | null;\n updated_time: number;\n }\n}\n","/**\n * Supported types for placing an order\n */\nexport enum OrderType {\n LIMIT = \"LIMIT\",\n MARKET = \"MARKET\",\n IOC = \"IOC\",\n FOK = \"FOK\",\n POST_ONLY = \"POST_ONLY\",\n ASK = \"ASK\",\n BID = \"BID\",\n STOP_LIMIT = \"STOP_LIMIT\",\n STOP_MARKET = \"STOP_MARKET\",\n /**\n * Only for POSITIONAL_TP_SL type algo order\n */\n CLOSE_POSITION = \"CLOSE_POSITION\",\n}\n\nexport enum BBOOrderType {\n COUNTERPARTY1 = \"counterparty1\",\n COUNTERPARTY5 = \"counterparty5\",\n QUEUE1 = \"queue1\",\n QUEUE5 = \"queue5\",\n}\n\nexport enum OrderLevel {\n ONE = 0,\n TWO = 1,\n THREE = 2,\n FOUR = 3,\n FIVE = 4,\n}\n\nexport enum AlgoOrderRootType {\n TP_SL = \"TP_SL\",\n POSITIONAL_TP_SL = \"POSITIONAL_TP_SL\",\n STOP = \"STOP\",\n BRACKET = \"BRACKET\",\n}\n\nexport enum TriggerPriceType {\n MARK_PRICE = \"MARK_PRICE\",\n}\n\nexport enum AlgoOrderType {\n TAKE_PROFIT = \"TAKE_PROFIT\",\n STOP_LOSS = \"STOP_LOSS\",\n}\n\nexport enum OrderSide {\n BUY = \"BUY\",\n SELL = \"SELL\",\n}\n\nexport enum PositionSide {\n LONG = \"LONG\",\n SHORT = \"SHORT\",\n}\n\nexport enum OrderStatus {\n /** @deprecated */\n OPEN = \"OPEN\",\n NEW = \"NEW\",\n FILLED = \"FILLED\",\n PARTIAL_FILLED = \"PARTIAL_FILLED\",\n CANCELLED = \"CANCELLED\",\n REPLACED = \"REPLACED\",\n // CANCELLED + FILLED\n COMPLETED = \"COMPLETED\",\n // NEW + PARTIAL_FILLED\n INCOMPLETE = \"INCOMPLETE\",\n REJECTED = \"REJECTED\",\n}\n\nexport interface OrderExt {\n total: string;\n}\n\nexport interface BaseOrder {\n symbol: string;\n order_type: OrderType;\n order_type_ext?: OrderType;\n order_price: string;\n order_quantity: string;\n order_amount?: number;\n visible_quantity: number;\n side: OrderSide;\n reduce_only: boolean;\n slippage: number;\n order_tag: string;\n level: OrderLevel;\n post_only_adjust: boolean;\n}\n\nexport interface RegularOrder extends BaseOrder, OrderExt {\n // symbol: string;\n // client_order_id: string;\n // type: OrderType;\n // price: number;\n // quantity: number;\n}\n\nexport interface AlgoOrder extends BaseOrder, OrderExt {\n // symbol: string;\n quantity: string;\n type: OrderType;\n price: string;\n algo_type: AlgoOrderRootType;\n trigger_price_type: string;\n trigger_price: string;\n child_orders: AlgoOrderChildOrders[];\n}\n\nexport interface BracketOrder extends AlgoOrder, OrderExt {\n /**\n * Computed take profit\n */\n tp_pnl?: string;\n tp_offset?: string;\n tp_offset_percentage?: string;\n tp_ROI?: string;\n tp_trigger_price?: string;\n\n /**\n * Computed stop loss\n */\n sl_pnl?: string;\n sl_offset?: string;\n sl_offset_percentage?: string;\n sl_ROI?: string;\n sl_trigger_price?: string;\n}\n\nexport type OrderlyOrder = RegularOrder & AlgoOrder & BracketOrder;\n\nexport interface AlgoOrderChildOrders {\n symbol: string;\n algo_type: string;\n child_orders: ChildOrder[];\n}\n\nexport interface ChildOrder {\n symbol: string;\n algo_type: AlgoOrderType;\n side: string;\n type: OrderType;\n trigger_price: string;\n\n reduce_only: boolean;\n trigger_price_type?: string;\n}\n\n// export interface OrderEntity {}\n\nexport interface OrderEntity {\n symbol: string;\n order_type: OrderType;\n algo_type?: AlgoOrderRootType;\n order_type_ext?: OrderType;\n order_price?: string;\n order_quantity?: string;\n order_amount?: number;\n // Whether to display in the orderbook, default=order_quantity, not displayed when =0,\n visible_quantity?: number;\n reduce_only?: boolean;\n side: OrderSide;\n broker_id?: string;\n slippage?: number;\n\n // internal fields\n total?: string;\n // hideInOrderbook?: boolean;\n isStopOrder?: boolean;\n trigger_price?: string;\n order_tag?: string;\n level?: OrderLevel;\n}\n\nexport type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;\nexport type RequireKeys<T extends object, K extends keyof T> = Required<\n Pick<T, K>\n> &\n Partial<Omit<T, K>>;\n\nexport interface BaseAlgoOrderEntity<T extends AlgoOrderRootType>\n extends OrderEntity {\n algo_type: AlgoOrderRootType;\n child_orders: (Partial<Omit<AlgoOrderEntity<T>, \"algo_type\" | \"type\">> & {\n algo_type: AlgoOrderType;\n type: OrderType;\n child_orders?: BaseAlgoOrderEntity<T>[\"child_orders\"];\n // trigger_price: number | string;\n })[];\n // if update the order, then need to provide the order_id\n algo_order_id?: number;\n client_order_id?: string;\n order_tag?: string;\n price?: number | string;\n quantity: number | string;\n reduce_only?: boolean;\n side: OrderSide;\n symbol: string;\n trigger_price: string;\n trigger_price_type: TriggerPriceType;\n type: OrderType;\n visible_quantity?: number;\n is_activated?: boolean;\n tp_trigger_price?: string | number;\n sl_trigger_price?: string | number;\n}\n\nexport type AlgoOrderEntity<\n T extends AlgoOrderRootType = AlgoOrderRootType.STOP,\n> = T extends AlgoOrderRootType.TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\"\n >\n : T extends AlgoOrderRootType.POSITIONAL_TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\" | \"quantity\"\n >\n : Omit<BaseAlgoOrderEntity<T>, \"child_orders\" | \"order_type\">;\n\nexport type TPSLOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.TP_SL>,\n \"side\" | \"type\" | \"trigger_price\"\n>;\n\nexport type BracketOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.BRACKET>,\n \"side\"\n>;\n","export enum WithdrawStatus {\n NotSupported = \"NotSupported\",\n NotConnected = \"NotConnected\",\n Unsettle = \"Unsettle\",\n InsufficientBalance = \"InsufficientBalance\",\n Normal = \"Normal\",\n}\n","export interface Chain {\n id: number;\n chainNameShort: string;\n chainLogo: string;\n chainInfo: ChainInfo;\n minGasBalance: number;\n minCrossGasBalance: number;\n maxPrepayCrossGas: number;\n blockExplorerName: string;\n chainName: string;\n requestRpc: string;\n}\n\nexport interface ChainInfo {\n chainId: string;\n chainName: string;\n nativeCurrency: NativeCurrency;\n rpcUrls: string[];\n blockExplorerUrls: string[];\n}\n\nexport interface NativeCurrency {\n name: string;\n symbol: string;\n decimals: number;\n fix: number;\n}\n\nexport const Ethereum = {\n chainNameShort: \"Ethereum\",\n id: 1,\n chainLogo: \"\",\n chainInfo: {\n chainId: `0x${(1).toString(16)}`,\n chainName: \"Ethereum Mainnet\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 8,\n },\n rpcUrls: [\"https://mainnet.infura.io/v3/9155d40884554acdb17699a18a1fe348\"],\n blockExplorerUrls: [\"https://etherscan.io/\"],\n },\n minGasBalance: 0.002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.025,\n blockExplorerName: \"EthScan\",\n chainName: \"Ethereum Mainnet\",\n requestRpc: \"https://rpc.ankr.com/eth\",\n};\n\nexport const Avalanche = {\n id: 43114,\n chainInfo: {\n chainId: `0x${(43114).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche\",\n chainNameShort: \"Avalanche\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const Fuji = {\n id: 43113,\n chainInfo: {\n chainId: `0x${(43113).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche Fuji Testnet\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche Fuji\",\n chainNameShort: \"Avalanche Fuji\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const BNB = {\n id: 56,\n chainInfo: {\n chainId: `0x${(56).toString(16)}`, // 0x38\n chainName: \"BNB Chain\",\n nativeCurrency: {\n name: \"bnb\",\n symbol: \"BNB\",\n decimals: 18,\n fix: 6,\n },\n rpcUrls: [\"https://bsc-dataseed1.binance.org/\"],\n blockExplorerUrls: [\"https://bscscan.com/\"],\n },\n minGasBalance: 0.02,\n minCrossGasBalance: 0.02,\n maxPrepayCrossGas: 0.1,\n blockExplorerName: \"BscScan\",\n chainName: \"Binance Smart Chain\",\n chainNameShort: \"BNB Chain\",\n requestRpc: \"https://rpc.ankr.com/bsc\",\n chainLogo: \"\",\n};\n\nexport const Fantom = {\n id: 250,\n chainInfo: {\n chainId: `0x${(250).toString(16)}`, // 0x38\n chainName: \"Fantom\",\n nativeCurrency: {\n name: \"ftm\",\n symbol: \"FTM\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpcapi.fantom.network\"],\n blockExplorerUrls: [\"https://ftmscan.com/\"],\n },\n minGasBalance: 1,\n minCrossGasBalance: 10,\n maxPrepayCrossGas: 60,\n blockExplorerName: \"FTMScan\",\n chainName: \"Fantom\",\n chainNameShort: \"Fantom\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/fantom\",\n};\n\nexport const Polygon = {\n id: 137,\n chainInfo: {\n chainId: `0x${(137).toString(16)}`,\n chainName: \"Polygon\",\n nativeCurrency: {\n name: \"matic\",\n symbol: \"MATIC\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-mainnet.matic.network\"],\n blockExplorerUrls: [\"https://polygonscan.com/\"],\n },\n minGasBalance: 0.1,\n minCrossGasBalance: 1,\n maxPrepayCrossGas: 30,\n blockExplorerName: \"Polygonscan\",\n chainName: \"Polygon\",\n chainNameShort: \"Polygon\",\n requestRpc: \"https://rpc.ankr.com/polygon\",\n chainLogo: \"\",\n};\n\nexport const Arbitrum = {\n id: 42161,\n chainInfo: {\n chainId: `0x${(42161).toString(16)}`,\n chainName: \"Arbitrum\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arb1.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://arbiscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbiscan\",\n chainName: \"Arbitrum\",\n chainNameShort: \"Arbitrum\",\n requestRpc: \"https://arb1.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const Optimism = {\n id: 10,\n chainInfo: {\n chainId: `0x${(10).toString(16)}`,\n chainName: \"Optimism\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://mainnet.optimism.io\"],\n blockExplorerUrls: [\"https://optimistic.etherscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism\",\n chainName: \"Optimism\",\n chainNameShort: \"Optimism\",\n requestRpc: \"https://rpc.ankr.com/optimism\",\n chainLogo: \"\",\n};\n\nexport const zkSyncEra = {\n id: 324,\n chainInfo: {\n chainId: `0x${(324).toString(16)}`,\n chainName: \"zkSync Era\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zksync2-mainnet.zksync.io\"],\n blockExplorerUrls: [\"https://explorer.zksync.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"zkSync Era\",\n chainName: \"zkSync Era\",\n chainNameShort: \"zkSync Era\",\n requestRpc: \"https://zksync2-mainnet.zksync.io/\",\n chainLogo: \"\",\n // blockExplorerName: 'zkSync Era Goerli',\n // chainName: 'zkSync Era Goerli',\n // chainNameShort: 'zkSync Era Goerli',\n // requestRpc: 'https://zksync2-testnet.zksync.dev/',\n // chainLogo: '',\n};\n\nexport const PolygonzkEVM = {\n id: 1101,\n chainInfo: {\n chainId: `0x${(1101).toString(16)}`,\n chainName: \"Polygon zkEVM\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zkevm-rpc.com\"],\n blockExplorerUrls: [\"https://zkevm.polygonscan.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon zkEVM\",\n chainName: \"Polygon zkEVM\",\n chainNameShort: \"Polygon zkEVM\",\n requestRpc: \"https://zkevm-rpc.com\",\n chainLogo: \"\",\n};\n\nexport const Linea = {\n id: 59144,\n chainInfo: {\n chainId: `0x${(59144).toString(16)}`,\n chainName: \"Linea\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.linea.build\"],\n blockExplorerUrls: [\"https://lineascan.build/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Linea\",\n chainName: \"Linea\",\n chainNameShort: \"Linea\",\n requestRpc: \"https://rpc.linea.build\",\n chainLogo: \"\",\n};\n\nexport const Base = {\n id: 8453,\n chainInfo: {\n chainId: `0x${(8453).toString(16)}`,\n chainName: \"Base Network\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://developer-access-mainnet.base.org/\"],\n blockExplorerUrls: [\"https://basescan.org\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base\",\n chainName: \"Base\",\n chainNameShort: \"Base\",\n requestRpc: \"https://developer-access-mainnet.base.org/\",\n chainLogo: \"\",\n};\n\nexport const Mantle = {\n id: 5000,\n chainInfo: {\n chainId: `0x${(5000).toString(16)}`,\n chainName: \"Mantle\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.mantle.xyz/\"],\n blockExplorerUrls: [\"https://mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle\",\n chainName: \"Mantle\",\n chainNameShort: \"Mantle\",\n requestRpc: \"https://rpc.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumGoerli = {\n id: 421613,\n chainInfo: {\n chainId: `0x${(421613).toString(16)}`,\n chainName: \"Arbitrum Goerli\",\n nativeCurrency: {\n name: \"AGOR\",\n symbol: \"AGOR\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://goerli-rollup.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://goerli-rollup-explorer.arbitrum.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Goerli\",\n chainName: \"Arbitrum Goerli\",\n chainNameShort: \"Arbitrum Goerli\",\n requestRpc: \"https://goerli-rollup.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumSepolia = {\n id: 421614,\n chainInfo: {\n chainId: `0x${(421614).toString(16)}`,\n chainName: \"Arbitrum Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\"],\n blockExplorerUrls: [\"https://sepolia-explorer.arbitrum.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Sepolia\",\n chainName: \"Arbitrum Sepolia\",\n chainNameShort: \"Arbitrum Sepolia\",\n requestRpc: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chainLogo: \"\",\n};\n\nexport const OptimismGoerli = {\n id: 420,\n chainInfo: {\n chainId: `0x${(420).toString(16)}`,\n chainName: \"Optimism Goerli\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://optimism-goerli.gateway.tenderly.co\"],\n blockExplorerUrls: [\"https://goerli-optimism.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Goerli\",\n chainName: \"Optimism Goerli\",\n chainNameShort: \"Optimism Goerli\",\n requestRpc: \"https://optimism-goerli.gateway.tenderly.co\",\n chainLogo: \"\",\n};\n\nexport const OptimismSepolia = {\n id: 11155420,\n chainInfo: {\n chainId: `0x${(11155420).toString(16)}`,\n chainName: \"Optimism Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://sepolia.optimism.io\"],\n blockExplorerUrls: [\"https://sepolia-optimistic.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Sepolia\",\n chainName: \"Optimism Sepolia\",\n chainNameShort: \"Optimism Sepolia\",\n requestRpc: \"https://sepolia.optimism.io\",\n chainLogo: \"\",\n};\n\nexport const BaseSepolia = {\n id: 84532,\n chainInfo: {\n chainId: `0x${(84532).toString(16)}`,\n chainName: \"Base Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://base-sepolia-rpc.publicnode.com\"],\n blockExplorerUrls: [\"https://base-sepolia.blockscout.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base Sepolia\",\n chainName: \"Base Sepolia\",\n chainNameShort: \"Base Sepolia\",\n requestRpc: \"https://base-sepolia-rpc.publicnode.com\",\n chainLogo: \"\",\n};\n\nexport const MantleSepolia = {\n id: 5003,\n chainInfo: {\n chainId: `0x${(5003).toString(16)}`,\n chainName: \"Mantle Sepolia\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.sepolia.mantle.xyz/\"],\n blockExplorerUrls: [\"https://sepolia.mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle Sepolia\",\n chainName: \"Mantle Sepolia\",\n chainNameShort: \"Mantle Sepolia\",\n requestRpc: \"https://rpc.sepolia.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const PolygonAmoy = {\n id: 80002,\n chainInfo: {\n chainId: `0x${(80002).toString(16)}`,\n chainName: \"Polygon Amoy\",\n nativeCurrency: {\n name: \"MATIC\",\n symbol: \"MATIC\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-amoy.polygon.technology/\"],\n blockExplorerUrls: [\"https://www.oklink.com/amoy\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon Amoy\",\n chainName: \"Polygon Amoy\",\n chainNameShort: \"Polygon Amoy\",\n requestRpc: \"https://rpc-amoy.polygon.technology/\",\n chainLogo: \"\",\n};\n\nexport const Sei = {\n id: 1329,\n chainInfo: {\n chainId: `0x${(1329).toString(16)}`,\n chainName: \"Sei Network\",\n nativeCurrency: {\n name: \"SEI\",\n symbol: \"SEI\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://evm-rpc.sei-apis.com\"],\n blockExplorerUrls: [\"https://seitrace.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\n\nexport const StoryTestnet = {\n name: \"Story Odyssey Testnet\",\n public_rpc_url: \"https://rpc.odyssey.storyrpc.io/\",\n chain_id: 1516,\n currency_symbol: \"IP\",\n explorer_base_url: \"\",\n vault_address: \"\",\n};\nexport const StoryOdysseyTestnet = {\n id: 1329,\n chainInfo: {\n chainId: `0x${StoryTestnet.chain_id.toString(16)}`,\n chainName: StoryTestnet.name,\n nativeCurrency: {\n name: \"IP\",\n symbol: \"IP\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [StoryTestnet.public_rpc_url],\n blockExplorerUrls: [],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\nexport const chainsInfoMap: Map<number, Chain> = new Map([\n [Ethereum.id, Ethereum],\n [Avalanche.id, Avalanche],\n [Fuji.id, Fuji],\n [BNB.id, BNB],\n [Fantom.id, Fantom],\n [Polygon.id, Polygon],\n [Arbitrum.id, Arbitrum],\n [Optimism.id, Optimism],\n [zkSyncEra.id, zkSyncEra],\n [PolygonzkEVM.id, PolygonzkEVM],\n [Linea.id, Linea],\n [Base.id, Base],\n [Mantle.id, Mantle],\n [ArbitrumGoerli.id, ArbitrumGoerli],\n [ArbitrumSepolia.id, ArbitrumSepolia],\n [OptimismGoerli.id, OptimismGoerli],\n [OptimismSepolia.id, OptimismSepolia],\n [BaseSepolia.id, BaseSepolia],\n [MantleSepolia.id, MantleSepolia],\n [PolygonAmoy.id, PolygonAmoy],\n [Sei.id, Sei],\n [StoryOdysseyTestnet.id, StoryOdysseyTestnet],\n]);\n\nexport const SolanaDevnet = {\n id: 901901901,\n chainInfo: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chainId: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n} as unknown as typeof Arbitrum;\n\nexport const TestnetChains = [\n {\n network_infos: {\n name: \"Arbitrum Sepolia\",\n shortName: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chain_id: 421614,\n currency_symbol: \"ETH\",\n bridge_enable: true,\n mainnet: false,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n est_txn_mins: null,\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chain_id: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: StoryTestnet,\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0xF1815bd50389c46847f0Bda824eC8da914045D14\",\n decimals: 6,\n },\n ],\n },\n // {\n // network_infos: {\n // name: \"Mantle Sepolia\",\n // shortName: \"Mantle Sepolia\",\n // public_rpc_url: \"https://rpc.sepolia.mantle.xyz/\",\n // chain_id: 5003,\n // currency_symbol: \"MNT\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://sepolia.mantlescan.xyz/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xAcab8129E2cE587fD203FD770ec9ECAFA2C88080\",\n // decimals: 6,\n // display_name: \"USDC.e\",\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Arbitrum Goerli\",\n // shortName: \"Arbitrum Goerli\",\n // public_rpc_url: \"https://goerli-rollup.arbitrum.io/rpc\",\n // chain_id: 421613,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli.arbiscan.io/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xfd064A18f3BF249cf1f87FC203E90D8f650f2d63\",\n // decimals: 6,\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Optimism Goerli\",\n // shortName: \"Optimism Goerli\",\n // public_rpc_url: \"https://optimism-goerli.gateway.tenderly.co\",\n // chain_id: 420,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli-optimism.etherscan.io\",\n // est_txn_mins: null,\n // },\n // },\n];\n\nexport const defaultMainnetChains = [Arbitrum, Base, Optimism];\nexport const defaultTestnetChains = [ArbitrumSepolia];\n\nexport enum ChainNamespace {\n evm = \"EVM\",\n solana = \"SOL\",\n}\n\nexport const AbstractChains = new Set([2741, 11124]);\nexport const SolanaChains = new Set([901901901, 900900900]);\n","export enum TrackerEventName {\n /** virtual event (not send this event name to tracker) */\n trackIdentifyUserId = \"track_identify_user_id\",\n trackIdentify = \"track_identify\",\n trackCustomEvent = \"track_custom_event\",\n\n /** real event name (send this event name to tracker) */\n withdrawSuccess = \"withdraw_request_success\",\n withdrawFailed = \"withdraw_request_failure\",\n depositSuccess = \"deposit_request_success\",\n depositFailed = \"deposit_request_failure\",\n signinSuccess = \"sign_message_success\",\n placeOrderSuccess = \"place_order_success\",\n walletConnect = \"connect_wallet_success\",\n clickLinkDeviceButton = \"click_link_device_button\",\n signLinkDeviceMessageSuccess = \"sign_link_device_message_success\",\n linkDeviceModalClickConfirm = \"link_device_modal_click_confirm\",\n socialLoginSuccess = \"social_login_success\",\n clickSwitchNetwork = \"click_switch_network\",\n clickSwitchWallet = \"click_switch_wallet\",\n switchNetworkSuccess = \"switch_network_success\",\n clickExportPrivateKey = \"click_export_private_key\",\n switchLanguage = \"switch_language\",\n leaderboardCampaignClickTradeNow = \"leaderboard_campaign_click_trade_now\",\n leaderboardCampaignClickLearnMore = \"leaderboard_campaign_click_learn_more\",\n}\n","import { API } from \"./types/api\";\n\n// export type Chain = {\n// id: string;\n// name?: string;\n// };\n\nexport type CurrentChain = {\n id: number;\n info: API.Chain;\n};\n\nexport enum WS_WalletStatusEnum {\n NO = \"NO\",\n FAILED = \"FAILED\",\n PENDING = \"PENDING\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n}\n","export const LedgerWalletKey = \"orderly:ledger-wallet\";\nexport const ConnectorKey = \"orderly:connectorKey\";\nexport const ChainKey = \"order:chain\";\nexport const LinkDeviceKey = \"orderly_link_device\";\n","export class ApiError extends Error {\n constructor(message: string, private readonly code: number) {\n super(message);\n this.name = \"ApiError\";\n }\n}\n\nexport class SDKError extends Error {\n constructor(message: string) {\n super(`[ORDERLY SDK ERROR]:${message}`);\n this.name = \"SDKError\";\n }\n}\n","export const definedTypes = {\n EIP712Domain: [\n { name: \"name\", type: \"string\" },\n { name: \"version\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"verifyingContract\", type: \"address\" },\n ],\n Registration: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"registrationNonce\", type: \"uint256\" },\n ],\n Withdraw: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"receiver\", type: \"address\" },\n { name: \"token\", type: \"string\" },\n { name: \"amount\", type: \"uint256\" },\n { name: \"withdrawNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n AddOrderlyKey: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"orderlyKey\", type: \"string\" },\n { name: \"scope\", type: \"string\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"expiration\", type: \"uint64\" },\n ],\n SettlePnl: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"settleNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n } as const;","export { default as version } from \"./version\";\nexport * from \"./constants\";\nexport * from \"./types/api\";\n// export * from \"./order\";\nexport {\n OrderType,\n OrderSide,\n OrderStatus,\n AlgoOrderRootType,\n AlgoOrderType,\n TriggerPriceType,\n BBOOrderType,\n OrderLevel,\n} from \"./order\";\nexport type {\n OrderEntity,\n AlgoOrderEntity,\n TPSLOrderEntry,\n BaseAlgoOrderEntity,\n AlgoOrderChildOrders,\n Optional,\n PositionSide,\n BracketOrderEntry,\n RequireKeys,\n BaseOrder,\n RegularOrder,\n AlgoOrder,\n OrderlyOrder,\n ChildOrder,\n BracketOrder,\n} from \"./order\";\nexport * from \"./withdraw\";\nexport * from \"./chains\";\nexport * from \"./track\";\nexport type { Chain as ChainConfig, ChainInfo, NativeCurrency } from \"./chains\";\nexport * from \"./wallet\";\nexport * from \"./storageKey\";\nexport { ApiError, SDKError } from \"./errors\";\n\nexport { definedTypes } from \"./sign\";\nexport * as superstruct from \"superstruct\";\nexport * from \"./assetHistory\";\n","export enum AssetHistoryStatusEnum {\n NEW = \"NEW\",\n CONFIRM = \"CONFIRM\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n FAILED = \"FAILED\",\n PENDING_REBALANCE = \"PENDING_REBALANCE\",\n}\n"],"mappings":";AAQA,IAAG,OAAO,WAAW,aAAa;AAC9B,SAAO,sBAAsB,OAAO,uBAAuB,CAAC;AAC5D,SAAO,oBAAoB,wBAAwB,IAAI;AAC3D;AAEA,IAAO,kBAAQ;;;ACbR,IAAK,oBAAL,kBAAKA,uBAAL;AACL,EAAAA,sCAAA,mCAAgC,MAAhC;AACA,EAAAA,sCAAA,kBAAe,KAAf;AACA,EAAAA,sCAAA,eAAY,KAAZ;AACA,EAAAA,sCAAA,iBAAc,KAAd;AACA,EAAAA,sCAAA,cAAW,KAAX;AACA,EAAAA,sCAAA,qBAAkB,KAAlB;AACA,EAAAA,sCAAA,mBAAgB,KAAhB;AAPU,SAAAA;AAAA,GAAA;AAUL,IAAK,kBAAL,kBAAKC,qBAAL;AACL,EAAAA,kCAAA,aAAU,KAAV;AACA,EAAAA,kCAAA,WAAQ,KAAR;AACA,EAAAA,kCAAA,WAAQ,MAAR;AAHU,SAAAA;AAAA,GAAA;AAML,IAAK,qBAAL,kBAAKC,wBAAL;AACL,EAAAA,wCAAA,YAAS,KAAT;AACA,EAAAA,wCAAA,cAAW,KAAX;AAFU,SAAAA;AAAA,GAAA;AAOL,IAAK,oBAAL,kBAAKC,uBAAL;AACL,EAAAA,sCAAA,aAAU,KAAV;AACA,EAAAA,sCAAA,iBAAc,KAAd;AACA,EAAAA,sCAAA,eAAY,KAAZ;AAHU,SAAAA;AAAA,GAAA;AAYL,IAAM,2BAA2B;AACjC,IAAM,yBAAyB;AAC/B,IAAM,yBAAyB;AAC/B,IAAM,wBAAwB;AAC9B,IAAM,wBAAwB;AAC9B,IAAM,2BAA2B;AACjC,IAAM,2BAA2B;AACjC,IAAM,sBAAsB;AAC5B,IAAM,wBAAwB,oBAAI,IAAI;AAAA,EAC3C;AAAA,EACA;AACF,CAAC;AAEM,IAAM,+BAA+B;AAErC,IAAM,yBAAyB;AAC/B,IAAM,6BAA6B;AAGnC,IAAM,2BAA2B;AACjC,IAAM,+BAA+B;AAErC,IAAM,eAAe;AAErB,IAAM,mBAAmB;AAKzB,IAAM,aAAqB;AAAA,EAChC;AACF;AAEO,IAAM,qBAAqB;AAE3B,IAAM,uBAAuB,CAAC,YACnC,YAAY;AAEP,IAAM,2BAA2B;AAAA,EACtC,MAAM;AAAA,EACN,gBAAgB;AAAA,EAChB,UAAU;AAAA,EACV,iBAAiB;AAAA,EACjB,kBAAkB;AAAA,EAClB,mBAAmB;AAAA,EACnB,eAAe;AACjB;AACO,IAAM,2BAA2B;AAAA,EACtC,MAAM;AAAA,EACN,gBAAgB;AAAA,EAChB,UAAU;AAAA,EACV,iBAAiB;AAAA,EACjB,kBAAkB;AAAA,EAClB,mBAAmB;AAAA,EACnB,eAAe;AACjB;AACO,IAAM,2BAA2B;AAAA,EACtC,UAAU;AAAA,EACV,kBAAkB;AAAA,EAClB,UAAU;AAAA,EACV,gBAAgB;AAAA,EAChB,4BAA4B;AAAA,EAC5B,cAAc;AAChB;AACO,IAAM,wBAAwB;AAAA,EACnC,UAAU;AAAA,EACV,kBAAkB;AAAA,EAClB,iBAAiB;AAAA,EACjB,mBAAmB;AAAA,EACnB,MAAM;AAAA,EACN,gBAAgB;AAAA,EAChB,eAAe;AACjB;AAEO,IAAM,wBAAwB;AAAA,EACnC,UAAU;AAAA,EACV,kBAAkB;AAAA,EAClB,UAAU;AAAA,EACV,gBAAgB;AAAA,EAChB,4BAA4B;AAAA,EAC5B,cAAc;AAChB;AACO,IAAM,2BAA2B;AAAA,EACtC,UAAU;AAAA,EACV,kBAAkB;AAAA,EAClB,UAAU;AAAA,EACV,gBAAgB;AAAA,EAChB,4BAA4B;AAAA,EAC5B,cAAc;AAChB;AAEO,IAAM,qBAAqB,CAAC,kBAAuB;AAAA,EACxD;AAAA,IACE,OAAO;AAAA,IACP,YACE;AAAA,IACF,UAAU;AAAA,IACV,yBAAyB;AAAA,IACzB,eAAe;AAAA,EACjB;AACF;;;ACpIO,IAAK,mBAAL,kBAAKC,sBAAL;AACL,EAAAA,kBAAA,aAAU;AACV,EAAAA,kBAAA,iBAAc;AACd,EAAAA,kBAAA,eAAY;AAHF,SAAAA;AAAA,GAAA;;;ACAL,IAAK,YAAL,kBAAKC,eAAL;AACL,EAAAA,WAAA,WAAQ;AACR,EAAAA,WAAA,YAAS;AACT,EAAAA,WAAA,SAAM;AACN,EAAAA,WAAA,SAAM;AACN,EAAAA,WAAA,eAAY;AACZ,EAAAA,WAAA,SAAM;AACN,EAAAA,WAAA,SAAM;AACN,EAAAA,WAAA,gBAAa;AACb,EAAAA,WAAA,iBAAc;AAId,EAAAA,WAAA,oBAAiB;AAbP,SAAAA;AAAA,GAAA;AAgBL,IAAK,eAAL,kBAAKC,kBAAL;AACL,EAAAA,cAAA,mBAAgB;AAChB,EAAAA,cAAA,mBAAgB;AAChB,EAAAA,cAAA,YAAS;AACT,EAAAA,cAAA,YAAS;AAJC,SAAAA;AAAA,GAAA;AAOL,IAAK,aAAL,kBAAKC,gBAAL;AACL,EAAAA,wBAAA,SAAM,KAAN;AACA,EAAAA,wBAAA,SAAM,KAAN;AACA,EAAAA,wBAAA,WAAQ,KAAR;AACA,EAAAA,wBAAA,UAAO,KAAP;AACA,EAAAA,wBAAA,UAAO,KAAP;AALU,SAAAA;AAAA,GAAA;AAQL,IAAK,oBAAL,kBAAKC,uBAAL;AACL,EAAAA,mBAAA,WAAQ;AACR,EAAAA,mBAAA,sBAAmB;AACnB,EAAAA,mBAAA,UAAO;AACP,EAAAA,mBAAA,aAAU;AAJA,SAAAA;AAAA,GAAA;AAOL,IAAK,mBAAL,kBAAKC,sBAAL;AACL,EAAAA,kBAAA,gBAAa;AADH,SAAAA;AAAA,GAAA;AAIL,IAAK,gBAAL,kBAAKC,mBAAL;AACL,EAAAA,eAAA,iBAAc;AACd,EAAAA,eAAA,eAAY;AAFF,SAAAA;AAAA,GAAA;AAKL,IAAK,YAAL,kBAAKC,eAAL;AACL,EAAAA,WAAA,SAAM;AACN,EAAAA,WAAA,UAAO;AAFG,SAAAA;AAAA,GAAA;AAUL,IAAK,cAAL,kBAAKC,iBAAL;AAEL,EAAAA,aAAA,UAAO;AACP,EAAAA,aAAA,SAAM;AACN,EAAAA,aAAA,YAAS;AACT,EAAAA,aAAA,oBAAiB;AACjB,EAAAA,aAAA,eAAY;AACZ,EAAAA,aAAA,cAAW;AAEX,EAAAA,aAAA,eAAY;AAEZ,EAAAA,aAAA,gBAAa;AACb,EAAAA,aAAA,cAAW;AAZD,SAAAA;AAAA,GAAA;;;AC5DL,IAAK,iBAAL,kBAAKC,oBAAL;AACL,EAAAA,gBAAA,kBAAe;AACf,EAAAA,gBAAA,kBAAe;AACf,EAAAA,gBAAA,cAAW;AACX,EAAAA,gBAAA,yBAAsB;AACtB,EAAAA,gBAAA,YAAS;AALC,SAAAA;AAAA,GAAA;;;AC4BL,IAAM,WAAW;AAAA,EACtB,gBAAgB;AAAA,EAChB,IAAI;AAAA,EACJ,WAAW;AAAA,EACX,WAAW;AAAA,IACT,SAAS,KAAM,GAAG,SAAS,EAAE,CAAC;AAAA,IAC9B,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,+DAA+D;AAAA,IACzE,mBAAmB,CAAC,uBAAuB;AAAA,EAC7C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,YAAY;AACd;AAEO,IAAM,YAAY;AAAA,EACvB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,OAAO,SAAS,EAAE,CAAC;AAAA;AAAA,IAClC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,uCAAuC;AAAA,IACjD,mBAAmB,CAAC,uBAAuB;AAAA,EAC7C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,WAAW;AAAA,EACX,YAAY;AACd;AAEO,IAAM,OAAO;AAAA,EAClB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,OAAO,SAAS,EAAE,CAAC;AAAA;AAAA,IAClC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,uCAAuC;AAAA,IACjD,mBAAmB,CAAC,uBAAuB;AAAA,EAC7C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,WAAW;AAAA,EACX,YAAY;AACd;AAEO,IAAM,MAAM;AAAA,EACjB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,IAAI,SAAS,EAAE,CAAC;AAAA;AAAA,IAC/B,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,oCAAoC;AAAA,IAC9C,mBAAmB,CAAC,sBAAsB;AAAA,EAC5C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,SAAS;AAAA,EACpB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,KAAK,SAAS,EAAE,CAAC;AAAA;AAAA,IAChC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,+BAA+B;AAAA,IACzC,mBAAmB,CAAC,sBAAsB;AAAA,EAC5C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,WAAW;AAAA,EACX,YAAY;AACd;AAEO,IAAM,UAAU;AAAA,EACrB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,KAAK,SAAS,EAAE,CAAC;AAAA,IAChC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,mCAAmC;AAAA,IAC7C,mBAAmB,CAAC,0BAA0B;AAAA,EAChD;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,WAAW;AAAA,EACtB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,OAAO,SAAS,EAAE,CAAC;AAAA,IAClC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,8BAA8B;AAAA,IACxC,mBAAmB,CAAC,sBAAsB;AAAA,EAC5C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,WAAW;AAAA,EACtB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,IAAI,SAAS,EAAE,CAAC;AAAA,IAC/B,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,6BAA6B;AAAA,IACvC,mBAAmB,CAAC,kCAAkC;AAAA,EACxD;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,YAAY;AAAA,EACvB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,KAAK,SAAS,EAAE,CAAC;AAAA,IAChC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,mCAAmC;AAAA,IAC7C,mBAAmB,CAAC,6BAA6B;AAAA,EACnD;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AAAA;AAAA;AAAA;AAAA;AAAA;AAMb;AAEO,IAAM,eAAe;AAAA,EAC1B,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,MAAM,SAAS,EAAE,CAAC;AAAA,IACjC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,uBAAuB;AAAA,IACjC,mBAAmB,CAAC,gCAAgC;AAAA,EACtD;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,QAAQ;AAAA,EACnB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,OAAO,SAAS,EAAE,CAAC;AAAA,IAClC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,yBAAyB;AAAA,IACnC,mBAAmB,CAAC,0BAA0B;AAAA,EAChD;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,OAAO;AAAA,EAClB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,MAAM,SAAS,EAAE,CAAC;AAAA,IACjC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,4CAA4C;AAAA,IACtD,mBAAmB,CAAC,sBAAsB;AAAA,EAC5C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,SAAS;AAAA,EACpB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,IAAM,SAAS,EAAE,CAAC;AAAA,IACjC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,yBAAyB;AAAA,IACnC,mBAAmB,CAAC,yBAAyB;AAAA,EAC/C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,iBAAiB;AAAA,EAC5B,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,QAAQ,SAAS,EAAE,CAAC;AAAA,IACnC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,uCAAuC;AAAA,IACjD,mBAAmB,CAAC,6CAA6C;AAAA,EACnE;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,kBAAkB;AAAA,EAC7B,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,QAAQ,SAAS,EAAE,CAAC;AAAA,IACnC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,wDAAwD;AAAA,IAClE,mBAAmB,CAAC,sCAAsC;AAAA,EAC5D;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,iBAAiB;AAAA,EAC5B,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,KAAK,SAAS,EAAE,CAAC;AAAA,IAChC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,6CAA6C;AAAA,IACvD,mBAAmB,CAAC,sCAAsC;AAAA,EAC5D;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,kBAAkB;AAAA,EAC7B,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,UAAU,SAAS,EAAE,CAAC;AAAA,IACrC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,6BAA6B;AAAA,IACvC,mBAAmB,CAAC,yCAAyC;AAAA,EAC/D;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,cAAc;AAAA,EACzB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,OAAO,SAAS,EAAE,CAAC;AAAA,IAClC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,yCAAyC;AAAA,IACnD,mBAAmB,CAAC,sCAAsC;AAAA,EAC5D;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,gBAAgB;AAAA,EAC3B,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,MAAM,SAAS,EAAE,CAAC;AAAA,IACjC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,iCAAiC;AAAA,IAC3C,mBAAmB,CAAC,iCAAiC;AAAA,EACvD;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,cAAc;AAAA,EACzB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,OAAO,SAAS,EAAE,CAAC;AAAA,IAClC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,sCAAsC;AAAA,IAChD,mBAAmB,CAAC,6BAA6B;AAAA,EACnD;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,MAAM;AAAA,EACjB,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAM,MAAM,SAAS,EAAE,CAAC;AAAA,IACjC,WAAW;AAAA,IACX,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,8BAA8B;AAAA,IACxC,mBAAmB,CAAC,uBAAuB;AAAA,EAC7C;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AAEO,IAAM,eAAe;AAAA,EAC1B,MAAM;AAAA,EACN,gBAAgB;AAAA,EAChB,UAAU;AAAA,EACV,iBAAiB;AAAA,EACjB,mBAAmB;AAAA,EACnB,eAAe;AACjB;AACO,IAAM,sBAAsB;AAAA,EACjC,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,SAAS,KAAK,aAAa,SAAS,SAAS,EAAE,CAAC;AAAA,IAChD,WAAW,aAAa;AAAA,IACxB,gBAAgB;AAAA,MACd,MAAM;AAAA,MACN,QAAQ;AAAA,MACR,UAAU;AAAA,MACV,KAAK;AAAA,IACP;AAAA,IACA,SAAS,CAAC,aAAa,cAAc;AAAA,IACrC,mBAAmB,CAAC;AAAA,EACtB;AAAA,EACA,eAAe;AAAA,EACf,oBAAoB;AAAA,EACpB,mBAAmB;AAAA,EACnB,mBAAmB;AAAA,EACnB,WAAW;AAAA,EACX,gBAAgB;AAAA,EAChB,YAAY;AAAA,EACZ,WAAW;AACb;AACO,IAAM,gBAAoC,oBAAI,IAAI;AAAA,EACvD,CAAC,SAAS,IAAI,QAAQ;AAAA,EACtB,CAAC,UAAU,IAAI,SAAS;AAAA,EACxB,CAAC,KAAK,IAAI,IAAI;AAAA,EACd,CAAC,IAAI,IAAI,GAAG;AAAA,EACZ,CAAC,OAAO,IAAI,MAAM;AAAA,EAClB,CAAC,QAAQ,IAAI,OAAO;AAAA,EACpB,CAAC,SAAS,IAAI,QAAQ;AAAA,EACtB,CAAC,SAAS,IAAI,QAAQ;AAAA,EACtB,CAAC,UAAU,IAAI,SAAS;AAAA,EACxB,CAAC,aAAa,IAAI,YAAY;AAAA,EAC9B,CAAC,MAAM,IAAI,KAAK;AAAA,EAChB,CAAC,KAAK,IAAI,IAAI;AAAA,EACd,CAAC,OAAO,IAAI,MAAM;AAAA,EAClB,CAAC,eAAe,IAAI,cAAc;AAAA,EAClC,CAAC,gBAAgB,IAAI,eAAe;AAAA,EACpC,CAAC,eAAe,IAAI,cAAc;AAAA,EAClC,CAAC,gBAAgB,IAAI,eAAe;AAAA,EACpC,CAAC,YAAY,IAAI,WAAW;AAAA,EAC5B,CAAC,cAAc,IAAI,aAAa;AAAA,EAChC,CAAC,YAAY,IAAI,WAAW;AAAA,EAC5B,CAAC,IAAI,IAAI,GAAG;AAAA,EACZ,CAAC,oBAAoB,IAAI,mBAAmB;AAC9C,CAAC;AAEM,IAAM,eAAe;AAAA,EAC1B,IAAI;AAAA,EACJ,WAAW;AAAA,IACT,MAAM;AAAA,IACN,gBAAgB;AAAA,IAChB,SAAS;AAAA,IACT,iBAAiB;AAAA,IACjB,mBAAmB;AAAA,IACnB,eAAe;AAAA,EACjB;AACF;AAEO,IAAM,gBAAgB;AAAA,EAC3B;AAAA,IACE,eAAe;AAAA,MACb,MAAM;AAAA,MACN,WAAW;AAAA,MACX,gBAAgB;AAAA,MAChB,UAAU;AAAA,MACV,iBAAiB;AAAA,MACjB,eAAe;AAAA,MACf,SAAS;AAAA,MACT,mBAAmB;AAAA,MACnB,cAAc;AAAA,IAChB;AAAA,IACA,aAAa;AAAA,MACX;AAAA,QACE,QAAQ;AAAA,QACR,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAAA,EACA;AAAA,IACE,eAAe;AAAA,MACb,MAAM;AAAA,MACN,gBAAgB;AAAA,MAChB,UAAU;AAAA,MACV,iBAAiB;AAAA,MACjB,mBAAmB;AAAA,MACnB,eAAe;AAAA,IACjB;AAAA,IACA,aAAa;AAAA,MACX;AAAA,QACE,QAAQ;AAAA,QACR,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAAA,EACA;AAAA,IACE,eAAe;AAAA,IACf,aAAa;AAAA,MACX;AAAA,QACE,QAAQ;AAAA,QACR,SAAS;AAAA,QACT,UAAU;AAAA,MACZ;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAuDF;AAEO,IAAM,uBAAuB,CAAC,UAAU,MAAM,QAAQ;AACtD,IAAM,uBAAuB,CAAC,eAAe;AAE7C,IAAK,iBAAL,kBAAKC,oBAAL;AACL,EAAAA,gBAAA,SAAM;AACN,EAAAA,gBAAA,YAAS;AAFC,SAAAA;AAAA,GAAA;AAKL,IAAM,iBAAiB,oBAAI,IAAI,CAAC,MAAM,KAAK,CAAC;AAC5C,IAAM,eAAe,oBAAI,IAAI,CAAC,WAAW,SAAS,CAAC;;;AC9sBnD,IAAK,mBAAL,kBAAKC,sBAAL;AAEL,EAAAA,kBAAA,yBAAsB;AACtB,EAAAA,kBAAA,mBAAgB;AAChB,EAAAA,kBAAA,sBAAmB;AAGnB,EAAAA,kBAAA,qBAAkB;AAClB,EAAAA,kBAAA,oBAAiB;AACjB,EAAAA,kBAAA,oBAAiB;AACjB,EAAAA,kBAAA,mBAAgB;AAChB,EAAAA,kBAAA,mBAAgB;AAChB,EAAAA,kBAAA,uBAAoB;AACpB,EAAAA,kBAAA,mBAAgB;AAChB,EAAAA,kBAAA,2BAAwB;AACxB,EAAAA,kBAAA,kCAA+B;AAC/B,EAAAA,kBAAA,iCAA8B;AAC9B,EAAAA,kBAAA,wBAAqB;AACrB,EAAAA,kBAAA,wBAAqB;AACrB,EAAAA,kBAAA,uBAAoB;AACpB,EAAAA,kBAAA,0BAAuB;AACvB,EAAAA,kBAAA,2BAAwB;AACxB,EAAAA,kBAAA,oBAAiB;AACjB,EAAAA,kBAAA,sCAAmC;AACnC,EAAAA,kBAAA,uCAAoC;AAxB1B,SAAAA;AAAA,GAAA;;;ACYL,IAAK,sBAAL,kBAAKC,yBAAL;AACL,EAAAA,qBAAA,QAAK;AACL,EAAAA,qBAAA,YAAS;AACT,EAAAA,qBAAA,aAAU;AACV,EAAAA,qBAAA,gBAAa;AACb,EAAAA,qBAAA,eAAY;AALF,SAAAA;AAAA,GAAA;;;ACZL,IAAM,kBAAkB;AACxB,IAAM,eAAe;AACrB,IAAM,WAAW;AACjB,IAAM,gBAAgB;;;ACHtB,IAAM,WAAN,cAAuB,MAAM;AAAA,EAClC,YAAY,SAAkC,MAAc;AAC1D,UAAM,OAAO;AAD+B;AAE5C,SAAK,OAAO;AAAA,EACd;AACF;AAEO,IAAM,WAAN,cAAuB,MAAM;AAAA,EAClC,YAAY,SAAiB;AAC3B,UAAM,uBAAuB,OAAO,EAAE;AACtC,SAAK,OAAO;AAAA,EACd;AACF;;;ACZO,IAAM,eAAe;AAAA,EACxB,cAAc;AAAA,IACZ,EAAE,MAAM,QAAQ,MAAM,SAAS;AAAA,IAC/B,EAAE,MAAM,WAAW,MAAM,SAAS;AAAA,IAClC,EAAE,MAAM,WAAW,MAAM,UAAU;AAAA,IACnC,EAAE,MAAM,qBAAqB,MAAM,UAAU;AAAA,EAC/C;AAAA,EACA,cAAc;AAAA,IACZ,EAAE,MAAM,YAAY,MAAM,SAAS;AAAA,IACnC,EAAE,MAAM,WAAW,MAAM,UAAU;AAAA,IACnC,EAAE,MAAM,aAAa,MAAM,SAAS;AAAA,IACpC,EAAE,MAAM,qBAAqB,MAAM,UAAU;AAAA,EAC/C;AAAA,EACA,UAAU;AAAA,IACR,EAAE,MAAM,YAAY,MAAM,SAAS;AAAA,IACnC,EAAE,MAAM,WAAW,MAAM,UAAU;AAAA,IACnC,EAAE,MAAM,YAAY,MAAM,UAAU;AAAA,IACpC,EAAE,MAAM,SAAS,MAAM,SAAS;AAAA,IAChC,EAAE,MAAM,UAAU,MAAM,UAAU;AAAA,IAClC,EAAE,MAAM,iBAAiB,MAAM,SAAS;AAAA,IACxC,EAAE,MAAM,aAAa,MAAM,SAAS;AAAA,EACtC;AAAA,EACA,eAAe;AAAA,IACb,EAAE,MAAM,YAAY,MAAM,SAAS;AAAA,IACnC,EAAE,MAAM,WAAW,MAAM,UAAU;AAAA,IACnC,EAAE,MAAM,cAAc,MAAM,SAAS;AAAA,IACrC,EAAE,MAAM,SAAS,MAAM,SAAS;AAAA,IAChC,EAAE,MAAM,aAAa,MAAM,SAAS;AAAA,IACpC,EAAE,MAAM,cAAc,MAAM,SAAS;AAAA,EACvC;AAAA,EACA,WAAW;AAAA,IACT,EAAE,MAAM,YAAY,MAAM,SAAS;AAAA,IACnC,EAAE,MAAM,WAAW,MAAM,UAAU;AAAA,IACnC,EAAE,MAAM,eAAe,MAAM,SAAS;AAAA,IACtC,EAAE,MAAM,aAAa,MAAM,SAAS;AAAA,EACtC;AACF;;;ACIF,YAAY,iBAAiB;;;ACxCtB,IAAK,yBAAL,kBAAKC,4BAAL;AACL,EAAAA,wBAAA,SAAM;AACN,EAAAA,wBAAA,aAAU;AACV,EAAAA,wBAAA,gBAAa;AACb,EAAAA,wBAAA,eAAY;AACZ,EAAAA,wBAAA,YAAS;AACT,EAAAA,wBAAA,uBAAoB;AANV,SAAAA;AAAA,GAAA;","names":["AccountStatusEnum","SystemStateEnum","ExchangeStatusEnum","NetworkStatusEnum","AnnouncementType","OrderType","BBOOrderType","OrderLevel","AlgoOrderRootType","TriggerPriceType","AlgoOrderType","OrderSide","OrderStatus","WithdrawStatus","ChainNamespace","TrackerEventName","WS_WalletStatusEnum","AssetHistoryStatusEnum"]}
|
|
1
|
+
{"version":3,"sources":["../src/version.ts","../src/constants.ts","../src/types/api.ts","../src/order.ts","../src/withdraw.ts","../src/chains.ts","../src/track.ts","../src/wallet.ts","../src/storageKey.ts","../src/errors.ts","../src/sign.ts","../src/index.ts","../src/assetHistory.ts"],"sourcesContent":["\ndeclare global {\n interface Window {\n __ORDERLY_VERSION__?: {\n [key: string]: string;\n };\n }\n}\nif(typeof window !== 'undefined') {\n window.__ORDERLY_VERSION__ = window.__ORDERLY_VERSION__ || {};\n window.__ORDERLY_VERSION__[\"@orderly.network/types\"] = \"2.4.0-alpha.0\";\n};\n\nexport default \"2.4.0-alpha.0\";\n","export enum AccountStatusEnum {\n EnableTradingWithoutConnected = -1,\n NotConnected = 0,\n Connected = 1,\n NotSignedIn = 2,\n SignedIn = 3,\n DisabledTrading = 4,\n EnableTrading = 5,\n}\n\nexport enum SystemStateEnum {\n Loading = 0,\n Error = 1,\n Ready = 10,\n}\n\nexport enum ExchangeStatusEnum {\n Normal = 0,\n Maintain = 1,\n}\n\nexport type NetworkId = \"testnet\" | \"mainnet\";\n\nexport enum NetworkStatusEnum {\n unknown = 0,\n unsupported = 1,\n supported = 2,\n}\n\n// Testnet\n// Arbitrum Goerli\n// export const ARBITRUM_TESTNET_CHAINID = 421613;\n// export const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EED\";\n\n// Arbitrum Sepolia\nexport const ARBITRUM_TESTNET_CHAINID = 421614;\nexport const SOLANA_TESTNET_CHAINID = 901901901;\nexport const SOLANA_MAINNET_CHAINID = 900900900;\nexport const STORY_TESTNET_CHAINID = 1516;\nexport const MONAD_TESTNET_CHAINID = 10143;\nexport const ABSTRACT_TESTNET_CHAINID = 11124;\nexport const ABSTRACT_MAINNET_CHAINID = 2741;\nexport const BSC_TESTNET_CHAINID = 97;\nexport const ABSTRACT_CHAIN_ID_MAP = new Set([\n ABSTRACT_TESTNET_CHAINID,\n ABSTRACT_MAINNET_CHAINID,\n]);\n\nexport const ARBITRUM_TESTNET_CHAINID_HEX = \"0x66EEE\";\n\nexport const MANTLE_TESTNET_CHAINID = 5003;\nexport const MANTLE_TESTNET_CHAINID_HEX = \"0x138b\";\n\n// Mainnet\nexport const ARBITRUM_MAINNET_CHAINID = 42161;\nexport const ARBITRUM_MAINNET_CHAINID_HEX = \"0xa4b1\";\n\nexport const MEDIA_TABLET = \"(max-width: 768px)\";\n\nexport const DEPOSIT_FEE_RATE = 1.05;\n\n/**\n * A constant for the maximum value for a ``uint256``.\n */\nexport const MaxUint256: bigint = BigInt(\n \"0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\",\n);\n\nexport const nativeTokenAddress = \"0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE\";\n\nexport const isNativeTokenChecker = (address: string) =>\n address === nativeTokenAddress;\n\nexport const ArbitrumSepoliaChainInfo = {\n name: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.gateway.tenderly.co\",\n chain_id: \"421614\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n vault_address: \"0x0EaC556c0C2321BA25b9DC01e4e3c95aD5CDCd2f\",\n};\nexport const AbstractTestnetChainInfo = {\n name: \"Abstract Testnet\",\n public_rpc_url: \"https://api.testnet.abs.xyz\",\n chain_id: \"11124\",\n currency_symbol: \"ETH\",\n currency_decimal: 18,\n explorer_base_url: \"https://sepolia.abscan.org\",\n vault_address: \"0xf14Ff11F3bb1011ff42665Ec869c7827c43745Fd\",\n};\nexport const AbstractTestnetTokenInfo = {\n chain_id: \"11124\",\n contract_address: \"0xa0BB43E2eA7fcE91F07e628d72fD6333e80F47D2\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\nexport const SolanaDevnetChainInfo = {\n chain_id: \"901901901\",\n currency_decimal: 9,\n currency_symbol: \"SOL\",\n explorer_base_url: \"https://explorer.solana.com/?cluster=devnet\",\n name: \"Solana-Devnet\",\n public_rpc_url: \"https://api.devnet.solana.com\",\n vault_address: \"9shwxWDUNhtwkHocsUAmrNAQfBH2DHh4njdAEdHZZkF2\",\n};\n\nexport const SolanaDevnetTokenInfo = {\n chain_id: \"901901901\",\n contract_address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 5,\n display_name: \"USDC\",\n};\nexport const ArbitrumSepoliaTokenInfo = {\n chain_id: \"421614\",\n contract_address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n withdrawal_fee: 1,\n cross_chain_withdrawal_fee: 2,\n display_name: \"USDC\",\n};\n\nexport const TesntTokenFallback = (testnetTokens: any) => [\n {\n token: \"USDC\",\n token_hash:\n \"0xd6aca1be9729c13d677335161321649cccae6a591554772516700f986f942eaa\",\n decimals: 6,\n minimum_withdraw_amount: 0.000001,\n chain_details: testnetTokens,\n },\n];\n","/* eslint-disable @typescript-eslint/no-namespace */\nimport { AlgoOrderRootType, OrderSide, OrderType } from \"../order\";\n\nexport enum AnnouncementType {\n Listing = \"LISTING\",\n Maintenance = \"MAINTENANCE\",\n Delisting = \"DELISTING\",\n}\n\nexport declare namespace API {\n //v1/public/token\n export interface Token {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n //v1/public/token\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n }\n\n // ws market, api v1/public/futures\n export interface MarketInfo {\n symbol: string;\n index_price: number;\n mark_price: number;\n sum_unitary_funding: number;\n est_funding_rate: number;\n last_funding_rate: number;\n next_funding_time: number;\n open_interest: string;\n \"24h_open\": number;\n \"24h_close\": number;\n \"24h_high\": number;\n \"24h_low\": number;\n /**\n * @deprecated\n * spelling mistake, use 24h_volume to instead, will be remove next version\n */\n \"24h_volumn\": number;\n \"24h_volume\": number;\n \"24h_amount\": number;\n }\n\n export interface MarketInfoExt extends MarketInfo {\n change: number;\n \"24h_volume\": number;\n }\n\n export interface Announcement {\n last_updated_time?: number | null;\n rows?: Array<{\n announcement_id: number | string;\n message: string;\n i18n?: Record<PropertyKey, string | null>;\n url?: string | null;\n type?: AnnouncementType | null;\n updated_time?: number | null;\n }>;\n }\n\n /**\n * v1/public/info\n */\n export interface Symbol {\n symbol: string;\n quote_min: number;\n quote_max: number;\n quote_tick: number;\n base_min: number;\n base_max: number;\n base_tick: number;\n min_notional: number;\n price_range: number;\n price_scope: number;\n std_liquidation_fee: number;\n liquidator_fee: number;\n claim_insurance_fund_discount: number;\n funding_period: number;\n cap_funding: number;\n floor_funding: number;\n interest_rate: number;\n created_time: number;\n updated_time: number;\n imr_factor: number;\n base_mmr: number;\n base_imr: number;\n }\n\n export interface TokenItem {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n export interface ChainDetail {\n chain_id: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface SymbolExt extends Symbol {\n base: string;\n base_dp: number;\n\n quote: string;\n quote_dp: number;\n type: string;\n name: string;\n }\n\n export interface Order {\n symbol: string;\n status: string;\n side: string;\n order_id: number;\n algo_order_id?: number;\n user_id: number;\n price: number | null;\n type: string;\n quantity: number;\n amount: null;\n visible: number;\n executed: number;\n total_fee: number;\n fee_asset: string;\n client_order_id?: string;\n average_executed_price: number;\n total_executed_quantity: number;\n visible_quantity: number;\n created_time: number;\n updated_time: number;\n reduce_only: boolean;\n trigger_price?: number;\n order_tag?: string;\n }\n\n export interface OrderExt extends Order {\n mark_price: string;\n }\n\n export interface AlgoOrder {\n algo_order_id: number;\n root_algo_order_id: number;\n parent_algo_order_id: number;\n parent_algo_type: AlgoOrderRootType;\n symbol: string;\n algo_type: string;\n child_orders: AlgoOrder[];\n side: string;\n quantity: number;\n is_triggered: boolean;\n is_activated: boolean;\n trigger_price: number;\n trigger_price_type: string;\n type: OrderType;\n root_algo_status: string;\n algo_status: string;\n price?: number;\n total_executed_quantity: number;\n visible_quantity: number;\n total_fee: number;\n fee_asset: string;\n reduce_only: boolean;\n created_time: number;\n updated_time: number;\n order_tag?: string;\n client_order_id?: string;\n }\n\n export interface AlgoOrderExt extends AlgoOrder {\n mark_price: string;\n position?: Partial<Position>;\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n }\n\n export interface OrderResponse {\n rows: (Order | AlgoOrder)[];\n meta: {\n total: number;\n current_page: number;\n records_per_page: number;\n };\n }\n\n export interface FundingRate {\n symbol: string;\n est_funding_rate: number;\n est_funding_rate_timestamp: number;\n last_funding_rate: number;\n last_funding_rate_timestamp: number;\n next_funding_time: number;\n sum_unitary_funding: number;\n }\n\n export interface FundingPeriodData {\n rate: number;\n positive: number;\n negative: number;\n }\n\n export interface FundingHistory {\n symbol: string;\n data_start_time: string;\n funding: {\n last: FundingPeriodData;\n \"1d\": FundingPeriodData;\n \"3d\": FundingPeriodData;\n \"7d\": FundingPeriodData;\n \"14d\": FundingPeriodData;\n \"30d\": FundingPeriodData;\n \"90d\": FundingPeriodData;\n };\n }\n\n export interface PositionInfo extends PositionAggregated {\n // margin_ratio: number;\n // initial_margin_ratio: number;\n // maintenance_margin_ratio: number;\n // open_margin_ratio: number;\n // current_margin_ratio_with_orders: number;\n // initial_margin_ratio_with_orders: number;\n // maintenance_margin_ratio_with_orders: number;\n // total_collateral_value: number;\n // free_collateral: number;\n rows: Position[];\n // total_pnl_24_h: number;\n }\n\n export interface PositionAggregated {\n margin_ratio: number;\n initial_margin_ratio: number;\n maintenance_margin_ratio: number;\n open_margin_ratio: number;\n current_margin_ratio_with_orders: number;\n initial_margin_ratio_with_orders: number;\n maintenance_margin_ratio_with_orders: number;\n total_collateral_value: number;\n free_collateral: number;\n total_pnl_24_h: number;\n /**\n * @deprecated use total_unreal_pnl instead\n */\n unrealPnL: number;\n total_unreal_pnl: number;\n total_unreal_pnl_index?: number;\n /**\n * @deprecated use total_unsettled_pnl instead\n */\n unsettledPnL: number;\n total_unsettled_pnl: number;\n notional: number;\n unrealPnlROI: number;\n unrealPnlROI_index?: number;\n }\n\n export interface Position {\n account_id?: string;\n symbol: string;\n position_qty: number;\n cost_position: number;\n last_sum_unitary_funding: number;\n pending_long_qty: number;\n pending_short_qty: number;\n settle_price: number;\n average_open_price: number;\n unrealized_pnl: number;\n unrealized_pnl_index?: number;\n unrealized_pnl_ROI: number;\n unsettled_pnl: number;\n unsettled_pnl_ROI: number;\n unrealized_pnl_ROI_index?: number;\n mark_price: number;\n index_price?: number;\n est_liq_price: number | null;\n timestamp: number;\n /**\n * Maintenance margin ratio\n */\n mmr: number;\n imr: number;\n IMR_withdraw_orders: number;\n MMR_with_orders: number;\n pnl_24_h: number;\n fee_24_h: number;\n fundingFee?: number;\n }\n\n export interface PositionExt extends Position {\n notional: number;\n mm: number;\n }\n\n export interface PositionTPSLExt extends PositionExt {\n tp_trigger_price?: number;\n sl_trigger_price?: number;\n\n // has_position_tp_sl: boolean;\n\n /**\n * related position tp/sl order\n */\n algo_order?: AlgoOrder;\n }\n\n export interface PositionsTPSLExt extends PositionAggregated {\n rows: PositionTPSLExt[];\n }\n\n export interface Trade {\n symbol: Symbol;\n side: OrderSide;\n ts: number;\n executed_price: number;\n executed_quantity: number;\n executed_timestamp: number;\n }\n\n export interface Holding {\n token: string;\n holding: number;\n frozen: number;\n pending_short: number;\n updated_time: number;\n }\n\n export interface AccountInfo {\n account_id: string;\n email: string;\n account_mode: string;\n tier: string;\n futures_tier: string;\n maintenance_cancel_orders: boolean;\n taker_fee_rate: number;\n maker_fee_rate: number;\n max_leverage: number;\n futures_taker_fee_rate: number;\n futures_maker_fee_rate: number;\n imr_factor: { [key: string]: number };\n max_notional: { [key: string]: number };\n }\n\n export interface Chain {\n dexs: string[];\n network_infos: NetworkInfos;\n token_infos: TokenInfo[];\n nativeToken?: TokenInfo;\n // nativeToken\n }\n\n export interface NetworkInfos {\n name: string;\n shortName: string;\n public_rpc_url: string;\n chain_id: number;\n currency_symbol: string;\n bridge_enable: boolean;\n mainnet: boolean;\n est_txn_mins: number | null;\n explorer_base_url: string;\n bridgeless?: boolean;\n withdrawal_fee?: number;\n minimum_withdraw_amount?: number;\n }\n\n export interface TokenInfo {\n address: string;\n symbol: string;\n decimals: number;\n display_name: string;\n precision: number;\n }\n\n export interface Chain {\n token: string;\n token_hash: string;\n decimals: number;\n minimum_withdraw_amount: number;\n chain_details: ChainDetail[];\n }\n\n // export interface Token{\n\n // }\n\n export interface ChainDetail {\n chain_id: string;\n chain_name?: string;\n contract_address: string;\n decimals: number;\n withdrawal_fee: number;\n }\n\n export interface AssetHistory {\n meta: RecordsMeta;\n rows: AssetHistoryRow[];\n }\n\n export interface RecordsMeta {\n total: number;\n records_per_page: number;\n current_page: number;\n }\n\n export interface AssetHistoryRow {\n id: string;\n tx_id: string;\n side: string;\n token: string;\n amount: number;\n fee: number;\n trans_status: string;\n created_time: number;\n updated_time: number;\n chain_id: string;\n }\n\n export interface FundingFeeHistory {\n meta: RecordsMeta;\n rows: FundingFeeRow[];\n }\n\n export interface FundingFeeRow {\n symbol: string;\n funding_rate: number;\n mark_price: number;\n funding_fee: number;\n payment_type: string;\n status: string;\n created_time: number;\n updated_time: number;\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface TransferHistory {\n meta: RecordsMeta;\n rows: TransferHistoryRow[];\n }\n\n export interface TransferHistoryRow {\n amount: number;\n created_time: number;\n from_account_id: string;\n id: string;\n status: \"CREATED\" | \"PENDING\" | \"COMPLETED\" | \"FAILED\";\n to_account_id: string;\n token: string;\n updated_time: number;\n }\n\n export interface DailyRow {\n account_value: number;\n broker_id: string;\n date: string;\n perp_volume: number;\n pnl: number;\n snapshot_time?: number;\n }\n\n export interface PositionHistory {\n position_id: number; // Unique identifier for the position\n liquidation_id?: number; // Unique identifier for the position\n position_status: string; // Status of the position\n type: string; // Type of the position activity\n symbol: string; // Trading pair symbol\n avg_open_price: number; // Average open price of the position\n avg_close_price: number; // Average close price of the position\n max_position_qty: number; // Maximum quantity held in the position\n closed_position_qty: number; // Quantity closed in the position\n side: \"LONG\" | \"SHORT\"; // Side of the position\n trading_fee: number; // Fee charged for trading\n accumulated_funding_fee: number; // Accumulated funding fee for the position\n insurance_fund_fee: number; // Fee contributed to the insurance fund\n liquidator_fee: number; // Fee paid to the liquidator\n realized_pnl: number; // Realized profit and loss\n open_timestamp: number; // Timestamp when the position was opened\n close_timestamp: number; // Timestamp when the position was closed\n last_update_time: number; // Timestamp of the last update to the position\n }\n\n export interface LiquidationPositionByPerp {\n abs_liquidation_fee: number;\n cost_position_transfer: number;\n liquidator_fee: number;\n position_qty: number;\n symbol: string;\n transfer_price: number;\n }\n\n export interface Liquidation {\n liquidation_id: number;\n timestamp: number;\n transfer_amount_to_insurance_fund: number;\n positions_by_perp: LiquidationPositionByPerp[];\n }\n\n export interface RestrictedAreas {\n invalid_web_country: string;\n invalid_web_city: string;\n }\n\n export interface IpInfo {\n ip: string;\n city: string;\n region: string;\n checked: boolean;\n }\n}\n\nexport declare namespace WSMessage {\n export interface Ticker {\n symbol: string;\n open: number;\n close: number;\n high: number;\n low: number;\n volume: number;\n amount: number;\n count: number;\n change: number;\n open_interest?: number;\n index_price?: number;\n }\n\n export interface MarkPrice {\n symbol: string;\n price: number;\n }\n\n export interface Position {\n symbol: string;\n positionQty: number;\n costPosition: number;\n lastSumUnitaryFunding: number;\n sumUnitaryFundingVersion: number;\n pendingLongQty: number;\n pendingShortQty: number;\n settlePrice: number;\n averageOpenPrice: number;\n unsettledPnl: number;\n pnl24H: number;\n fee24H: number;\n markPrice: number;\n estLiqPrice: number;\n version: number;\n imr: number;\n imrwithOrders: number;\n mmrwithOrders: number;\n mmr: number;\n }\n\n export interface VaultBalance {\n chain_id: string;\n token: string;\n balance: number;\n }\n\n export interface Order {\n symbol: string;\n clientOrderId: string;\n orderId: number;\n type: string;\n side: string;\n quantity: number;\n price: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n avgPrice: number;\n status: string;\n reason: string;\n totalFee: number;\n visible: number;\n /**\n * update time\n */\n timestamp: number;\n reduceOnly: boolean;\n maker: boolean;\n }\n\n export interface Holding {\n holding: number;\n frozen: number;\n interest: number;\n pendingShortQty: number;\n pendingExposure: number;\n pendingLongQty: number;\n pendingLongExposure: number;\n version: number;\n staked: number;\n unbonding: number;\n vault: number;\n fee24H: number;\n markPrice: number;\n }\n\n export interface AlgoOrder {\n symbol: string;\n rootAlgoOrderId: number;\n parentAlgoOrderId: number;\n algoOrderId: number;\n status: string;\n algoType: string;\n side: string;\n quantity: number;\n triggerStatus: string;\n price: number;\n type: string;\n triggerTradePrice: number;\n triggerTime: number;\n tradeId: number;\n executedPrice: number;\n executedQuantity: number;\n fee: number;\n feeAsset: string;\n totalExecutedQuantity: number;\n averageExecutedPrice: number;\n totalFee: number;\n timestamp: number;\n visibleQuantity: number;\n reduceOnly: boolean;\n triggered: boolean;\n maker: boolean;\n rootAlgoStatus: string;\n algoStatus: string;\n }\n\n export interface Announcement {\n announcement_id: string;\n message: string;\n i18n: Record<PropertyKey, string | null>;\n url?: string | null;\n type: AnnouncementType | null;\n updated_time: number;\n }\n}\n","/**\n * Supported types for placing an order\n */\nexport enum OrderType {\n LIMIT = \"LIMIT\",\n MARKET = \"MARKET\",\n IOC = \"IOC\",\n FOK = \"FOK\",\n POST_ONLY = \"POST_ONLY\",\n ASK = \"ASK\",\n BID = \"BID\",\n STOP_LIMIT = \"STOP_LIMIT\",\n STOP_MARKET = \"STOP_MARKET\",\n /**\n * Only for POSITIONAL_TP_SL type algo order\n */\n CLOSE_POSITION = \"CLOSE_POSITION\",\n /**\n * Scaled order\n */\n SCALED = \"SCALED\",\n}\n\nexport enum BBOOrderType {\n COUNTERPARTY1 = \"counterparty1\",\n COUNTERPARTY5 = \"counterparty5\",\n QUEUE1 = \"queue1\",\n QUEUE5 = \"queue5\",\n}\n\nexport enum OrderLevel {\n ONE = 0,\n TWO = 1,\n THREE = 2,\n FOUR = 3,\n FIVE = 4,\n}\n\nexport enum AlgoOrderRootType {\n TP_SL = \"TP_SL\",\n POSITIONAL_TP_SL = \"POSITIONAL_TP_SL\",\n STOP = \"STOP\",\n BRACKET = \"BRACKET\",\n}\n\nexport enum TriggerPriceType {\n MARK_PRICE = \"MARK_PRICE\",\n}\n\nexport enum AlgoOrderType {\n TAKE_PROFIT = \"TAKE_PROFIT\",\n STOP_LOSS = \"STOP_LOSS\",\n}\n\nexport enum OrderSide {\n BUY = \"BUY\",\n SELL = \"SELL\",\n}\n\nexport enum PositionSide {\n LONG = \"LONG\",\n SHORT = \"SHORT\",\n}\n\nexport enum OrderStatus {\n /** @deprecated */\n OPEN = \"OPEN\",\n NEW = \"NEW\",\n FILLED = \"FILLED\",\n PARTIAL_FILLED = \"PARTIAL_FILLED\",\n CANCELLED = \"CANCELLED\",\n REPLACED = \"REPLACED\",\n // CANCELLED + FILLED\n COMPLETED = \"COMPLETED\",\n // NEW + PARTIAL_FILLED\n INCOMPLETE = \"INCOMPLETE\",\n REJECTED = \"REJECTED\",\n}\n\nexport interface OrderExt {\n total: string;\n}\n\nexport interface BaseOrder {\n symbol: string;\n order_type: OrderType;\n order_type_ext?: OrderType;\n order_price: string;\n order_quantity: string;\n order_amount?: number;\n visible_quantity: number;\n side: OrderSide;\n reduce_only: boolean;\n slippage: number;\n order_tag: string;\n level: OrderLevel;\n post_only_adjust: boolean;\n /** custom order id, it is used to identify the order from ws */\n client_order_id: string;\n}\n\n/** Scaled order fields */\nexport interface ScaledOrder {\n /** upper price */\n max_price?: string;\n /** lower price */\n min_price?: string;\n /** total orders */\n total_orders?: number;\n /** quantity distribution type */\n distribution_type?: DistributionType;\n /** the ratio between upper and lower price. */\n skew?: number;\n}\n\nexport interface RegularOrder extends BaseOrder, OrderExt, ScaledOrder {\n // symbol: string;\n // client_order_id: string;\n // type: OrderType;\n // price: number;\n // quantity: number;\n}\n\nexport interface AlgoOrder extends BaseOrder, OrderExt {\n // symbol: string;\n quantity: string;\n type: OrderType;\n price: string;\n algo_type: AlgoOrderRootType;\n trigger_price_type: string;\n trigger_price: string;\n child_orders: AlgoOrderChildOrders[];\n}\n\nexport interface BracketOrder extends AlgoOrder, OrderExt {\n /**\n * Computed take profit\n */\n tp_pnl?: string;\n tp_offset?: string;\n tp_offset_percentage?: string;\n tp_ROI?: string;\n tp_trigger_price?: string;\n\n /**\n * Computed stop loss\n */\n sl_pnl?: string;\n sl_offset?: string;\n sl_offset_percentage?: string;\n sl_ROI?: string;\n sl_trigger_price?: string;\n}\n\nexport type OrderlyOrder = RegularOrder & AlgoOrder & BracketOrder;\n\nexport interface AlgoOrderChildOrders {\n symbol: string;\n algo_type: string;\n child_orders: ChildOrder[];\n}\n\nexport interface ChildOrder {\n symbol: string;\n algo_type: AlgoOrderType;\n side: string;\n type: OrderType;\n trigger_price: string;\n\n reduce_only: boolean;\n trigger_price_type?: string;\n}\n\nexport interface OrderEntity extends ScaledOrder {\n symbol: string;\n order_type: OrderType;\n algo_type?: AlgoOrderRootType;\n order_type_ext?: OrderType;\n order_price?: string;\n order_quantity?: string;\n order_amount?: number;\n // Whether to display in the orderbook, default=order_quantity, not displayed when =0,\n visible_quantity?: number;\n reduce_only?: boolean;\n side: OrderSide;\n broker_id?: string;\n slippage?: number;\n\n // internal fields\n total?: string;\n // hideInOrderbook?: boolean;\n isStopOrder?: boolean;\n trigger_price?: string;\n order_tag?: string;\n level?: OrderLevel;\n}\n\nexport enum DistributionType {\n // enum value need to use lowercase to match the track params\n FLAT = \"flat\",\n ASCENDING = \"ascending\",\n DESCENDING = \"descending\",\n CUSTOM = \"custom\",\n}\n\nexport type Optional<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;\nexport type RequireKeys<T extends object, K extends keyof T> = Required<\n Pick<T, K>\n> &\n Partial<Omit<T, K>>;\n\nexport interface BaseAlgoOrderEntity<T extends AlgoOrderRootType>\n extends OrderEntity {\n algo_type: AlgoOrderRootType;\n child_orders: (Partial<Omit<AlgoOrderEntity<T>, \"algo_type\" | \"type\">> & {\n algo_type: AlgoOrderType;\n type: OrderType;\n child_orders?: BaseAlgoOrderEntity<T>[\"child_orders\"];\n // trigger_price: number | string;\n })[];\n // if update the order, then need to provide the order_id\n algo_order_id?: number;\n client_order_id?: string;\n order_tag?: string;\n price?: number | string;\n quantity: number | string;\n reduce_only?: boolean;\n side: OrderSide;\n symbol: string;\n trigger_price: string;\n trigger_price_type: TriggerPriceType;\n type: OrderType;\n visible_quantity?: number;\n is_activated?: boolean;\n tp_trigger_price?: string | number;\n sl_trigger_price?: string | number;\n}\n\nexport type AlgoOrderEntity<\n T extends AlgoOrderRootType = AlgoOrderRootType.STOP,\n> = T extends AlgoOrderRootType.TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\"\n >\n : T extends AlgoOrderRootType.POSITIONAL_TP_SL\n ? Optional<\n BaseAlgoOrderEntity<T>,\n \"side\" | \"type\" | \"trigger_price\" | \"order_type\" | \"quantity\"\n >\n : Omit<BaseAlgoOrderEntity<T>, \"child_orders\" | \"order_type\">;\n\nexport type TPSLOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.TP_SL>,\n \"side\" | \"type\" | \"trigger_price\"\n>;\n\nexport type BracketOrderEntry = Optional<\n AlgoOrderEntity<AlgoOrderRootType.BRACKET>,\n \"side\"\n>;\n","export enum WithdrawStatus {\n NotSupported = \"NotSupported\",\n NotConnected = \"NotConnected\",\n Unsettle = \"Unsettle\",\n InsufficientBalance = \"InsufficientBalance\",\n Normal = \"Normal\",\n}\n","export interface Chain {\n id: number;\n chainNameShort: string;\n chainLogo: string;\n chainInfo: ChainInfo;\n minGasBalance: number;\n minCrossGasBalance: number;\n maxPrepayCrossGas: number;\n blockExplorerName: string;\n chainName: string;\n requestRpc: string;\n}\n\nexport interface ChainInfo {\n chainId: string;\n chainName: string;\n nativeCurrency: NativeCurrency;\n rpcUrls: string[];\n blockExplorerUrls: string[];\n}\n\nexport interface NativeCurrency {\n name: string;\n symbol: string;\n decimals: number;\n fix: number;\n}\n\nexport const Ethereum = {\n chainNameShort: \"Ethereum\",\n id: 1,\n chainLogo: \"\",\n chainInfo: {\n chainId: `0x${(1).toString(16)}`,\n chainName: \"Ethereum Mainnet\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 8,\n },\n rpcUrls: [\"https://mainnet.infura.io/v3/9155d40884554acdb17699a18a1fe348\"],\n blockExplorerUrls: [\"https://etherscan.io/\"],\n },\n minGasBalance: 0.002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.025,\n blockExplorerName: \"EthScan\",\n chainName: \"Ethereum Mainnet\",\n requestRpc: \"https://rpc.ankr.com/eth\",\n};\n\nexport const Avalanche = {\n id: 43114,\n chainInfo: {\n chainId: `0x${(43114).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche\",\n chainNameShort: \"Avalanche\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const Fuji = {\n id: 43113,\n chainInfo: {\n chainId: `0x${(43113).toString(16)}`, // '0xa86a'\n chainName: \"Avalanche Fuji Testnet\",\n nativeCurrency: {\n name: \"avax\",\n symbol: \"AVAX\",\n decimals: 18,\n fix: 5,\n },\n rpcUrls: [\"https://api.avax.network/ext/bc/C/rpc\"],\n blockExplorerUrls: [\"https://snowtrace.io/\"],\n },\n minGasBalance: 0.05,\n minCrossGasBalance: 0.15,\n maxPrepayCrossGas: 2,\n blockExplorerName: \"Snowtrace\",\n chainName: \"Avalanche Fuji\",\n chainNameShort: \"Avalanche Fuji\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/avalanche\",\n};\n\nexport const BNB = {\n id: 56,\n chainInfo: {\n chainId: `0x${(56).toString(16)}`, // 0x38\n chainName: \"BNB Chain\",\n nativeCurrency: {\n name: \"bnb\",\n symbol: \"BNB\",\n decimals: 18,\n fix: 6,\n },\n rpcUrls: [\"https://bsc-dataseed1.binance.org/\"],\n blockExplorerUrls: [\"https://bscscan.com/\"],\n },\n minGasBalance: 0.02,\n minCrossGasBalance: 0.02,\n maxPrepayCrossGas: 0.1,\n blockExplorerName: \"BscScan\",\n chainName: \"Binance Smart Chain\",\n chainNameShort: \"BNB Chain\",\n requestRpc: \"https://rpc.ankr.com/bsc\",\n chainLogo: \"\",\n};\n\nexport const Fantom = {\n id: 250,\n chainInfo: {\n chainId: `0x${(250).toString(16)}`, // 0x38\n chainName: \"Fantom\",\n nativeCurrency: {\n name: \"ftm\",\n symbol: \"FTM\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpcapi.fantom.network\"],\n blockExplorerUrls: [\"https://ftmscan.com/\"],\n },\n minGasBalance: 1,\n minCrossGasBalance: 10,\n maxPrepayCrossGas: 60,\n blockExplorerName: \"FTMScan\",\n chainName: \"Fantom\",\n chainNameShort: \"Fantom\",\n chainLogo: \"\",\n requestRpc: \"https://rpc.ankr.com/fantom\",\n};\n\nexport const Polygon = {\n id: 137,\n chainInfo: {\n chainId: `0x${(137).toString(16)}`,\n chainName: \"Polygon\",\n nativeCurrency: {\n name: \"matic\",\n symbol: \"MATIC\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-mainnet.matic.network\"],\n blockExplorerUrls: [\"https://polygonscan.com/\"],\n },\n minGasBalance: 0.1,\n minCrossGasBalance: 1,\n maxPrepayCrossGas: 30,\n blockExplorerName: \"Polygonscan\",\n chainName: \"Polygon\",\n chainNameShort: \"Polygon\",\n requestRpc: \"https://rpc.ankr.com/polygon\",\n chainLogo: \"\",\n};\n\nexport const Arbitrum = {\n id: 42161,\n chainInfo: {\n chainId: `0x${(42161).toString(16)}`,\n chainName: \"Arbitrum\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arb1.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://arbiscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbiscan\",\n chainName: \"Arbitrum\",\n chainNameShort: \"Arbitrum\",\n requestRpc: \"https://arb1.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const Optimism = {\n id: 10,\n chainInfo: {\n chainId: `0x${(10).toString(16)}`,\n chainName: \"Optimism\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://mainnet.optimism.io\"],\n blockExplorerUrls: [\"https://optimistic.etherscan.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism\",\n chainName: \"Optimism\",\n chainNameShort: \"Optimism\",\n requestRpc: \"https://rpc.ankr.com/optimism\",\n chainLogo: \"\",\n};\n\nexport const zkSyncEra = {\n id: 324,\n chainInfo: {\n chainId: `0x${(324).toString(16)}`,\n chainName: \"zkSync Era\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zksync2-mainnet.zksync.io\"],\n blockExplorerUrls: [\"https://explorer.zksync.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"zkSync Era\",\n chainName: \"zkSync Era\",\n chainNameShort: \"zkSync Era\",\n requestRpc: \"https://zksync2-mainnet.zksync.io/\",\n chainLogo: \"\",\n // blockExplorerName: 'zkSync Era Goerli',\n // chainName: 'zkSync Era Goerli',\n // chainNameShort: 'zkSync Era Goerli',\n // requestRpc: 'https://zksync2-testnet.zksync.dev/',\n // chainLogo: '',\n};\n\nexport const PolygonzkEVM = {\n id: 1101,\n chainInfo: {\n chainId: `0x${(1101).toString(16)}`,\n chainName: \"Polygon zkEVM\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://zkevm-rpc.com\"],\n blockExplorerUrls: [\"https://zkevm.polygonscan.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon zkEVM\",\n chainName: \"Polygon zkEVM\",\n chainNameShort: \"Polygon zkEVM\",\n requestRpc: \"https://zkevm-rpc.com\",\n chainLogo: \"\",\n};\n\nexport const Linea = {\n id: 59144,\n chainInfo: {\n chainId: `0x${(59144).toString(16)}`,\n chainName: \"Linea\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.linea.build\"],\n blockExplorerUrls: [\"https://lineascan.build/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Linea\",\n chainName: \"Linea\",\n chainNameShort: \"Linea\",\n requestRpc: \"https://rpc.linea.build\",\n chainLogo: \"\",\n};\n\nexport const Base = {\n id: 8453,\n chainInfo: {\n chainId: `0x${(8453).toString(16)}`,\n chainName: \"Base Network\",\n nativeCurrency: {\n name: \"eth\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://developer-access-mainnet.base.org/\"],\n blockExplorerUrls: [\"https://basescan.org\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base\",\n chainName: \"Base\",\n chainNameShort: \"Base\",\n requestRpc: \"https://developer-access-mainnet.base.org/\",\n chainLogo: \"\",\n};\n\nexport const Mantle = {\n id: 5000,\n chainInfo: {\n chainId: `0x${(5000).toString(16)}`,\n chainName: \"Mantle\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.mantle.xyz/\"],\n blockExplorerUrls: [\"https://mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle\",\n chainName: \"Mantle\",\n chainNameShort: \"Mantle\",\n requestRpc: \"https://rpc.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumGoerli = {\n id: 421613,\n chainInfo: {\n chainId: `0x${(421613).toString(16)}`,\n chainName: \"Arbitrum Goerli\",\n nativeCurrency: {\n name: \"AGOR\",\n symbol: \"AGOR\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://goerli-rollup.arbitrum.io/rpc\"],\n blockExplorerUrls: [\"https://goerli-rollup-explorer.arbitrum.io/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Goerli\",\n chainName: \"Arbitrum Goerli\",\n chainNameShort: \"Arbitrum Goerli\",\n requestRpc: \"https://goerli-rollup.arbitrum.io/rpc\",\n chainLogo: \"\",\n};\n\nexport const ArbitrumSepolia = {\n id: 421614,\n chainInfo: {\n chainId: `0x${(421614).toString(16)}`,\n chainName: \"Arbitrum Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\"],\n blockExplorerUrls: [\"https://sepolia-explorer.arbitrum.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Arbitrum Sepolia\",\n chainName: \"Arbitrum Sepolia\",\n chainNameShort: \"Arbitrum Sepolia\",\n requestRpc: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chainLogo: \"\",\n};\n\nexport const OptimismGoerli = {\n id: 420,\n chainInfo: {\n chainId: `0x${(420).toString(16)}`,\n chainName: \"Optimism Goerli\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://optimism-goerli.gateway.tenderly.co\"],\n blockExplorerUrls: [\"https://goerli-optimism.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Goerli\",\n chainName: \"Optimism Goerli\",\n chainNameShort: \"Optimism Goerli\",\n requestRpc: \"https://optimism-goerli.gateway.tenderly.co\",\n chainLogo: \"\",\n};\n\nexport const OptimismSepolia = {\n id: 11155420,\n chainInfo: {\n chainId: `0x${(11155420).toString(16)}`,\n chainName: \"Optimism Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://sepolia.optimism.io\"],\n blockExplorerUrls: [\"https://sepolia-optimistic.etherscan.io\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Optimism Sepolia\",\n chainName: \"Optimism Sepolia\",\n chainNameShort: \"Optimism Sepolia\",\n requestRpc: \"https://sepolia.optimism.io\",\n chainLogo: \"\",\n};\n\nexport const BaseSepolia = {\n id: 84532,\n chainInfo: {\n chainId: `0x${(84532).toString(16)}`,\n chainName: \"Base Sepolia\",\n nativeCurrency: {\n name: \"ETH\",\n symbol: \"ETH\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://base-sepolia-rpc.publicnode.com\"],\n blockExplorerUrls: [\"https://base-sepolia.blockscout.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Base Sepolia\",\n chainName: \"Base Sepolia\",\n chainNameShort: \"Base Sepolia\",\n requestRpc: \"https://base-sepolia-rpc.publicnode.com\",\n chainLogo: \"\",\n};\n\nexport const MantleSepolia = {\n id: 5003,\n chainInfo: {\n chainId: `0x${(5003).toString(16)}`,\n chainName: \"Mantle Sepolia\",\n nativeCurrency: {\n name: \"MNT\",\n symbol: \"MNT\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc.sepolia.mantle.xyz/\"],\n blockExplorerUrls: [\"https://sepolia.mantlescan.xyz/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Mantle Sepolia\",\n chainName: \"Mantle Sepolia\",\n chainNameShort: \"Mantle Sepolia\",\n requestRpc: \"https://rpc.sepolia.mantle.xyz/\",\n chainLogo: \"\",\n};\n\nexport const PolygonAmoy = {\n id: 80002,\n chainInfo: {\n chainId: `0x${(80002).toString(16)}`,\n chainName: \"Polygon Amoy\",\n nativeCurrency: {\n name: \"MATIC\",\n symbol: \"MATIC\",\n decimals: 6,\n fix: 4,\n },\n rpcUrls: [\"https://rpc-amoy.polygon.technology/\"],\n blockExplorerUrls: [\"https://www.oklink.com/amoy\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"Polygon Amoy\",\n chainName: \"Polygon Amoy\",\n chainNameShort: \"Polygon Amoy\",\n requestRpc: \"https://rpc-amoy.polygon.technology/\",\n chainLogo: \"\",\n};\n\nexport const Sei = {\n id: 1329,\n chainInfo: {\n chainId: `0x${(1329).toString(16)}`,\n chainName: \"Sei Network\",\n nativeCurrency: {\n name: \"SEI\",\n symbol: \"SEI\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [\"https://evm-rpc.sei-apis.com\"],\n blockExplorerUrls: [\"https://seitrace.com/\"],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\n\nexport const StoryTestnet = {\n name: \"Story Odyssey Testnet\",\n public_rpc_url: \"https://rpc.odyssey.storyrpc.io/\",\n chain_id: 1516,\n currency_symbol: \"IP\",\n explorer_base_url: \"\",\n vault_address: \"\",\n};\nexport const StoryOdysseyTestnet = {\n id: 1329,\n chainInfo: {\n chainId: `0x${StoryTestnet.chain_id.toString(16)}`,\n chainName: StoryTestnet.name,\n nativeCurrency: {\n name: \"IP\",\n symbol: \"IP\",\n decimals: 18,\n fix: 4,\n },\n rpcUrls: [StoryTestnet.public_rpc_url],\n blockExplorerUrls: [],\n },\n minGasBalance: 0.0002,\n minCrossGasBalance: 0.002,\n maxPrepayCrossGas: 0.03,\n blockExplorerName: \"SEI\",\n chainName: \"Sei Network\",\n chainNameShort: \"SEI\",\n requestRpc: \"https://evm-rpc.sei-apis.com\",\n chainLogo: \"\",\n};\nexport const chainsInfoMap: Map<number, Chain> = new Map([\n [Ethereum.id, Ethereum],\n [Avalanche.id, Avalanche],\n [Fuji.id, Fuji],\n [BNB.id, BNB],\n [Fantom.id, Fantom],\n [Polygon.id, Polygon],\n [Arbitrum.id, Arbitrum],\n [Optimism.id, Optimism],\n [zkSyncEra.id, zkSyncEra],\n [PolygonzkEVM.id, PolygonzkEVM],\n [Linea.id, Linea],\n [Base.id, Base],\n [Mantle.id, Mantle],\n [ArbitrumGoerli.id, ArbitrumGoerli],\n [ArbitrumSepolia.id, ArbitrumSepolia],\n [OptimismGoerli.id, OptimismGoerli],\n [OptimismSepolia.id, OptimismSepolia],\n [BaseSepolia.id, BaseSepolia],\n [MantleSepolia.id, MantleSepolia],\n [PolygonAmoy.id, PolygonAmoy],\n [Sei.id, Sei],\n [StoryOdysseyTestnet.id, StoryOdysseyTestnet],\n]);\n\nexport const SolanaDevnet = {\n id: 901901901,\n chainInfo: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chainId: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n} as unknown as typeof Arbitrum;\n\nexport const TestnetChains = [\n {\n network_infos: {\n name: \"Arbitrum Sepolia\",\n shortName: \"Arbitrum Sepolia\",\n public_rpc_url: \"https://arbitrum-sepolia.blockpi.network/v1/rpc/public\",\n chain_id: 421614,\n currency_symbol: \"ETH\",\n bridge_enable: true,\n mainnet: false,\n explorer_base_url: \"https://sepolia.arbiscan.io\",\n est_txn_mins: null,\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: {\n name: \"Solana Devnet\",\n public_rpc_url: \"\",\n chain_id: 901901901,\n currency_symbol: \"SOL\",\n explorer_base_url: \"\",\n vault_address: \"\",\n },\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDU\",\n decimals: 6,\n },\n ],\n },\n {\n network_infos: StoryTestnet,\n token_infos: [\n {\n symbol: \"USDC\",\n address: \"0xF1815bd50389c46847f0Bda824eC8da914045D14\",\n decimals: 6,\n },\n ],\n },\n // {\n // network_infos: {\n // name: \"Mantle Sepolia\",\n // shortName: \"Mantle Sepolia\",\n // public_rpc_url: \"https://rpc.sepolia.mantle.xyz/\",\n // chain_id: 5003,\n // currency_symbol: \"MNT\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://sepolia.mantlescan.xyz/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xAcab8129E2cE587fD203FD770ec9ECAFA2C88080\",\n // decimals: 6,\n // display_name: \"USDC.e\",\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Arbitrum Goerli\",\n // shortName: \"Arbitrum Goerli\",\n // public_rpc_url: \"https://goerli-rollup.arbitrum.io/rpc\",\n // chain_id: 421613,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli.arbiscan.io/\",\n // est_txn_mins: null,\n // },\n // token_infos: [\n // {\n // symbol: \"USDC\",\n // address: \"0xfd064A18f3BF249cf1f87FC203E90D8f650f2d63\",\n // decimals: 6,\n // },\n // ],\n // },\n // {\n // network_infos: {\n // name: \"Optimism Goerli\",\n // shortName: \"Optimism Goerli\",\n // public_rpc_url: \"https://optimism-goerli.gateway.tenderly.co\",\n // chain_id: 420,\n // currency_symbol: \"ETH\",\n // bridge_enable: true,\n // mainnet: false,\n // explorer_base_url: \"https://goerli-optimism.etherscan.io\",\n // est_txn_mins: null,\n // },\n // },\n];\n\nexport const defaultMainnetChains = [Arbitrum, Base, Optimism];\nexport const defaultTestnetChains = [ArbitrumSepolia];\n\nexport enum ChainNamespace {\n evm = \"EVM\",\n solana = \"SOL\",\n}\n\nexport const AbstractChains = new Set([2741, 11124]);\nexport const SolanaChains = new Set([901901901, 900900900]);\n","export enum TrackerEventName {\n /** virtual event (not send this event name to tracker) */\n trackIdentifyUserId = \"track_identify_user_id\",\n trackIdentify = \"track_identify\",\n trackCustomEvent = \"track_custom_event\",\n\n /** real event name (send this event name to tracker) */\n withdrawSuccess = \"withdraw_request_success\",\n withdrawFailed = \"withdraw_request_failure\",\n depositSuccess = \"deposit_request_success\",\n depositFailed = \"deposit_request_failure\",\n signinSuccess = \"sign_message_success\",\n placeOrderSuccess = \"place_order_success\",\n walletConnect = \"connect_wallet_success\",\n clickLinkDeviceButton = \"click_link_device_button\",\n signLinkDeviceMessageSuccess = \"sign_link_device_message_success\",\n linkDeviceModalClickConfirm = \"link_device_modal_click_confirm\",\n socialLoginSuccess = \"social_login_success\",\n clickSwitchNetwork = \"click_switch_network\",\n clickSwitchWallet = \"click_switch_wallet\",\n switchNetworkSuccess = \"switch_network_success\",\n clickExportPrivateKey = \"click_export_private_key\",\n switchLanguage = \"switch_language\",\n leaderboardCampaignClickTradeNow = \"leaderboard_campaign_click_trade_now\",\n leaderboardCampaignClickLearnMore = \"leaderboard_campaign_click_learn_more\",\n}\n","import { API } from \"./types/api\";\n\n// export type Chain = {\n// id: string;\n// name?: string;\n// };\n\nexport type CurrentChain = {\n id: number;\n info: API.Chain;\n};\n\nexport enum WS_WalletStatusEnum {\n NO = \"NO\",\n FAILED = \"FAILED\",\n PENDING = \"PENDING\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n}\n","export const LedgerWalletKey = \"orderly:ledger-wallet\";\nexport const ConnectorKey = \"orderly:connectorKey\";\nexport const ChainKey = \"order:chain\";\nexport const LinkDeviceKey = \"orderly_link_device\";\n","export class ApiError extends Error {\n constructor(message: string, private readonly code: number) {\n super(message);\n this.name = \"ApiError\";\n }\n}\n\nexport class SDKError extends Error {\n constructor(message: string) {\n super(`[ORDERLY SDK ERROR]:${message}`);\n this.name = \"SDKError\";\n }\n}\n","export const definedTypes = {\n EIP712Domain: [\n { name: \"name\", type: \"string\" },\n { name: \"version\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"verifyingContract\", type: \"address\" },\n ],\n Registration: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"registrationNonce\", type: \"uint256\" },\n ],\n Withdraw: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"receiver\", type: \"address\" },\n { name: \"token\", type: \"string\" },\n { name: \"amount\", type: \"uint256\" },\n { name: \"withdrawNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n AddOrderlyKey: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"orderlyKey\", type: \"string\" },\n { name: \"scope\", type: \"string\" },\n { name: \"timestamp\", type: \"uint64\" },\n { name: \"expiration\", type: \"uint64\" },\n ],\n SettlePnl: [\n { name: \"brokerId\", type: \"string\" },\n { name: \"chainId\", type: \"uint256\" },\n { name: \"settleNonce\", type: \"uint64\" },\n { name: \"timestamp\", type: \"uint64\" },\n ],\n } as const;","export { default as version } from \"./version\";\nexport * from \"./constants\";\nexport * from \"./types/api\";\n// export * from \"./order\";\nexport {\n OrderType,\n OrderSide,\n OrderStatus,\n AlgoOrderRootType,\n AlgoOrderType,\n TriggerPriceType,\n BBOOrderType,\n OrderLevel,\n DistributionType,\n} from \"./order\";\nexport type {\n OrderEntity,\n AlgoOrderEntity,\n TPSLOrderEntry,\n BaseAlgoOrderEntity,\n AlgoOrderChildOrders,\n Optional,\n PositionSide,\n BracketOrderEntry,\n RequireKeys,\n BaseOrder,\n RegularOrder,\n AlgoOrder,\n OrderlyOrder,\n ChildOrder,\n BracketOrder,\n} from \"./order\";\nexport * from \"./withdraw\";\nexport * from \"./chains\";\nexport * from \"./track\";\nexport type { Chain as ChainConfig, ChainInfo, NativeCurrency } from \"./chains\";\nexport * from \"./wallet\";\nexport * from \"./storageKey\";\nexport { ApiError, SDKError } from \"./errors\";\n\nexport { definedTypes } from \"./sign\";\nexport * as superstruct from \"superstruct\";\nexport * from \"./assetHistory\";\n","export enum AssetHistoryStatusEnum {\n NEW = \"NEW\",\n CONFIRM = \"CONFIRM\",\n PROCESSING = \"PROCESSING\",\n COMPLETED = \"COMPLETED\",\n FAILED = \"FAILED\",\n PENDING_REBALANCE = \"PENDING_REBALANCE\",\n}\n"],"mappings":"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","names":["AccountStatusEnum","SystemStateEnum","ExchangeStatusEnum","NetworkStatusEnum","AnnouncementType","OrderType","BBOOrderType","OrderLevel","AlgoOrderRootType","TriggerPriceType","AlgoOrderType","OrderSide","OrderStatus","DistributionType","WithdrawStatus","ChainNamespace","TrackerEventName","WS_WalletStatusEnum","AssetHistoryStatusEnum"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orderly.network/types",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0-alpha.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"jest": "^29.6.1",
|
|
19
19
|
"tsup": "^7.1.0",
|
|
20
20
|
"typedoc": "^0.26.5",
|
|
21
|
-
"tsconfig": "0.
|
|
21
|
+
"tsconfig": "0.7.0-alpha.0"
|
|
22
22
|
},
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|