You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self, application_id: int, limit: int=0, **kwargs: Any
204
198
) ->AlgodResponseType:
205
199
"""
206
-
Given an application ID, return boxes in lexographical order by name. If the results must be truncated, a next-token is supplied to continue the request.
200
+
Given an application ID, return all Box names. No particular ordering is guaranteed. Request fails when client or server-side configured limits prevent returning all Box names.
201
+
207
202
NOTE: box names are returned as base64-encoded strings.
208
203
209
204
Args:
210
205
application_id (int): The ID of the application to look up.
211
206
limit (int, optional): Max number of box names to return.
212
207
If max is not set, or max == 0, returns all box-names up to the maximum configured by the algod server being queried.
213
-
prefix (str, optional): A box name prefix, in the goal app
214
-
call arg form 'encoding:value'. For ints, use the form 'int:1234'. For raw bytes, use the form 'b64:A=='.
215
-
For printable strings, use the form 'str:hello'. For addresses, use the form 'addr:XYZ...'.
216
-
next (str, optional): A box name, in the goal app call arg
217
-
form 'encoding:value'. When provided, the returned boxes begin (lexographically) with the supplied name. Callers may
218
-
implement pagination by reinvoking the endpoint with the token from a previous call's next-token.
219
-
values (bool, optional): If true, box values will be returned.
'we make a GetApplicationBoxes call for applicationID {app_id} with max {max_results} prefix "{prefix:MaybeString}" next "{next:MaybeString}" values "{values:MaybeBool}"'
184
+
"we make a GetApplicationBoxes call for applicationID {app_id} with max {max_results}"
f"Timeout waiting for boxes to persist for application {app_id}. Current round: {current_round}"
1338
-
)
1339
-
1340
-
1341
1270
@then(
1342
1271
'according to indexer, with {limit} being the parameter that limits results, and "{next_page:MaybeString}" being the parameter that sets the next result, the current application should have the following boxes "{box_names:MaybeString}".'
0 commit comments