Method
get_pending_trades
(
self, limit: int = 500, page: int = 0
)
Source from the content-addressed store, hash-verified
| 157 | return response |
| 158 | |
| 159 | async def get_pending_trades( |
| 160 | self, limit: int = 500, page: int = 0 |
| 161 | ) -> Optional[dict]: |
| 162 | parameters = f"/me/trades?state=pending&limit={limit}&page={page}" |
| 163 | method = "GET" |
| 164 | |
| 165 | response = await self._request(method=method, parameters=parameters) |
| 166 | return response |
| 167 | |
| 168 | async def get_similar( |
| 169 | self, *, listing_id: int, raw_response: bool = False |
Callers
nothing calls this directly
Tested by
no test coverage detected