ccxt-ir 4.9.12__py2.py3-none-any.whl → 4.9.14__py2.py3-none-any.whl

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.
ccxt/__init__.py CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  # ----------------------------------------------------------------------------
24
24
 
25
- __version__ = '4.9.12'
25
+ __version__ = '4.9.14'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.9.12'
7
+ __version__ = '4.9.14'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '4.9.12'
5
+ __version__ = '4.9.14'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -22,7 +22,7 @@ class cafearz(Exchange, ImplicitAPI):
22
22
  'pro': False,
23
23
  'has': {
24
24
  'CORS': None,
25
- 'spot': False,
25
+ 'spot': True,
26
26
  'margin': False,
27
27
  'swap': False,
28
28
  'future': False,
@@ -168,7 +168,7 @@ class cafearz(Exchange, ImplicitAPI):
168
168
  'baseId': baseId,
169
169
  'quoteId': quoteId,
170
170
  'settleId': None,
171
- 'type': 'otc',
171
+ 'type': 'spot',
172
172
  'spot': False,
173
173
  'margin': False,
174
174
  'swap': False,
@@ -22,7 +22,7 @@ class mazdax(Exchange, ImplicitAPI):
22
22
  'pro': False,
23
23
  'has': {
24
24
  'CORS': None,
25
- 'spot': False,
25
+ 'spot': True,
26
26
  'margin': False,
27
27
  'swap': False,
28
28
  'future': False,
@@ -78,13 +78,12 @@ class mazdax(Exchange, ImplicitAPI):
78
78
  'fetchTradingFee': False,
79
79
  'fetchTradingFees': False,
80
80
  'fetchWithdrawals': False,
81
- 'otc': True,
82
81
  'setLeverage': False,
83
82
  'setMarginMode': False,
84
83
  'transfer': False,
85
84
  'withdraw': False,
86
85
  },
87
- 'comment': 'Mazdax OTC Exchange',
86
+ 'comment': 'Mazdax SPOT Exchange',
88
87
  'urls': {
89
88
  'logo': 'https://cdn.arz.digital/cr-odin/img/exchanges/mazdax/64x64.png',
90
89
  'api': {
@@ -216,7 +215,7 @@ class mazdax(Exchange, ImplicitAPI):
216
215
  'baseId': baseId,
217
216
  'quoteId': quoteId,
218
217
  'settleId': None,
219
- 'type': 'otc',
218
+ 'type': 'spot',
220
219
  'spot': False,
221
220
  'margin': False,
222
221
  'swap': False,
@@ -369,7 +368,7 @@ class mazdax(Exchange, ImplicitAPI):
369
368
  # "closeTime": 1760351215075,
370
369
  # "count": 348
371
370
  # }
372
- marketType = 'otc'
371
+ marketType = 'spot'
373
372
  marketId = self.safe_string(ticker, 'symbol')
374
373
  symbol = self.safe_symbol(marketId, market, None, marketType)
375
374
  timestamp = self.safe_integer(ticker, 'closeTime')
@@ -78,13 +78,12 @@ class pingi(Exchange, ImplicitAPI):
78
78
  'fetchTradingFee': False,
79
79
  'fetchTradingFees': False,
80
80
  'fetchWithdrawals': False,
81
- 'otc': True,
82
81
  'setLeverage': False,
83
82
  'setMarginMode': False,
84
83
  'transfer': False,
85
84
  'withdraw': False,
86
85
  },
87
- 'comment': 'Pingi OTC Exchange',
86
+ 'comment': 'Pingi SPOT Exchange',
88
87
  'urls': {
89
88
  'logo': 'https://cdn.arz.digital/cr-odin/img/exchanges/pingi/64x64.png',
90
89
  'api': {
@@ -197,7 +196,7 @@ class pingi(Exchange, ImplicitAPI):
197
196
  'baseId': baseId,
198
197
  'quoteId': quoteId,
199
198
  'settleId': None,
200
- 'type': 'otc',
199
+ 'type': 'spot',
201
200
  'spot': False,
202
201
  'margin': False,
203
202
  'swap': False,
@@ -323,7 +322,7 @@ class pingi(Exchange, ImplicitAPI):
323
322
  # "startPrice": "12752332240.0000000000000",
324
323
  # "marketPlatform": 0
325
324
  # }
326
- marketType = 'otc'
325
+ marketType = 'spot'
327
326
  marketId = self.safe_string(ticker, 'market')
328
327
  symbol = self.safe_symbol(marketId, market, '_', marketType)
329
328
  last = self.safe_string(ticker, 'currentPrice')
@@ -312,7 +312,7 @@ class tetherland(Exchange, ImplicitAPI):
312
312
  # 'priority': 18,
313
313
  # },
314
314
  # }
315
- marketType = 'otc'
315
+ marketType = 'spot'
316
316
  marketId = self.safe_string(ticker, 'id')
317
317
  quote = self.safe_string(ticker, 'quote')
318
318
  symbol = self.safe_symbol(marketId, market, None, marketType)
ccxt/base/exchange.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.9.12'
7
+ __version__ = '4.9.14'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
ccxt/cafearz.py CHANGED
@@ -22,7 +22,7 @@ class cafearz(Exchange, ImplicitAPI):
22
22
  'pro': False,
23
23
  'has': {
24
24
  'CORS': None,
25
- 'spot': False,
25
+ 'spot': True,
26
26
  'margin': False,
27
27
  'swap': False,
28
28
  'future': False,
@@ -168,7 +168,7 @@ class cafearz(Exchange, ImplicitAPI):
168
168
  'baseId': baseId,
169
169
  'quoteId': quoteId,
170
170
  'settleId': None,
171
- 'type': 'otc',
171
+ 'type': 'spot',
172
172
  'spot': False,
173
173
  'margin': False,
174
174
  'swap': False,
ccxt/mazdax.py CHANGED
@@ -22,7 +22,7 @@ class mazdax(Exchange, ImplicitAPI):
22
22
  'pro': False,
23
23
  'has': {
24
24
  'CORS': None,
25
- 'spot': False,
25
+ 'spot': True,
26
26
  'margin': False,
27
27
  'swap': False,
28
28
  'future': False,
@@ -78,13 +78,12 @@ class mazdax(Exchange, ImplicitAPI):
78
78
  'fetchTradingFee': False,
79
79
  'fetchTradingFees': False,
80
80
  'fetchWithdrawals': False,
81
- 'otc': True,
82
81
  'setLeverage': False,
83
82
  'setMarginMode': False,
84
83
  'transfer': False,
85
84
  'withdraw': False,
86
85
  },
87
- 'comment': 'Mazdax OTC Exchange',
86
+ 'comment': 'Mazdax SPOT Exchange',
88
87
  'urls': {
89
88
  'logo': 'https://cdn.arz.digital/cr-odin/img/exchanges/mazdax/64x64.png',
90
89
  'api': {
@@ -216,7 +215,7 @@ class mazdax(Exchange, ImplicitAPI):
216
215
  'baseId': baseId,
217
216
  'quoteId': quoteId,
218
217
  'settleId': None,
219
- 'type': 'otc',
218
+ 'type': 'spot',
220
219
  'spot': False,
221
220
  'margin': False,
222
221
  'swap': False,
@@ -369,7 +368,7 @@ class mazdax(Exchange, ImplicitAPI):
369
368
  # "closeTime": 1760351215075,
370
369
  # "count": 348
371
370
  # }
372
- marketType = 'otc'
371
+ marketType = 'spot'
373
372
  marketId = self.safe_string(ticker, 'symbol')
374
373
  symbol = self.safe_symbol(marketId, market, None, marketType)
375
374
  timestamp = self.safe_integer(ticker, 'closeTime')
ccxt/pingi.py CHANGED
@@ -78,13 +78,12 @@ class pingi(Exchange, ImplicitAPI):
78
78
  'fetchTradingFee': False,
79
79
  'fetchTradingFees': False,
80
80
  'fetchWithdrawals': False,
81
- 'otc': True,
82
81
  'setLeverage': False,
83
82
  'setMarginMode': False,
84
83
  'transfer': False,
85
84
  'withdraw': False,
86
85
  },
87
- 'comment': 'Pingi OTC Exchange',
86
+ 'comment': 'Pingi SPOT Exchange',
88
87
  'urls': {
89
88
  'logo': 'https://cdn.arz.digital/cr-odin/img/exchanges/pingi/64x64.png',
90
89
  'api': {
@@ -197,7 +196,7 @@ class pingi(Exchange, ImplicitAPI):
197
196
  'baseId': baseId,
198
197
  'quoteId': quoteId,
199
198
  'settleId': None,
200
- 'type': 'otc',
199
+ 'type': 'spot',
201
200
  'spot': False,
202
201
  'margin': False,
203
202
  'swap': False,
@@ -323,7 +322,7 @@ class pingi(Exchange, ImplicitAPI):
323
322
  # "startPrice": "12752332240.0000000000000",
324
323
  # "marketPlatform": 0
325
324
  # }
326
- marketType = 'otc'
325
+ marketType = 'spot'
327
326
  marketId = self.safe_string(ticker, 'market')
328
327
  symbol = self.safe_symbol(marketId, market, '_', marketType)
329
328
  last = self.safe_string(ticker, 'currentPrice')
ccxt/pro/__init__.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # ----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.9.12'
7
+ __version__ = '4.9.14'
8
8
 
9
9
  # ----------------------------------------------------------------------------
10
10
 
ccxt/tetherland.py CHANGED
@@ -312,7 +312,7 @@ class tetherland(Exchange, ImplicitAPI):
312
312
  # 'priority': 18,
313
313
  # },
314
314
  # }
315
- marketType = 'otc'
315
+ marketType = 'spot'
316
316
  marketId = self.safe_string(ticker, 'id')
317
317
  quote = self.safe_string(ticker, 'quote')
318
318
  symbol = self.safe_symbol(marketId, market, None, marketType)