ccxt 4.3.7 → 4.3.8

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/js/src/woo.js CHANGED
@@ -3185,7 +3185,7 @@ export default class woo extends Exchange {
3185
3185
  //
3186
3186
  const data = this.safeDict(response, 'data', {});
3187
3187
  const rows = this.safeList(data, 'tradeVos', []);
3188
- return this.parseConversions(rows, 'sellAsset', 'buyAsset', since, limit);
3188
+ return this.parseConversions(rows, code, 'sellAsset', 'buyAsset', since, limit);
3189
3189
  }
3190
3190
  parseConversion(conversion, fromCurrency = undefined, toCurrency = undefined) {
3191
3191
  //
package/js/src/zonda.d.ts CHANGED
@@ -57,7 +57,7 @@ export default class zonda extends Exchange {
57
57
  network: any;
58
58
  info: any;
59
59
  }>;
60
- fetchDepositAddresses(codes?: string[], params?: {}): Promise<{}>;
60
+ fetchDepositAddresses(codes?: string[], params?: {}): Promise<import("./base/types.js").Dictionary<any>>;
61
61
  transfer(code: string, amount: number, fromAccount: string, toAccount: string, params?: {}): Promise<TransferEntry>;
62
62
  parseTransfer(transfer: any, currency?: Currency): {
63
63
  info: any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccxt",
3
- "version": "4.3.7",
3
+ "version": "4.3.8",
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",