@@ -18,15 +18,17 @@ class AccountResponse:
18
18
19
19
20
20
@object_request_wrapper (AccountResponse )
21
- def accounts (self , stake_address : str ):
21
+ def accounts (self , stake_address : str , ** kwargs ):
22
22
"""
23
23
Obtain information about a specific networkStake account.
24
24
25
25
https://docs.blockfrost.io/#tag/Cardano-Accounts/paths/~1accounts~1{stake_address}/get
26
26
27
27
:param stake_address: Bech32 stake address.
28
28
:type stake_address: str
29
- :returns: AccountResponse object.
29
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
30
+ :type return_type: str
31
+ :returns AccountResponse object.
30
32
:rtype: AccountResponse
31
33
:raises ApiError: If API fails
32
34
:raises Exception: If the API response is somehow malformed.
@@ -53,6 +55,8 @@ def account_rewards(self, stake_address: str, **kwargs):
53
55
54
56
:param stake_address: Bech32 stake address.
55
57
:type stake_address: str
58
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
59
+ :type return_type: str
56
60
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
57
61
:type gather_pages: bool
58
62
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -61,7 +65,7 @@ def account_rewards(self, stake_address: str, **kwargs):
61
65
:type page: int
62
66
:param order: Optional. "asc" or "desc". Default: "asc".
63
67
:type order: str
64
- :returns: A list of AccountRewardResponse objects.
68
+ :returns A list of AccountRewardResponse objects.
65
69
:rtype: [AccountRewardResponse]
66
70
:raises ApiError: If API fails
67
71
:raises Exception: If the API response is somehow malformed.
@@ -89,6 +93,8 @@ def account_history(self, stake_address: str, **kwargs):
89
93
90
94
:param stake_address: Bech32 stake address.
91
95
:type stake_address: str
96
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
97
+ :type return_type: str
92
98
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
93
99
:type gather_pages: bool
94
100
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -97,8 +103,8 @@ def account_history(self, stake_address: str, **kwargs):
97
103
:type page: int
98
104
:param order: Optional. "asc" or "desc". Default: "asc".
99
105
:type order: str
100
- :returns: A list of AccountHistoryResponse objects.
101
- :rtype: [AccountHistoryResponse]
106
+ :returns A list of AccountHistoryResponse objects.
107
+ :rtype [AccountHistoryResponse]
102
108
:raises ApiError: If API fails
103
109
:raises Exception: If the API response is somehow malformed.
104
110
"""
@@ -126,6 +132,8 @@ def account_delegations(self, stake_address: str, **kwargs):
126
132
127
133
:param stake_address: Bech32 stake address.
128
134
:type stake_address: str
135
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
136
+ :type return_type: str
129
137
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
130
138
:type gather_pages: bool
131
139
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -134,7 +142,7 @@ def account_delegations(self, stake_address: str, **kwargs):
134
142
:type page: int
135
143
:param order: Optional. "asc" or "desc". Default: "asc".
136
144
:type order: str
137
- :returns: A list of AccountDelegationResponse objects.
145
+ :returns A list of AccountDelegationResponse objects.
138
146
:rtype: [AccountDelegationResponse]
139
147
:raises ApiError: If API fails
140
148
:raises Exception: If the API response is somehow malformed.
@@ -161,6 +169,8 @@ def account_registrations(self, stake_address: str, **kwargs):
161
169
162
170
:param stake_address: Bech32 stake address.
163
171
:type stake_address: str
172
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
173
+ :type return_type: str
164
174
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
165
175
:type gather_pages: bool
166
176
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -169,7 +179,7 @@ def account_registrations(self, stake_address: str, **kwargs):
169
179
:type page: int
170
180
:param order: Optional. "asc" or "desc". Default: "asc".
171
181
:type order: str
172
- :returns: A list of AccountRegistrationResponse objects.
182
+ :returns A list of AccountRegistrationResponse objects.
173
183
:rtype: [AccountRegistrationResponse]
174
184
:raises ApiError: If API fails
175
185
:raises Exception: If the API response is somehow malformed.
@@ -196,6 +206,8 @@ def account_withdrawals(self, stake_address: str, **kwargs):
196
206
197
207
:param stake_address: Bech32 stake address.
198
208
:type stake_address: str
209
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
210
+ :type return_type: str
199
211
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
200
212
:type gather_pages: bool
201
213
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -204,7 +216,7 @@ def account_withdrawals(self, stake_address: str, **kwargs):
204
216
:type page: int
205
217
:param order: Optional. "asc" or "desc". Default: "asc".
206
218
:type order: str
207
- :returns: A list of AccountWithdrawalResponse objects.
219
+ :returns A list of AccountWithdrawalResponse objects.
208
220
:rtype: [AccountWithdrawalResponse]
209
221
:raises ApiError: If API fails
210
222
:raises Exception: If the API response is somehow malformed.
@@ -231,6 +243,8 @@ def account_mirs(self, stake_address: str, **kwargs):
231
243
232
244
:param stake_address: Bech32 stake address.
233
245
:type stake_address: str
246
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
247
+ :type return_type: str
234
248
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
235
249
:type gather_pages: bool
236
250
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -239,7 +253,7 @@ def account_mirs(self, stake_address: str, **kwargs):
239
253
:type page: int
240
254
:param order: Optional. "asc" or "desc". Default: "asc".
241
255
:type order: str
242
- :returns: A list of AccountMIRSResponse objects.
256
+ :returns A list of AccountMIRSResponse objects.
243
257
:rtype: [AccountMIRSResponse]
244
258
:raises ApiError: If API fails
245
259
:raises Exception: If the API response is somehow malformed.
@@ -265,6 +279,8 @@ def account_addresses(self, stake_address: str, **kwargs):
265
279
266
280
:param stake_address: Bech32 stake address.
267
281
:type stake_address: str
282
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
283
+ :type return_type: str
268
284
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
269
285
:type gather_pages: bool
270
286
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -273,7 +289,7 @@ def account_addresses(self, stake_address: str, **kwargs):
273
289
:type page: int
274
290
:param order: Optional. "asc" or "desc". Default: "asc".
275
291
:type order: str
276
- :returns: A list of AccountAddressResponse objects.
292
+ :returns A list of AccountAddressResponse objects.
277
293
:rtype: [AccountAddressResponse]
278
294
:raises ApiError: If API fails
279
295
:raises Exception: If the API response is somehow malformed.
@@ -302,6 +318,8 @@ def account_addresses_assets(self, stake_address: str, **kwargs):
302
318
303
319
:param stake_address: Bech32 stake address.
304
320
:type stake_address: str
321
+ :param return_type: Optional. "object", "json" or "pandas". Default: "object".
322
+ :type return_type: str
305
323
:param gather_pages: Optional. Default: 100. Will collect all pages into one return
306
324
:type gather_pages: bool
307
325
:param count: Optional. Default: 1. The number of results displayed on one page.
@@ -310,7 +328,7 @@ def account_addresses_assets(self, stake_address: str, **kwargs):
310
328
:type page: int
311
329
:param order: Optional. "asc" or "desc". Default: "asc".
312
330
:type order: str
313
- :returns: A list of AccountAddressesAssetResponse objects.
331
+ :returns A list of AccountAddressesAssetResponse objects.
314
332
:rtype: [AccountAddressesAssetResponse]
315
333
:raises ApiError: If API fails
316
334
:raises Exception: If the API response is somehow malformed.
0 commit comments