(self, data: dict, market: Market = None)
| 3065 | return self.parse_margin_modification(response, market) |
| 3066 | |
| 3067 | def parse_margin_modification(self, data: dict, market: Market = None) -> MarginModification: |
| 3068 | timestamp = self.safe_integer(data, 'predicted_execution_time_ms') |
| 3069 | return { |
| 3070 | 'info': data, |
| 3071 | 'symbol': self.safe_string(market, 'symbol'), |
| 3072 | 'type': None, |
| 3073 | 'marginMode': None, |
| 3074 | 'amount': None, |
| 3075 | 'total': None, |
| 3076 | 'code': 'USDC', |
| 3077 | 'status': None, |
| 3078 | 'timestamp': timestamp, |
| 3079 | 'datetime': self.iso8601(timestamp), |
| 3080 | } |
| 3081 | |
| 3082 | def sign(self, path, api: Any = 'public', method='GET', params={}, headers: dict = None, body: Any = None): |
| 3083 | url = None |
no test coverage detected