gate-io-api 0.0.83__py3-none-any.whl → 0.0.85__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.

Potentially problematic release.


This version of gate-io-api might be problematic. Click here for more details.

gate/ccxt/__init__.py CHANGED
@@ -26,7 +26,7 @@ sys.modules['ccxt'] = ccxt_module
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
29
- __version__ = '4.5.1'
29
+ __version__ = '4.5.3'
30
30
 
31
31
  # ----------------------------------------------------------------------------
32
32
 
@@ -8,7 +8,7 @@ sys.modules['ccxt'] = ccxt_module
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
11
- __version__ = '4.5.1'
11
+ __version__ = '4.5.3'
12
12
 
13
13
  # -----------------------------------------------------------------------------
14
14
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '4.5.1'
5
+ __version__ = '4.5.3'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -708,6 +708,9 @@ class Exchange(BaseExchange):
708
708
  async def un_watch_positions(self, symbols: Strings = None, params={}):
709
709
  raise NotSupported(self.id + ' unWatchPositions() is not supported yet')
710
710
 
711
+ async def un_watch_ticker(self, symbol: str, params={}):
712
+ raise NotSupported(self.id + ' unWatchTicker() is not supported yet')
713
+
711
714
  async def fetch_deposit_addresses(self, codes: Strings = None, params={}):
712
715
  raise NotSupported(self.id + ' fetchDepositAddresses() is not supported yet')
713
716
 
@@ -868,19 +871,19 @@ class Exchange(BaseExchange):
868
871
  async def repay_margin(self, code: str, amount: float, symbol: Str = None, params={}):
869
872
  raise NotSupported(self.id + ' repayMargin is deprecated, please use repayCrossMargin or repayIsolatedMargin instead')
870
873
 
871
- async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
874
+ async def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
872
875
  message = ''
873
876
  if self.has['fetchTrades']:
874
877
  message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
875
878
  raise NotSupported(self.id + ' fetchOHLCV() is not supported yet' + message)
876
879
 
