(self, status: Str)
| 2616 | } |
| 2617 | |
| 2618 | def parse_transaction_status(self, status: Str): |
| 2619 | statuses = { |
| 2620 | 'failed': 'failed', |
| 2621 | 'pending': 'pending', |
| 2622 | 'completed': 'ok', |
| 2623 | 'claimable': 'ok', |
| 2624 | } |
| 2625 | return self.safe_string(statuses, status, status) |
| 2626 | |
| 2627 | def withdraw(self, code: str, amount: float, address: str, tag: Str = None, params={}) -> Transaction: |
| 2628 | """ |
no test coverage detected