(self, status: Str)
| 584 | } |
| 585 | |
| 586 | def parse_transfer_status(self, status: Str) -> Str: |
| 587 | statuses = { |
| 588 | 'executed': 'ok', |
| 589 | # what are the other statuses? |
| 590 | } |
| 591 | return self.safe_string(statuses, status, status) |
| 592 | |
| 593 | def sign(self, path, api: Any = 'public', method='GET', params={}, headers: dict = None, body: Str = None): |
| 594 | url = self.urls['api']['rest'] + '/' + self.version + '/' + self.implode_params(path, params) |
no test coverage detected