(self, params={})
| 2395 | return self.parse_transactions(rows, currency, since, limit, params) |
| 2396 | |
| 2397 | async def get_withdraw_nonce(self, params={}): |
| 2398 | response = await self.v1PrivateGetWithdrawNonce(params) |
| 2399 | # |
| 2400 | # { |
| 2401 | # "success": True, |
| 2402 | # "timestamp": 1702989203989, |
| 2403 | # "data": { |
| 2404 | # "withdraw_nonce": 1 |
| 2405 | # } |
| 2406 | # } |
| 2407 | # |
| 2408 | data = self.safe_dict(response, 'data', {}) |
| 2409 | return self.safe_number(data, 'withdraw_nonce') |
| 2410 | |
| 2411 | def hash_message(self, message): |
| 2412 | return '0x' + self.hash(message, 'keccak', 'hex') |
no test coverage detected