(self, params={})
| 2361 | return result |
| 2362 | |
| 2363 | def fetch_extended_account(self, params={}) -> Any: |
| 2364 | account = self.safe_dict(self.options, 'account') |
| 2365 | if account is not None: |
| 2366 | return account |
| 2367 | accountData = self.fetch_account(params) |
| 2368 | account = accountData['info'] |
| 2369 | self.options['account'] = account |
| 2370 | return account |
| 2371 | |
| 2372 | def create_order_settlement_data(self, isBuy: bool, amountString: str, priceString: str, params={}): |
| 2373 | totalFee = self.safe_string(params, 'totalFee') |
no test coverage detected