ccxt 4.2.42 → 4.2.44

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.
@@ -99,7 +99,7 @@ export default class phemex extends Exchange {
99
99
  previousFundingTimestamp: any;
100
100
  previousFundingDatetime: any;
101
101
  };
102
- setMargin(symbol: string, amount: any, params?: {}): Promise<any>;
102
+ setMargin(symbol: string, amount: number, params?: {}): Promise<any>;
103
103
  parseMarginStatus(status: any): string;
104
104
  parseMarginModification(data: any, market?: Market): {
105
105
  info: any;
@@ -13,7 +13,7 @@ export default class binanceus extends binance {
13
13
  // eslint-disable-next-line new-cap
14
14
  const restInstance = new binanceusRest();
15
15
  const restDescribe = restInstance.describe();
16
- const extended = this.deepExtend(super.describe(), restDescribe);
16
+ const extended = this.deepExtend(restDescribe, super.describe());
17
17
  return this.deepExtend(extended, {
18
18
  'id': 'binanceus',
19
19
  'name': 'Binance US',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccxt",
3
- "version": "4.2.42",
3
+ "version": "4.2.44",
4
4
  "description": "A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges",
5
5
  "unpkg": "dist/ccxt.browser.js",
6
6
  "type": "module",
package/skip-tests.json CHANGED
@@ -213,6 +213,8 @@
213
213
  }
214
214
  },
215
215
  "bitflyer": {
216
+ "skip": true,
217
+ "until": "2024-02-14",
216
218
  "skipMethods": {
217
219
  "loadMarkets": "contract is true, but contractSize is undefined",
218
220
  "fetchTrades": {