MCPcopy Create free account
hub / github.com/ccxt/ccxt / parse_transfer_status

Method parse_transfer_status

python/ccxt/phemex.py:4674–4681  ·  view source on GitHub ↗
(self, status: Str)

Source from the content-addressed store, hash-verified

4672 }
4673
4674 def parse_transfer_status(self, status: Str) -> Str:
4675 statuses = {
4676 '3': 'rejected', # 'Rejected',
4677 '6': 'canceled', # 'Got error and wait for recovery',
4678 '10': 'ok', # 'Success',
4679 '11': 'failed', # 'Failed',
4680 }
4681 return self.safe_string(statuses, status, status)
4682
4683 def fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}):
4684 """

Callers 1

parse_transferMethod · 0.95

Calls 1

safe_stringMethod · 0.80

Tested by

no test coverage detected