ccxt-ir 4.9.13 → 4.9.15

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 (99) hide show
  1. package/README.md +4 -4
  2. package/dist/ccxt.browser.min.js +3 -3
  3. package/dist/cjs/ccxt.js +232 -229
  4. package/dist/cjs/package.json +1 -1
  5. package/dist/cjs/src/abantether.js +344 -344
  6. package/dist/cjs/src/abstract/bitbarg.js +1 -1
  7. package/dist/cjs/src/abstract/bitunix.js +1 -1
  8. package/dist/cjs/src/abstract/bydfi.js +1 -1
  9. package/dist/cjs/src/abstract/cafearz.js +1 -1
  10. package/dist/cjs/src/abstract/hamtapay.js +1 -1
  11. package/dist/cjs/src/abstract/kifpoolme.js +1 -1
  12. package/dist/cjs/src/abstract/mazdax.js +1 -1
  13. package/dist/cjs/src/abstract/pingi.js +1 -1
  14. package/dist/cjs/src/abstract/pooleno.js +1 -1
  15. package/dist/cjs/src/abstract/tehran_exchange.js +11 -0
  16. package/dist/cjs/src/afratether.js +347 -347
  17. package/dist/cjs/src/arzplus.js +572 -572
  18. package/dist/cjs/src/bitbarg.js +303 -303
  19. package/dist/cjs/src/bitunix.js +317 -317
  20. package/dist/cjs/src/bydfi.js +425 -425
  21. package/dist/cjs/src/cafearz.js +337 -337
  22. package/dist/cjs/src/hamtapay.js +291 -291
  23. package/dist/cjs/src/kcex.js +326 -326
  24. package/dist/cjs/src/kifpoolme.js +401 -401
  25. package/dist/cjs/src/mazdax.js +525 -526
  26. package/dist/cjs/src/pingi.js +437 -438
  27. package/dist/cjs/src/pooleno.js +338 -338
  28. package/dist/cjs/src/tehran_exchange.js +334 -0
  29. package/dist/cjs/src/tetherland.js +358 -358
  30. package/dist/cjs/src/twox.js +362 -362
  31. package/dist/cjs/src/xt.js +5171 -5171
  32. package/js/ccxt.d.ts +676 -673
  33. package/js/ccxt.js +493 -491
  34. package/js/src/abantether.js +347 -347
  35. package/js/src/abstract/abantether.d.ts +8 -8
  36. package/js/src/abstract/arzplus.d.ts +11 -11
  37. package/js/src/abstract/bitbarg.d.ts +8 -8
  38. package/js/src/abstract/bitbarg.js +5 -5
  39. package/js/src/abstract/bitunix.d.ts +9 -9
  40. package/js/src/abstract/bitunix.js +5 -5
  41. package/js/src/abstract/bydfi.d.ts +11 -11
  42. package/js/src/abstract/bydfi.js +5 -5
  43. package/js/src/abstract/cafearz.d.ts +8 -8
  44. package/js/src/abstract/cafearz.js +5 -5
  45. package/js/src/abstract/hamtapay.d.ts +9 -9
  46. package/js/src/abstract/hamtapay.js +5 -5
  47. package/js/src/abstract/kcex.d.ts +10 -10
  48. package/js/src/abstract/kifpoolme.d.ts +9 -9
  49. package/js/src/abstract/kifpoolme.js +5 -5
  50. package/js/src/abstract/mazdax.d.ts +11 -11
  51. package/js/src/abstract/mazdax.js +5 -5
  52. package/js/src/abstract/pingi.d.ts +9 -9
  53. package/js/src/abstract/pingi.js +5 -5
  54. package/js/src/abstract/pooleno.d.ts +8 -8
  55. package/js/src/abstract/pooleno.js +5 -5
  56. package/js/src/abstract/tehran_exchange.d.ts +9 -0
  57. package/js/src/abstract/tehran_exchange.js +11 -0
  58. package/js/src/afratether.js +350 -350
  59. package/js/src/arzplus.d.ts +26 -26
  60. package/js/src/arzplus.js +575 -575
  61. package/js/src/base/Exchange.d.ts +926 -926
  62. package/js/src/base/types.d.ts +586 -586
  63. package/js/src/bitbarg.d.ts +21 -21
  64. package/js/src/bitbarg.js +306 -306
  65. package/js/src/bitunix.d.ts +21 -21
  66. package/js/src/bitunix.js +320 -320
  67. package/js/src/bydfi.d.ts +23 -23
  68. package/js/src/bydfi.js +428 -428
  69. package/js/src/cafearz.d.ts +21 -21
  70. package/js/src/cafearz.js +340 -340
  71. package/js/src/coinbaseexchange.d.ts +334 -334
  72. package/js/src/hamtapay.d.ts +21 -21
  73. package/js/src/hamtapay.js +294 -294
  74. package/js/src/kcex.d.ts +21 -21
  75. package/js/src/kcex.js +329 -329
  76. package/js/src/kifpoolme.d.ts +23 -23
  77. package/js/src/kifpoolme.js +404 -404
  78. package/js/src/mazdax.d.ts +23 -23
  79. package/js/src/mazdax.js +528 -529
  80. package/js/src/pingi.d.ts +22 -22
  81. package/js/src/pingi.js +440 -441
  82. package/js/src/pooleno.d.ts +21 -21
  83. package/js/src/pooleno.js +341 -341
  84. package/js/src/protobuf/mexc/compiled.d.cts +2 -2
  85. package/js/src/static_dependencies/fflake/browser.d.ts +222 -222
  86. package/js/src/static_dependencies/jsencrypt/lib/asn1js/asn1.d.ts +51 -51
  87. package/js/src/static_dependencies/jsencrypt/lib/jsbn/jsbn.d.ts +101 -101
  88. package/js/src/static_dependencies/qs/formats.d.cts +8 -8
  89. package/js/src/static_dependencies/qs/index.d.cts +4 -4
  90. package/js/src/static_dependencies/qs/parse.d.cts +2 -2
  91. package/js/src/static_dependencies/qs/stringify.d.cts +2 -2
  92. package/js/src/static_dependencies/qs/utils.d.cts +9 -9
  93. package/js/src/static_dependencies/starknet/utils/calldata/parser/index.d.ts +5 -5
  94. package/js/src/tehran_exchange.d.ts +21 -0
  95. package/js/src/tehran_exchange.js +333 -0
  96. package/js/src/tetherland.js +361 -361
  97. package/js/src/twox.js +365 -365
  98. package/js/src/xt.js +5178 -5178
  99. package/package.json +1 -1
