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

Method parse_transaction_status

python/ccxt/bitget.py:3029–3037  ·  view source on GitHub ↗
(self, status: Str)

Source from the content-addressed store, hash-verified

3027 }
3028
3029 def parse_transaction_status(self, status: Str):
3030 statuses = {
3031 'success': 'ok',
3032 'Pending': 'pending',
3033 'pending_review': 'pending',
3034 'pending_review_fail': 'failed',
3035 'reject': 'failed',
3036 }
3037 return self.safe_string(statuses, status, status)
3038
3039 def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
3040 """

Callers 1

parse_transactionMethod · 0.95

Calls 1

safe_stringMethod · 0.80

Tested by

no test coverage detected