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/README.md +3 -3
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/base/Exchange.js +13 -3
- package/dist/cjs/src/binance.js +1 -1
- package/dist/cjs/src/bingx.js +1 -1
- package/dist/cjs/src/bitget.js +1 -1
- package/dist/cjs/src/coinex.js +107 -147
- package/dist/cjs/src/okx.js +1 -1
- package/dist/cjs/src/woo.js +1 -1
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/base/Exchange.d.ts +19 -19
- package/js/src/base/Exchange.js +13 -3
- package/js/src/base/functions/generic.d.ts +20 -19
- package/js/src/binance.js +1 -1
- package/js/src/bingx.d.ts +2 -2
- package/js/src/bingx.js +1 -1
- package/js/src/bitget.js +1 -1
- package/js/src/bybit.d.ts +1 -1
- package/js/src/coinbase.d.ts +1 -1
- package/js/src/coinbaseinternational.d.ts +1 -1
- package/js/src/coinex.js +107 -147
- package/js/src/gemini.d.ts +1 -1
- package/js/src/hollaex.d.ts +1 -1
- package/js/src/htx.d.ts +2 -2
- package/js/src/idex.d.ts +1 -1
- package/js/src/kucoin.d.ts +1 -1
- package/js/src/mexc.d.ts +1 -1
- package/js/src/okcoin.d.ts +1 -1
- package/js/src/okx.d.ts +1 -1
- package/js/src/okx.js +1 -1
- package/js/src/paymium.d.ts +1 -1
- package/js/src/pro/luno.d.ts +2 -2
- package/js/src/probit.d.ts +1 -1
- package/js/src/upbit.d.ts +1 -1
- package/js/src/whitebit.d.ts +1 -1
- package/js/src/woo.js +1 -1
- package/js/src/zonda.d.ts +1 -1
- package/package.json +1 -1
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