@@ -5,309 +5,309 @@ Object.defineProperty(exports, '__esModule', { value: true });
5
5
  var bitbarg$1 = require('./abstract/bitbarg.js');
6
6
 
7
7
  // ----------------------------------------------------------------------------
8
- // ---------------------------------------------------------------------------
9
- /**
10
- * @class bitbarg
11
- * @augments Exchange
12
- * @description Set rateLimit to 1000 if fully verified
13
- */
14
- class bitbarg extends bitbarg$1["default"] {
15
- describe() {
16
- return this.deepExtend(super.describe(), {
17
- 'id': 'bitbarg',
18
- 'name': 'Bitbarg',
19
- 'countries': ['IR'],
20
- 'rateLimit': 1000,
21
- 'version': '1',
22
- 'certified': false,
23
- 'pro': false,
24
- 'has': {
25
- 'CORS': undefined,
26
- 'spot': true,
27
- 'margin': false,
28
- 'swap': false,
29
- 'future': false,
30
- 'option': false,
31
- 'addMargin': false,
32
- 'cancelAllOrders': false,
33
- 'cancelOrder': false,
34
- 'cancelOrders': false,
35
- 'createDepositAddress': false,
36
- 'createOrder': false,
37
- 'createStopLimitOrder': false,
38
- 'createStopMarketOrder': false,
39
- 'createStopOrder': false,
40
- 'editOrder': false,
41
- 'fetchBalance': false,
42
- 'fetchBorrowInterest': false,
43
- 'fetchBorrowRateHistories': false,
44
- 'fetchBorrowRateHistory': false,
45
- 'fetchClosedOrders': false,
46
- 'fetchCrossBorrowRate': false,
47
- 'fetchCrossBorrowRates': false,
48
- 'fetchCurrencies': false,
49
- 'fetchDepositAddress': false,
50
- 'fetchDeposits': false,
51
- 'fetchFundingHistory': false,
52
- 'fetchFundingRate': false,
53
- 'fetchFundingRateHistory': false,
54
- 'fetchFundingRates': false,
55
- 'fetchIndexOHLCV': false,
56
- 'fetchIsolatedBorrowRate': false,
57
- 'fetchIsolatedBorrowRates': false,
58
- 'fetchL2OrderBook': false,
59
- 'fetchL3OrderBook': false,
60
- 'fetchLedger': false,
61
- 'fetchLedgerEntry': false,
62
- 'fetchLeverageTiers': false,
63
- 'fetchMarkets': true,
64
- 'fetchMarkOHLCV': false,
65
- 'fetchMyTrades': false,
66
- 'fetchOHLCV': false,
67
- 'fetchOpenInterestHistory': false,
68
- 'fetchOpenOrders': false,
69
- 'fetchOrder': false,
70
- 'fetchOrderBook': false,
71
- 'fetchOrders': false,
72
- 'fetchOrderTrades': 'emulated',
73
- 'fetchPositions': false,
74
- 'fetchPremiumIndexOHLCV': false,
75
- 'fetchTicker': true,
76
- 'fetchTickers': true,
77
- 'fetchTime': false,
78
- 'fetchTrades': false,
79
- 'fetchTradingFee': false,
80
- 'fetchTradingFees': false,
81
- 'fetchWithdrawals': false,
82
- 'setLeverage': false,
83
- 'setMarginMode': false,
84
- 'transfer': false,
85
- 'withdraw': false,
86
- },
87
- 'comment': 'This comment is optional',
88
- 'urls': {
89
- 'logo': 'https://cdn.arz.digital/cr-odin/img/exchanges/bitbarg/64x64.png',
90
- 'api': {
91
- 'public': 'https://api.bitbarg.com',
92
- },
93
- 'www': 'https://bitbarg.com/',
94
- 'doc': [
95
- 'https://bitbarg.com/',
96
- ],
97
- },
98
- 'api': {
99
- 'public': {
100
- 'get': {
101
- '/api/v1/currencies': 1,
102
- },
103
- },
104
- },
105
- 'fees': {
106
- 'trading': {
107
- 'tierBased': false,
108
- 'percentage': true,
109
- 'maker': this.parseNumber('0.001'),
110
- 'taker': this.parseNumber('0.001'),
111
- },
112
- },
113
- });
114
- }
115
- parseMarket(market) {
116
- // "id": 53,
117
- // "icon": "https://s3.bitbarg.com/currencies/btc.webp",
118
- // "tradeActive": true,
119
- // "faName": "بیت کوین",
120
- // "enName": "Bitcoin",
121
- // "coin": "BTC",
122
- // "path": "bitcoin",
123
- // "price": 112192,
124
- // "quote": "813430226.5004",
125
- // "percent": -5.735,
126
- // "decimal": 8,
127
- // "isFavorite": false,
128
- const baseId = this.safeString(market, 'coin');
129
- const quoteId = 'USDT';
130
- const base = this.safeCurrencyCode(baseId);
131
- const quote = this.safeCurrencyCode(quoteId);
132
- const id = baseId + '/' + quoteId;
133
- return {
134
- 'id': id,
135
- 'symbol': id,
136
- 'base': base,
137
- 'quote': quote,
138
- 'settle': undefined,
139
- 'baseId': baseId,
140
- 'quoteId': quoteId,
141
- 'settleId': undefined,
142
- 'type': 'spot',
143
- 'spot': true,
144
- 'margin': false,
145
- 'swap': false,
146
- 'future': false,
147
- 'option': false,
148
- 'active': true,
149
- 'contract': false,
150
- 'linear': undefined,
151
- 'inverse': undefined,
152
- 'contractSize': undefined,
153
- 'expiry': undefined,
154
- 'expiryDatetime': undefined,
155
- 'strike': undefined,
156
- 'optionType': undefined,
157
- 'precision': {
158
- 'amount': undefined,
159
- 'price': undefined,
160
- },
161
- 'limits': {
162
- 'leverage': {
163
- 'min': undefined,
164
- 'max': undefined,
165
- },
166
- 'amount': {
167
- 'min': undefined,
168
- 'max': undefined,
169
- },
170
- 'price': {
171
- 'min': undefined,
172
- 'max': undefined,
173
- },
174
- 'cost': {
175
- 'min': undefined,
176
- 'max': undefined,
177
- },
178
- },
179
- 'created': undefined,
180
- 'info': market,
181
- };
182
- }
183
- async fetchMarkets(params = {}) {
184
- /**
185
- * @method
186
- * @name bitbarg#fetchMarkets
187
- * @description retrieves data on all markets for bitbarg
188
- * @see https://api.bitbarg.com/api/v1/currencies?pageSize=-1
189
- * @param {object} [params] extra parameters specific to the exchange API endpoint
190
- * @returns {object[]} an array of objects representing market data
191
- */
192
- const request = {
193
- 'pageSize': -1,
194
- };
195
- const response = await this.publicGetApiV1Currencies(this.extend(request, params));
196
- const result = [];
197
- const data = this.safeDict(response, 'result', {});
198
- const items = this.safeList(data, 'items', []);
199
- // Create markets for each currency with IRT quote
200
- for (let i = 0; i < items.length; i++) {
201
- const market = this.parseMarket(items[i]);
202
- result.push(market);
203
- }
204
- return result;
205
- }
206
- async fetchTickers(symbols = undefined, params = {}) {
207
- /**
208
- * @method
209
- * @name bitbarg#fetchTickers
210
- * @description fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
211
- * @see https://api.bitbarg.com/api/v1/currencies?pageSize=-1
212
- * @param {string[]|undefined} symbols unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
213
- * @param {object} [params] extra parameters specific to the exchange API endpoint
214
- * @returns {object} a dictionary of [ticker structures]{@link https://docs.ccxt.com/#/?id=ticker-structure}
215
- */
216
- await this.loadMarkets();
217
- if (symbols !== undefined) {
218
- symbols = this.marketSymbols(symbols);
219
- }
220
- const request = {
221
- 'pageSize': -1,
222
- };
223
- const response = await this.publicGetApiV1Currencies(request);
224
- const data = this.safeDict(response, 'result', {});
225
- const items = this.safeList(data, 'items', []);
226
- const result = {};
227
- for (let i = 0; i < items.length; i++) {
228
- const coinData = items[i];
229
- const baseId = this.safeString(coinData, 'coin');
230
- // Create ticker for USDT quote
231
- const quoteId = 'USDT';
232
- const base = this.safeCurrencyCode(baseId);
233
- const quote = this.safeCurrencyCode(quoteId);
234
- const symbol = base + '/' + quote;
235
- const ticker = this.extend({
236
- 'symbol': symbol,
237
- 'baseId': baseId,
238
- 'quoteId': quoteId,
239
- 'id': baseId + '/' + quoteId,
240
- }, coinData);
241
- result[symbol] = this.parseTicker(ticker);
242
- }
243
- return this.filterByArrayTickers(result, 'symbol', symbols);
244
- }
245
- async fetchTicker(symbol, params = {}) {
246
- /**
247
- * @method
248
- * @name bitbarg#fetchTicker
249
- * @description fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
250
- * @see https://api.bitbarg.com/api/v1/currencies?pageSize=-1
251
- * @param {string} symbol unified symbol of the market to fetch the ticker for
252
- * @param {object} [params] extra parameters specific to the exchange API endpoint
253
- * @returns {object} a [ticker structure]{@link https://docs.ccxt.com/#/?id=ticker-structure}
254
- */
255
- const ticker = await this.fetchTickers([symbol]);
256
- return ticker[symbol];
257
- }
258
- parseTicker(ticker, market = undefined) {
259
- // {
260
- // "id": 1,
261
- // "icon": "https://...",
262
- // "tradeActive": true,
263
- // "faName": "بیت کوین",
264
- // "enName": "Bitcoin",
265
- // "coin": "BTC",
266
- // "path": "bitcoin",
267
- // "price": 110387.56,
268
- // "quote": "57479298399.76",
269
- // "percent": -3.01,
270
- // "decimal": 5,
271
- // "isFavorite": false,
272
- // "chart": [...]
273
- // }
274
- const marketType = 'spot';
275
- const marketId = this.safeString(ticker, 'coin') + '/' + 'USDT';
276
- const symbol = this.safeSymbol(marketId, market, undefined, marketType);
277
- const last = this.safeFloat(ticker, 'price', 0);
278
- const percentage = this.safeFloat(ticker, 'percent', 0);
279
- const baseVolume = this.safeFloat(ticker, 'quote');
280
- return this.safeTicker({
281
- 'symbol': symbol,
282
- 'timestamp': undefined,
283
- 'datetime': undefined,
284
- 'high': undefined,
285
- 'low': undefined,
286
- 'bid': last,
287
- 'bidVolume': undefined,
288
- 'ask': last,
289
- 'askVolume': undefined,
290
- 'vwap': undefined,
291
- 'open': undefined,
292
- 'close': last,
293
- 'last': last,
294
- 'previousClose': undefined,
295
- 'change': undefined,
296
- 'percentage': percentage,
297
- 'average': undefined,
298
- 'baseVolume': baseVolume,
299
- 'quoteVolume': undefined,
300
- 'info': ticker,
301
- }, market);
302
- }
303
- sign(path, api = 'public', method = 'GET', params = {}, headers = undefined, body = undefined) {
304
- let url = this.urls['api']['public'] + path;
305
- if (Object.keys(params).length) {
306
- url += '?' + this.urlencode(params);
307
- }
308
- headers = { 'Content-Type': 'application/json' };
309
- return { 'url': url, 'method': method, 'body': body, 'headers': headers };
310
- }
8
+ // ---------------------------------------------------------------------------
9
+ /**
10
+ * @class bitbarg
11
+ * @augments Exchange
12
+ * @description Set rateLimit to 1000 if fully verified
13
+ */
14
+ class bitbarg extends bitbarg$1["default"] {
15
+ describe() {
16
+ return this.deepExtend(super.describe(), {
17
+ 'id': 'bitbarg',
18
+ 'name': 'Bitbarg',
19
+ 'countries': ['IR'],
20
+ 'rateLimit': 1000,
21
+ 'version': '1',
22
+ 'certified': false,
23
+ 'pro': false,
24
+ 'has': {
25
+ 'CORS': undefined,
26
+ 'spot': true,
27
+ 'margin': false,
28
+ 'swap': false,
29
+ 'future': false,
30
+ 'option': false,
31
+ 'addMargin': false,
32
+ 'cancelAllOrders': false,
33
+ 'cancelOrder': false,
34
+ 'cancelOrders': false,
35
+ 'createDepositAddress': false,
36
+ 'createOrder': false,
37
+ 'createStopLimitOrder': false,
38
+ 'createStopMarketOrder': false,
39
+ 'createStopOrder': false,
40
+ 'editOrder': false,
41
+ 'fetchBalance': false,
42
+ 'fetchBorrowInterest': false,
43
+ 'fetchBorrowRateHistories': false,
44
+ 'fetchBorrowRateHistory': false,
45
+ 'fetchClosedOrders': false,
46
+ 'fetchCrossBorrowRate': false,
47
+ 'fetchCrossBorrowRates': false,
48
+ 'fetchCurrencies': false,
49
+ 'fetchDepositAddress': false,
50
+ 'fetchDeposits': false,
51
+ 'fetchFundingHistory': false,
52
+ 'fetchFundingRate': false,
53
+ 'fetchFundingRateHistory': false,
54
+ 'fetchFundingRates': false,
55
+ 'fetchIndexOHLCV': false,
56
+ 'fetchIsolatedBorrowRate': false,
57
+ 'fetchIsolatedBorrowRates': false,
58
+ 'fetchL2OrderBook': false,
59
+ 'fetchL3OrderBook': false,
60
+ 'fetchLedger': false,
61
+ 'fetchLedgerEntry': false,
62
+ 'fetchLeverageTiers': false,
63
+ 'fetchMarkets': true,
64
+ 'fetchMarkOHLCV': false,
65
+ 'fetchMyTrades': false,
66
+ 'fetchOHLCV': false,
67
+ 'fetchOpenInterestHistory': false,
68
+ 'fetchOpenOrders': false,
69
+ 'fetchOrder': false,
70
+ 'fetchOrderBook': false,
71
+ 'fetchOrders': false,
72
+ 'fetchOrderTrades': 'emulated',
73
+ 'fetchPositions': false,
74
+ 'fetchPremiumIndexOHLCV': false,
75
+ 'fetchTicker': true,
76
+ 'fetchTickers': true,
77
+ 'fetchTime': false,
78
+ 'fetchTrades': false,
79
+ 'fetchTradingFee': false,
80
+ 'fetchTradingFees': false,
81
+ 'fetchWithdrawals': false,
82
+ 'setLeverage': false,
83
+ 'setMarginMode': false,
84
+ 'transfer': false,
85
+ 'withdraw': false,
86
+ },
87
+ 'comment': 'This comment is optional',
88
+ 'urls': {
89
+ 'logo': 'https://cdn.arz.digital/cr-odin/img/exchanges/bitbarg/64x64.png',
90
+ 'api': {
91
+ 'public': 'https://api.bitbarg.com',
92
+ },
93
+ 'www': 'https://bitbarg.com/',
94
+ 'doc': [
95
+ 'https://bitbarg.com/',
96
+ ],
97
+ },
98
+ 'api': {
99
+ 'public': {
100
+ 'get': {
101
+ '/api/v1/currencies': 1,
102
+ },
103
+ },
104
+ },
105
+ 'fees': {
106
+ 'trading': {
107
+ 'tierBased': false,
108
+ 'percentage': true,
109
+ 'maker': this.parseNumber('0.001'),
110
+ 'taker': this.parseNumber('0.001'),
111
+ },
112
+ },
113
+ });
114
+ }
115
+ parseMarket(market) {
116
+ // "id": 53,
117
+ // "icon": "https://s3.bitbarg.com/currencies/btc.webp",
118
+ // "tradeActive": true,
119
+ // "faName": "بیت کوین",
120
+ // "enName": "Bitcoin",
121
+ // "coin": "BTC",
122
+ // "path": "bitcoin",
123
+ // "price": 112192,
124
+ // "quote": "813430226.5004",
125
+ // "percent": -5.735,
126
+ // "decimal": 8,
127
+ // "isFavorite": false,
128
+ const baseId = this.safeString(market, 'coin');
129
+ const quoteId = 'USDT';
130
+ const base = this.safeCurrencyCode(baseId);
131
+ const quote = this.safeCurrencyCode(quoteId);
132
+ const id = baseId + '/' + quoteId;
133
+ return {
134
+ 'id': id,
135
+ 'symbol': id,
136
+ 'base': base,
137
+ 'quote': quote,
138
+ 'settle': undefined,
139
+ 'baseId': baseId,
140
+ 'quoteId': quoteId,
141
+ 'settleId': undefined,
142
+ 'type': 'spot',
143
+ 'spot': true,
144
+ 'margin': false,
145
+ 'swap': false,
146
+ 'future': false,
147
+ 'option': false,
148
+ 'active': true,
149
+ 'contract': false,
150
+ 'linear': undefined,
151
+ 'inverse': undefined,
152
+ 'contractSize': undefined,
153
+ 'expiry': undefined,
154
+ 'expiryDatetime': undefined,
155
+ 'strike': undefined,
156
+ 'optionType': undefined,
157
+ 'precision': {
158
+ 'amount': undefined,
159
+ 'price': undefined,
160
+ },
161
+ 'limits': {
162
+ 'leverage': {
163
+ 'min': undefined,
164
+ 'max': undefined,
165
+ },
166
+ 'amount': {
167
+ 'min': undefined,
168
+ 'max': undefined,
169
+ },
170
+ 'price': {
171
+ 'min': undefined,
172
+ 'max': undefined,
173
+ },
174
+ 'cost': {
175
+ 'min': undefined,
176
+ 'max': undefined,
177
+ },
178
+ },
179
+ 'created': undefined,
180
+ 'info': market,
181
+ };
182
+ }
183
+ async fetchMarkets(params = {}) {
184
+ /**
185
+ * @method
186
+ * @name bitbarg#fetchMarkets
187
+ * @description retrieves data on all markets for bitbarg
188
+ * @see https://api.bitbarg.com/api/v1/currencies?pageSize=-1
189
+ * @param {object} [params] extra parameters specific to the exchange API endpoint
190
+ * @returns {object[]} an array of objects representing market data
191
+ */
192
+ const request = {
193
+ 'pageSize': -1,
194
+ };
195
+ const response = await this.publicGetApiV1Currencies(this.extend(request, params));
196
+ const result = [];
197
+ const data = this.safeDict(response, 'result', {});
198
+ const items = this.safeList(data, 'items', []);
199
+ // Create markets for each currency with IRT quote
200
+ for (let i = 0; i < items.length; i++) {
201
+ const market = this.parseMarket(items[i]);
202
+ result.push(market);
203
+ }
204
+ return result;
205
+ }
206
+ async fetchTickers(symbols = undefined, params = {}) {
207
+ /**
208
+ * @method
209
+ * @name bitbarg#fetchTickers
210
+ * @description fetches price tickers for multiple markets, statistical information calculated over the past 24 hours for each market
211
+ * @see https://api.bitbarg.com/api/v1/currencies?pageSize=-1
212
+ * @param {string[]|undefined} symbols unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
213
+ * @param {object} [params] extra parameters specific to the exchange API endpoint
214
+ * @returns {object} a dictionary of [ticker structures]{@link https://docs.ccxt.com/#/?id=ticker-structure}
215
+ */
216
+ await this.loadMarkets();
217
+ if (symbols !== undefined) {
218
+ symbols = this.marketSymbols(symbols);
219
+ }
220
+ const request = {
221
+ 'pageSize': -1,
222
+ };
223
+ const response = await this.publicGetApiV1Currencies(request);
224
+ const data = this.safeDict(response, 'result', {});
225
+ const items = this.safeList(data, 'items', []);
226
+ const result = {};
227
+ for (let i = 0; i < items.length; i++) {
228
+ const coinData = items[i];
229
+ const baseId = this.safeString(coinData, 'coin');
230
+ // Create ticker for USDT quote
231
+ const quoteId = 'USDT';
232
+ const base = this.safeCurrencyCode(baseId);
233
+ const quote = this.safeCurrencyCode(quoteId);
234
+ const symbol = base + '/' + quote;
235
+ const ticker = this.extend({
236
+ 'symbol': symbol,
237
+ 'baseId': baseId,
238
+ 'quoteId': quoteId,
239
+ 'id': baseId + '/' + quoteId,
240
+ }, coinData);
241
+ result[symbol] = this.parseTicker(ticker);
242
+ }
243
+ return this.filterByArrayTickers(result, 'symbol', symbols);
244
+ }
245
+ async fetchTicker(symbol, params = {}) {
246
+ /**
247
+ * @method
248
+ * @name bitbarg#fetchTicker
249
+ * @description fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
250
+ * @see https://api.bitbarg.com/api/v1/currencies?pageSize=-1
251
+ * @param {string} symbol unified symbol of the market to fetch the ticker for
252
+ * @param {object} [params] extra parameters specific to the exchange API endpoint
253
+ * @returns {object} a [ticker structure]{@link https://docs.ccxt.com/#/?id=ticker-structure}
254
+ */
255
+ const ticker = await this.fetchTickers([symbol]);
256
+ return ticker[symbol];
257
+ }
258
+ parseTicker(ticker, market = undefined) {
259
+ // {
260
+ // "id": 1,
261
+ // "icon": "https://...",
262
+ // "tradeActive": true,
263
+ // "faName": "بیت کوین",
264
+ // "enName": "Bitcoin",
265
+ // "coin": "BTC",
266
+ // "path": "bitcoin",
267
+ // "price": 110387.56,
268
+ // "quote": "57479298399.76",
269
+ // "percent": -3.01,
270
+ // "decimal": 5,
271
+ // "isFavorite": false,
272
+ // "chart": [...]
273
+ // }
274
+ const marketType = 'spot';
275
+ const marketId = this.safeString(ticker, 'coin') + '/' + 'USDT';
276
+ const symbol = this.safeSymbol(marketId, market, undefined, marketType);
277
+ const last = this.safeFloat(ticker, 'price', 0);
278
+ const percentage = this.safeFloat(ticker, 'percent', 0);
279
+ const baseVolume = this.safeFloat(ticker, 'quote');
280
+ return this.safeTicker({
281
+ 'symbol': symbol,
282
+ 'timestamp': undefined,
283
+ 'datetime': undefined,
284
+ 'high': undefined,
285
+ 'low': undefined,
286
+ 'bid': last,
287
+ 'bidVolume': undefined,
288
+ 'ask': last,
289
+ 'askVolume': undefined,
290
+ 'vwap': undefined,
291
+ 'open': undefined,
292
+ 'close': last,
293
+ 'last': last,
294
+ 'previousClose': undefined,
295
+ 'change': undefined,
296
+ 'percentage': percentage,
297
+ 'average': undefined,
298
+ 'baseVolume': baseVolume,
299
+ 'quoteVolume': undefined,
300
+ 'info': ticker,
301
+ }, market);
302
+ }
303
+ sign(path, api = 'public', method = 'GET', params = {}, headers = undefined, body = undefined) {
304
+ let url = this.urls['api']['public'] + path;
305
+ if (Object.keys(params).length) {
306
+ url += '?' + this.urlencode(params);
307
+ }
308
+ headers = { 'Content-Type': 'application/json' };
309
+ return { 'url': url, 'method': method, 'body': body, 'headers': headers };
310
+ }
311
311
  }
312
312
 
313
313
  exports["default"] = bitbarg;