877
- async def fetch_ohlcv_ws(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
880
+ async def fetch_ohlcv_ws(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
878
881
  message = ''
879
882
  if self.has['fetchTradesWs']:
880
883
  message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
881
884
  raise NotSupported(self.id + ' fetchOHLCVWs() is not supported yet. Try using fetchOHLCV instead.' + message)
882
885
 
883
- async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
886
+ async def watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
884
887
  raise NotSupported(self.id + ' watchOHLCV() is not supported yet')
885
888
 
886
889
  async def fetch_web_endpoint(self, method, endpointMethod, returnAsJson, startRegex=None, endRegex=None):
@@ -1850,7 +1853,7 @@ class Exchange(BaseExchange):
1850
1853
  else:
1851
1854
  raise NotSupported(self.id + ' fetchFundingInterval() is not supported yet')
1852
1855
 
1853
- async def fetch_mark_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
1856
+ async def fetch_mark_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
1854
1857
  """
1855
1858
  fetches historical mark price candlestick data containing the open, high, low, and close price of a market
1856
1859
  :param str symbol: unified symbol of the market to fetch OHLCV data for
@@ -1868,7 +1871,7 @@ class Exchange(BaseExchange):
1868
1871
  else:
1869
1872
  raise NotSupported(self.id + ' fetchMarkOHLCV() is not supported yet')
1870
1873
 
1871
- async def fetch_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
1874
+ async def fetch_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
1872
1875
  """
1873
1876
  fetches historical index price candlestick data containing the open, high, low, and close price of a market
1874
1877
  :param str symbol: unified symbol of the market to fetch OHLCV data for
@@ -1886,7 +1889,7 @@ class Exchange(BaseExchange):
1886
1889
  else:
1887
1890
  raise NotSupported(self.id + ' fetchIndexOHLCV() is not supported yet')
1888
1891
 
1889
- async def fetch_premium_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
1892
+ async def fetch_premium_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
1890
1893
  """
1891
1894
  fetches historical premium index price candlestick data containing the open, high, low, and close price of a market
1892
1895
  :param str symbol: unified symbol of the market to fetch OHLCV data for
@@ -72,14 +72,24 @@ class gate(Exchange, ImplicitAPI):
72
72
  },
73
73
  'test': {
74
74
  'public': {
75
- 'futures': 'https://fx-api-testnet.gateio.ws/api/v4',
76
- 'delivery': 'https://fx-api-testnet.gateio.ws/api/v4',
77
- 'options': 'https://fx-api-testnet.gateio.ws/api/v4',
75
+ 'futures': 'https://api-testnet.gateapi.io/api/v4',
76
+ 'delivery': 'https://api-testnet.gateapi.io/api/v4',
77
+ 'options': 'https://api-testnet.gateapi.io/api/v4',
78
+ 'spot': 'https://api-testnet.gateapi.io/api/v4',
79
+ 'wallet': 'https://api-testnet.gateapi.io/api/v4',
80
+ 'margin': 'https://api-testnet.gateapi.io/api/v4',
81
+ 'sub_accounts': 'https://api-testnet.gateapi.io/api/v4',
82
+ 'account': 'https://api-testnet.gateapi.io/api/v4',
78
83
  },
79
84
  'private': {
80
- 'futures': 'https://fx-api-testnet.gateio.ws/api/v4',
81
- 'delivery': 'https://fx-api-testnet.gateio.ws/api/v4',
82
- 'options': 'https://fx-api-testnet.gateio.ws/api/v4',
85
+ 'futures': 'https://api-testnet.gateapi.io/api/v4',
86
+ 'delivery': 'https://api-testnet.gateapi.io/api/v4',
87
+ 'options': 'https://api-testnet.gateapi.io/api/v4',
88
+ 'spot': 'https://api-testnet.gateapi.io/api/v4',
89
+ 'wallet': 'https://api-testnet.gateapi.io/api/v4',
90
+ 'margin': 'https://api-testnet.gateapi.io/api/v4',
91
+ 'sub_accounts': 'https://api-testnet.gateapi.io/api/v4',
92
+ 'account': 'https://api-testnet.gateapi.io/api/v4',
83
93
  },
84
94
  },
85
95
  'referral': {
@@ -1238,15 +1248,15 @@ class gate(Exchange, ImplicitAPI):
1238
1248
  if self.check_required_credentials(False):
1239
1249
  await self.load_unified_status()
1240
1250
  rawPromises = []
1241
- sandboxMode = self.safe_bool(self.options, 'sandboxMode', False)
1242
1251
  fetchMarketsOptions = self.safe_dict(self.options, 'fetchMarkets')
1243
1252
  types = self.safe_list(fetchMarketsOptions, 'types', ['spot', 'swap', 'future', 'option'])
1244
1253
  for i in range(0, len(types)):
1245
1254
  marketType = types[i]
1246
1255
  if marketType == 'spot':
1247
- if not sandboxMode:
1248
- # gate doesn't have a sandbox for spot markets
1249
- rawPromises.append(self.fetch_spot_markets(params))
1256
+ # if not sandboxMode:
1257
+ # gate doesn't have a sandbox for spot markets
1258
+ rawPromises.append(self.fetch_spot_markets(params))
1259
+ # }
1250
1260
  elif marketType == 'swap':
1251
1261
  rawPromises.append(self.fetch_swap_markets(params))
1252
1262
  elif marketType == 'future':
@@ -1372,6 +1382,8 @@ class gate(Exchange, ImplicitAPI):
1372
1382
  async def fetch_swap_markets(self, params={}):
1373
1383
  result = []
1374
1384
  swapSettlementCurrencies = self.get_settlement_currencies('swap', 'fetchMarkets')
1385
+ if self.options['sandboxMode']:
1386
+ swapSettlementCurrencies = ['usdt'] # gate sandbox only has usdt-margined swaps
1375
1387
  for c in range(0, len(swapSettlementCurrencies)):
1376
1388
  settleId = swapSettlementCurrencies[c]
1377
1389
  request: dict = {
@@ -1384,6 +1396,8 @@ class gate(Exchange, ImplicitAPI):
1384
1396
  return result
1385
1397
 
1386
1398
  async def fetch_future_markets(self, params={}):
1399
+ if self.options['sandboxMode']:
1400
+ return [] # right now sandbox does not have inverse swaps
1387
1401
  result = []
1388
1402
  futureSettlementCurrencies = self.get_settlement_currencies('future', 'fetchMarkets')
1389
1403
  for c in range(0, len(futureSettlementCurrencies)):
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '4.5.1'
7
+ __version__ = '4.5.3'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
@@ -2641,6 +2641,9 @@ class Exchange(object):
2641
2641
  def un_watch_positions(self, symbols: Strings = None, params={}):
2642
2642
  raise NotSupported(self.id + ' unWatchPositions() is not supported yet')
2643
2643
 
2644
+ def un_watch_ticker(self, symbol: str, params={}):
2645
+ raise NotSupported(self.id + ' unWatchTicker() is not supported yet')
2646
+
2644
2647
  def fetch_deposit_addresses(self, codes: Strings = None, params={}):
2645
2648
  raise NotSupported(self.id + ' fetchDepositAddresses() is not supported yet')
2646
2649
 
@@ -3948,19 +3951,19 @@ class Exchange(object):
3948
3951
  def repay_margin(self, code: str, amount: float, symbol: Str = None, params={}):
3949
3952
  raise NotSupported(self.id + ' repayMargin is deprecated, please use repayCrossMargin or repayIsolatedMargin instead')
3950
3953
 
3951
- def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
3954
+ def fetch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
3952
3955
  message = ''
3953
3956
  if self.has['fetchTrades']:
3954
3957
  message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
3955
3958
  raise NotSupported(self.id + ' fetchOHLCV() is not supported yet' + message)
3956
3959
 
3957
- def fetch_ohlcv_ws(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
3960
+ def fetch_ohlcv_ws(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
3958
3961
  message = ''
3959
3962
  if self.has['fetchTradesWs']:
3960
3963
  message = '. If you want to build OHLCV candles from trade executions data, visit https://github.com/ccxt/ccxt/tree/master/examples/ and see "build-ohlcv-bars" file'
3961
3964
  raise NotSupported(self.id + ' fetchOHLCVWs() is not supported yet. Try using fetchOHLCV instead.' + message)
3962
3965
 
3963
- def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
3966
+ def watch_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
3964
3967
  raise NotSupported(self.id + ' watchOHLCV() is not supported yet')
3965
3968
 
3966
3969
  def convert_trading_view_to_ohlcv(self, ohlcvs: List[List[float]], timestamp='t', open='o', high='h', low='l', close='c', volume='v', ms=False):
@@ -4763,6 +4766,11 @@ class Exchange(object):
4763
4766
  return market
4764
4767
  return result
4765
4768
 
4769
+ def market_or_null(self, symbol: str):
4770
+ if symbol is None:
4771
+ return None
4772
+ return self.market(symbol)
4773
+
4766
4774
  def check_required_credentials(self, error=True):
4767
4775
  """
4768
4776
  @ignore
@@ -6201,7 +6209,7 @@ class Exchange(object):
6201
6209
  else:
6202
6210
  raise NotSupported(self.id + ' fetchFundingInterval() is not supported yet')
6203
6211
 
6204
- def fetch_mark_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
6212
+ def fetch_mark_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
6205
6213
  """
6206
6214
  fetches historical mark price candlestick data containing the open, high, low, and close price of a market
6207
6215
  :param str symbol: unified symbol of the market to fetch OHLCV data for
@@ -6219,7 +6227,7 @@ class Exchange(object):
6219
6227
  else:
6220
6228
  raise NotSupported(self.id + ' fetchMarkOHLCV() is not supported yet')
6221
6229
 
6222
- def fetch_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
6230
+ def fetch_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
6223
6231
  """
6224
6232
  fetches historical index price candlestick data containing the open, high, low, and close price of a market
6225
6233
  :param str symbol: unified symbol of the market to fetch OHLCV data for
@@ -6237,7 +6245,7 @@ class Exchange(object):
6237
6245
  else:
6238
6246
  raise NotSupported(self.id + ' fetchIndexOHLCV() is not supported yet')
6239
6247
 
6240
- def fetch_premium_index_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}):
6248
+ def fetch_premium_index_ohlcv(self, symbol: str, timeframe: str = '1m', since: Int = None, limit: Int = None, params={}):
6241
6249
  """
6242
6250
  fetches historical premium index price candlestick data containing the open, high, low, and close price of a market
6243
6251
  :param str symbol: unified symbol of the market to fetch OHLCV data for
gate/ccxt/gate.py CHANGED
@@ -71,14 +71,24 @@ class gate(Exchange, ImplicitAPI):
71
71
  },
72
72
  'test': {
73
73
  'public': {
74
- 'futures': 'https://fx-api-testnet.gateio.ws/api/v4',
75
- 'delivery': 'https://fx-api-testnet.gateio.ws/api/v4',
76
- 'options': 'https://fx-api-testnet.gateio.ws/api/v4',
74
+ 'futures': 'https://api-testnet.gateapi.io/api/v4',
75
+ 'delivery': 'https://api-testnet.gateapi.io/api/v4',
76
+ 'options': 'https://api-testnet.gateapi.io/api/v4',
77
+ 'spot': 'https://api-testnet.gateapi.io/api/v4',
78
+ 'wallet': 'https://api-testnet.gateapi.io/api/v4',
79
+ 'margin': 'https://api-testnet.gateapi.io/api/v4',
80
+ 'sub_accounts': 'https://api-testnet.gateapi.io/api/v4',
81
+ 'account': 'https://api-testnet.gateapi.io/api/v4',
77
82
  },
78
83
  'private': {
79
- 'futures': 'https://fx-api-testnet.gateio.ws/api/v4',
80
- 'delivery': 'https://fx-api-testnet.gateio.ws/api/v4',
81
- 'options': 'https://fx-api-testnet.gateio.ws/api/v4',
84
+ 'futures': 'https://api-testnet.gateapi.io/api/v4',
85
+ 'delivery': 'https://api-testnet.gateapi.io/api/v4',
86
+ 'options': 'https://api-testnet.gateapi.io/api/v4',
87
+ 'spot': 'https://api-testnet.gateapi.io/api/v4',
88
+ 'wallet': 'https://api-testnet.gateapi.io/api/v4',
89
+ 'margin': 'https://api-testnet.gateapi.io/api/v4',
90
+ 'sub_accounts': 'https://api-testnet.gateapi.io/api/v4',
91
+ 'account': 'https://api-testnet.gateapi.io/api/v4',
82
92
  },
83
93
  },
84
94
  'referral': {
@@ -1237,15 +1247,15 @@ class gate(Exchange, ImplicitAPI):
1237
1247
  if self.check_required_credentials(False):
1238
1248
  self.load_unified_status()
1239
1249
  rawPromises = []
1240
- sandboxMode = self.safe_bool(self.options, 'sandboxMode', False)
1241
1250
  fetchMarketsOptions = self.safe_dict(self.options, 'fetchMarkets')
1242
1251
  types = self.safe_list(fetchMarketsOptions, 'types', ['spot', 'swap', 'future', 'option'])
1243
1252
  for i in range(0, len(types)):
1244
1253
  marketType = types[i]
1245
1254
  if marketType == 'spot':
1246
- if not sandboxMode:
1247
- # gate doesn't have a sandbox for spot markets
1248
- rawPromises.append(self.fetch_spot_markets(params))
1255
+ # if not sandboxMode:
1256
+ # gate doesn't have a sandbox for spot markets
1257
+ rawPromises.append(self.fetch_spot_markets(params))
1258
+ # }
1249
1259
  elif marketType == 'swap':
1250
1260
  rawPromises.append(self.fetch_swap_markets(params))
1251
1261
  elif marketType == 'future':
@@ -1371,6 +1381,8 @@ class gate(Exchange, ImplicitAPI):
1371
1381
  def fetch_swap_markets(self, params={}):
1372
1382
  result = []
1373
1383
  swapSettlementCurrencies = self.get_settlement_currencies('swap', 'fetchMarkets')
1384
+ if self.options['sandboxMode']:
1385
+ swapSettlementCurrencies = ['usdt'] # gate sandbox only has usdt-margined swaps
1374
1386
  for c in range(0, len(swapSettlementCurrencies)):
1375
1387
  settleId = swapSettlementCurrencies[c]
1376
1388
  request: dict = {
@@ -1383,6 +1395,8 @@ class gate(Exchange, ImplicitAPI):
1383
1395
  return result
1384
1396
 
1385
1397
  def fetch_future_markets(self, params={}):
1398
+ if self.options['sandboxMode']:
1399
+ return [] # right now sandbox does not have inverse swaps
1386
1400
  result = []
1387
1401
  futureSettlementCurrencies = self.get_settlement_currencies('future', 'fetchMarkets')
1388
1402
  for c in range(0, len(futureSettlementCurrencies)):
gate/ccxt/pro/__init__.py CHANGED
@@ -8,7 +8,7 @@ sys.modules['ccxt'] = ccxt_module
8
8
 
9
9
  # ----------------------------------------------------------------------------
10
10
 
11
- __version__ = '4.5.1'
11
+ __version__ = '4.5.3'
12
12
 
13
13
  # ----------------------------------------------------------------------------
14
14
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: gate-io-api
3
- Version: 0.0.83
3
+ Version: 0.0.85
4
4
  Summary: gate crypto exchange api client
5
5
  Project-URL: Homepage, https://github.com/ccxt/ccxt
6
6
  Project-URL: Issues, https://github.com/ccxt/ccxt
@@ -1,11 +1,11 @@
1
1
  gate/__init__.py,sha256=rmRavmagjlyk7Z5zGWWJiY8tfYIPsk04hRzC4SYJOzA,222
2
- gate/ccxt/__init__.py,sha256=g528Eq7wZnoP7lgxxmlwBETsi8s0pv9YYW-FLhs33JE,6126
3
- gate/ccxt/gate.py,sha256=AePkMpd4rKP4GoxClgM4qJ6fCrszgTzwrl_ZmJw6Yig,353292
2
+ gate/ccxt/__init__.py,sha256=gJRMBYzasd3QEyOAe03x4k7JVaHB3dGKH7EjLw00Dbs,6126
3
+ gate/ccxt/gate.py,sha256=zCZJMYkxUE3qsy2q8Mo--ketScdWr7cmMji8hLduaj8,354225
4
4
  gate/ccxt/abstract/gate.py,sha256=MrRMycFEpZKJ6yC7qi0p_qcwZtU9WJi5bBbVllskGoA,45044
5
- gate/ccxt/async_support/__init__.py,sha256=phgbS_JCUEt69ioOLmEGr1VCK5kujnR08leavR0USWE,4859
6
- gate/ccxt/async_support/gate.py,sha256=t5iTFzkJVS14V9Prgoqi6achMXMlKKLZ7TQwP2zphxw,355257
5
+ gate/ccxt/async_support/__init__.py,sha256=tGsh7e2531DDry-3hJMPl3FE2egDTEciipi2uGXjTJQ,4859
6
+ gate/ccxt/async_support/gate.py,sha256=JkMRmZsHy5HesfqJUjJBqWlAydRsuJxJBLoPv2uwUPQ,356190
7
7
  gate/ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
8
- gate/ccxt/async_support/base/exchange.py,sha256=F8astaio1v_0MuDn3pjKByPR6NdwB1lSvDE71auAnA8,121268
8
+ gate/ccxt/async_support/base/exchange.py,sha256=nMqvBDsBpGe7mSUA1j8xK4_CvHvGtrlkeFfjdcnUfPQ,121450
9
9
  gate/ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
10
10
  gate/ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
11
11
  gate/ccxt/async_support/base/ws/cache.py,sha256=xf2VOtfUwloxSlIQ39M1RGZHWQzyS9IGhB5NX6cDcAc,8370
@@ -17,10 +17,10 @@ gate/ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9prod
17
17
  gate/ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
18
18
  gate/ccxt/base/decimal_to_precision.py,sha256=3XI30u9YudHbTA438397u5rkdlXa3atxwZEfUus3C4k,6803
19
19
  gate/ccxt/base/errors.py,sha256=OGhWNvNtRlJOzFx-n1x3ZjTnaPpfWH0Vc0xACS-MeDw,5012
20
- gate/ccxt/base/exchange.py,sha256=uA5L1S85RqI7H9tDUkHTeqUBX_HzGD3tMl4Y7r4y_eU,334337
20
+ gate/ccxt/base/exchange.py,sha256=K-wfT2MGTJMLuqR7ytj7xYunUdJOm3Ve3XRikY_3UKk,334643
21
21
  gate/ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
22
22
  gate/ccxt/base/types.py,sha256=Gvbogh9i7pPH7Z18xesYeDPribqqwq8uKpOv-YODFBs,11505
23
- gate/ccxt/pro/__init__.py,sha256=SFdAX3dnRME2O6E7JpLpdaFMeiG5PctnDQZUsXbJ2is,4173
23
+ gate/ccxt/pro/__init__.py,sha256=-p7sUE9qxc3UEvzYoLOfE8_xXIJS-1I946rACvZgV8A,4173
24
24
  gate/ccxt/pro/gate.py,sha256=Pl64TJO43NcLrqDGs2oU16bPfFqIjOHllJTkpGMuErI,89805
25
25
  gate/ccxt/static_dependencies/README.md,sha256=3TCvhhn09_Cqf9BDDpao1V7EfKHDpQ6k9oWRsLFixpU,18
26
26
  gate/ccxt/static_dependencies/__init__.py,sha256=tzFje8cloqmiIE6kola3EaYC0SnD1izWnri69hzHsSw,168
@@ -281,6 +281,6 @@ gate/ccxt/static_dependencies/toolz/curried/exceptions.py,sha256=gKFOHDIayAWnX2u
281
281
  gate/ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4werSUmJEtSHNY9NSzhseNM9s,525
282
282
  gate/ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
283
283
  gate/ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
284
- gate_io_api-0.0.83.dist-info/METADATA,sha256=eNxSJm9plPVWbLGaxPN2XakjkxtrwvMMBclqYXCIHQY,26827
285
- gate_io_api-0.0.83.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
286
- gate_io_api-0.0.83.dist-info/RECORD,,
284
+ gate_io_api-0.0.85.dist-info/METADATA,sha256=FMuYJIrqaqmB6xhgRA59d-OdtJgAS7VTEVoUESkY6aU,26827
285
+ gate_io_api-0.0.85.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
286
+ gate_io_api-0.0.85.dist-info/RECORD,,