Method
get_transactions
(self, page: int = 0, limit: int = 10)
Source from the content-addressed store, hash-verified
| 138 | return Me(data=response) |
| 139 | |
| 140 | async def get_transactions(self, page: int = 0, limit: int = 10): |
| 141 | parameters = f"/me/transactions?page={page}&limit={limit}&order=desc" |
| 142 | method = "GET" |
| 143 | response = await self._request(method=method, parameters=parameters) |
| 144 | return response |
| 145 | |
| 146 | async def get_account_standing(self): |
| 147 | parameters = "/me/account-standing" |
Callers
nothing calls this directly
Tested by
no test coverage detected