@riocrypto/common 1.0.2353 → 1.0.2355
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.
|
@@ -18,7 +18,7 @@ export interface InternalTrade {
|
|
|
18
18
|
coinbaseOrderId?: string;
|
|
19
19
|
coinbaseConversionId?: string;
|
|
20
20
|
bitsoOrderId?: string;
|
|
21
|
-
binanceOrderId?:
|
|
21
|
+
binanceOrderId?: number;
|
|
22
22
|
amountFilled?: number;
|
|
23
23
|
limitPrice?: number;
|
|
24
24
|
strategy?: InternalTradeStrategy;
|
package/build/types/user.d.ts
CHANGED
|
@@ -121,5 +121,17 @@ export declare type User = {
|
|
|
121
121
|
};
|
|
122
122
|
};
|
|
123
123
|
};
|
|
124
|
+
marketConfig?: {
|
|
125
|
+
[key in Country]?: {
|
|
126
|
+
[key in Fiat]?: {
|
|
127
|
+
[key in Side]?: {
|
|
128
|
+
isAfterHours?: boolean;
|
|
129
|
+
afterHoursExchangeRateMarkup?: number;
|
|
130
|
+
buyOrderGeneralExchangeRateMarkup?: number;
|
|
131
|
+
sellOrderGeneralExchangeRateMarkup?: number;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
134
|
+
};
|
|
135
|
+
};
|
|
124
136
|
} & (UserType.Individual extends UserType ? IndividualUser : {}) & (UserType.Business extends UserType ? BusinessUser : {});
|
|
125
137
|
export {};
|