@@ -274,6 +274,68 @@ def account_addresses_assets(self, stake_address: str, **kwargs):
274274 )
275275
276276
277+ @list_request_wrapper
278+ def account_utxos (self , stake_address : str , ** kwargs ):
279+ """
280+ Obtain information about UTXOs of a specific account.
281+
282+ https://docs.blockfrost.io/#tag/Cardano-Accounts/paths/~1accounts~1{stake_address}~1utxos/get
283+
284+ :param stake_address: Bech32 stake address.
285+ :type stake_address: str
286+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
287+ :type return_type: str
288+ :param gather_pages: Optional. Default: false. Will collect all pages into one return
289+ :type gather_pages: bool
290+ :param count: Optional. Default: 100. The number of results displayed on one page.
291+ :type count: int
292+ :param page: Optional. The page number for listing the results.
293+ :type page: int
294+ :param order: Optional. "asc" or "desc". Default: "asc".
295+ :type order: str
296+ :returns A list of objects.
297+ :rtype [Namespace]
298+ :raises ApiError: If API fails
299+ :raises Exception: If the API response is somehow malformed.
300+ """
301+ return requests .get (
302+ url = f"{ self .url } /accounts/{ stake_address } /utxos" ,
303+ params = self .query_parameters (kwargs ),
304+ headers = self .default_headers
305+ )
306+
307+
308+ @list_request_wrapper
309+ def account_transactions (self , stake_address : str , ** kwargs ):
310+ """
311+ Obtain information about transactions associated with a specific account.
312+
313+ https://docs.blockfrost.io/#tag/Cardano-Accounts/paths/~1accounts~1{stake_address}~1transactions/get
314+
315+ :param stake_address: Bech32 stake address.
316+ :type stake_address: str
317+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
318+ :type return_type: str
319+ :param gather_pages: Optional. Default: false. Will collect all pages into one return
320+ :type gather_pages: bool
321+ :param count: Optional. Default: 100. The number of results displayed on one page.
322+ :type count: int
323+ :param page: Optional. The page number for listing the results.
324+ :type page: int
325+ :param order: Optional. "asc" or "desc". Default: "asc".
326+ :type order: str
327+ :returns A list of objects.
328+ :rtype [Namespace]
329+ :raises ApiError: If API fails
330+ :raises Exception: If the API response is somehow malformed.
331+ """
332+ return requests .get (
333+ url = f"{ self .url } /accounts/{ stake_address } /transactions" ,
334+ params = self .query_parameters (kwargs ),
335+ headers = self .default_headers
336+ )
337+
338+
277339@request_wrapper
278340def account_addresses_total (self , stake_address : str , ** kwargs ):
279341 """
0 commit comments