ccxt-ir 4.9.16 → 4.9.22

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.
Files changed (36) hide show
  1. package/README.md +3 -3
  2. package/dist/ccxt.browser.min.js +3 -3
  3. package/dist/cjs/ccxt.js +1 -1
  4. package/dist/cjs/src/abstract/bitunix.js +1 -1
  5. package/dist/cjs/src/bitunix.js +317 -317
  6. package/dist/cjs/src/kcex.js +4 -4
  7. package/dist/cjs/src/ompfinex.js +501 -498
  8. package/dist/cjs/src/sarmayex.js +1 -1
  9. package/dist/cjs/src/toobit.js +2 -2
  10. package/dist/cjs/src/xt.js +5171 -5171
  11. package/js/ccxt.d.ts +1 -1
  12. package/js/ccxt.js +1 -1
  13. package/js/src/abstract/bitunix.d.ts +9 -9
  14. package/js/src/abstract/bitunix.js +5 -5
  15. package/js/src/abstract/kcex.d.ts +10 -10
  16. package/js/src/base/Exchange.d.ts +2 -2
  17. package/js/src/bitunix.d.ts +21 -21
  18. package/js/src/bitunix.js +320 -320
  19. package/js/src/coinbaseexchange.d.ts +1 -1
  20. package/js/src/kcex.d.ts +21 -21
  21. package/js/src/kcex.js +4 -4
  22. package/js/src/ompfinex.js +504 -501
  23. package/js/src/protobuf/mexc/compiled.d.cts +6 -0
  24. package/js/src/sarmayex.js +1 -1
  25. package/js/src/static_dependencies/fflake/browser.d.ts +5 -5
  26. package/js/src/static_dependencies/jsencrypt/lib/jsbn/jsbn.d.ts +1 -1
  27. package/js/src/static_dependencies/noble-curves/abstract/weierstrass.d.ts +204 -204
  28. package/js/src/static_dependencies/qs/formats.d.cts +6 -0
  29. package/js/src/static_dependencies/qs/index.d.cts +6 -0
  30. package/js/src/static_dependencies/qs/parse.d.cts +6 -0
  31. package/js/src/static_dependencies/qs/stringify.d.cts +6 -0
  32. package/js/src/static_dependencies/qs/utils.d.cts +6 -0
  33. package/js/src/static_dependencies/starknet/utils/calldata/parser/index.d.ts +1 -1
  34. package/js/src/toobit.js +2 -2
  35. package/js/src/xt.js +5178 -5178
  36. package/package.json +1 -1
@@ -24,7 +24,6 @@ class sarmayex extends sarmayex$1["default"] {
24
24
  'has': {
25
25
  'CORS': undefined,
26
26
  'spot': false,
27
- 'otc': true,
28
27
  'margin': false,
29
28
  'swap': false,
30
29
  'future': false,
@@ -80,6 +79,7 @@ class sarmayex extends sarmayex$1["default"] {
80
79
  'fetchTradingFee': false,
81
80
  'fetchTradingFees': false,
82
81
  'fetchWithdrawals': false,
82
+ 'otc': true,
83
83
  'setLeverage': false,
84
84
  'setMarginMode': false,
85
85
  'transfer': false,
@@ -209,12 +209,12 @@ class toobit extends toobit$1["default"] {
209
209
  if (filterType === 'PRICE_FILTER') {
210
210
  minPrice = this.safeNumber(filter, 'minPrice');
211
211
  maxPrice = this.safeNumber(filter, 'maxPrice');
212
- tickSize = this.safeNumber(filter, 'tickSize');
212
+ tickSize = this.safeString(filter, 'tickSize');
213
213
  }
214
214
  else if (filterType === 'LOT_SIZE') {
215
215
  minQty = this.safeNumber(filter, 'minQty');
216
216
  maxQty = this.safeNumber(filter, 'maxQty');
217
- stepSize = this.safeNumber(filter, 'stepSize');
217
+ stepSize = this.safeString(filter, 'stepSize');
218
218
  }
219
219
  else if (filterType === 'MIN_NOTIONAL') {
220
220
  minNotional = this.safeNumber(filter, 'minNotional');