Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Boxes: Add support for Boxes #348

Merged
merged 35 commits into from
Nov 2, 2022
Merged
Changes from 2 commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
d8b805c
Make StateSchema.undictify() return an object
Jun 2, 2022
31c50a9
Make StateSchema.undictify() return an object (#340)
tzaffi Jun 2, 2022
953e596
Merge branch 'feature/box-storage' of github.com:algorand/py-algorand…
Jun 3, 2022
06ddedf
Merge remote-tracking branch 'origin/develop' into feature/box-storage
Jun 3, 2022
faa13be
CHANGELOG item for `StateSchema.undictify()` (#343)
tzaffi Jun 3, 2022
d056766
Box support for Application calls and Atomic Transaction Composer (#338)
algochoi Jun 15, 2022
bf89b22
Merge branch 'develop' into feature/box-storage
algochoi Jun 15, 2022
6083ec3
Merge branch 'develop' into feature/box-storage
algochoi Jun 21, 2022
7204e50
Format imports
algochoi Jun 21, 2022
9d6e98c
Sort imports
algochoi Jun 21, 2022
0a30487
Format import again...
algochoi Jun 21, 2022
0727844
Add back tests that were lost during merge
algochoi Jun 21, 2022
256dc72
Add Algod endpoint for GetApplicationBoxByName (#346)
algochoi Jun 30, 2022
96f4a27
Box Storage: Add GetApplicationBoxes API and cucumber steps (#359)
algochoi Jul 15, 2022
d9c0dd9
Merge branch 'develop' into feature/box-storage
algochoi Aug 2, 2022
34bc453
Add back sourcemap import in other steps
algochoi Aug 3, 2022
783514f
Merge develop into feature/box-storage (#372)
algochoi Aug 24, 2022
c83d813
Merge in files from develop
algochoi Aug 24, 2022
9ea8676
Enhancement: Merge `develop` to `feature/box-storage` (#379)
ahangsu Sep 2, 2022
c0dd456
Merge branch 'develop' into feature/box-storage
ahangsu Sep 2, 2022
346aeb3
Box support for Indexer endpoints (#366)
algochoi Sep 6, 2022
ef8be90
Enhancement: Boxes Indexer Integration test (#382)
ahangsu Sep 14, 2022
1445548
Merge branch 'develop' into feature/box-storage
ahangsu Sep 20, 2022
3c12ca2
remove unnecessary @applications tag
ahangsu Sep 20, 2022
35a1c43
Refactor dev mode sleeps
algochoi Sep 20, 2022
840b8e9
Update algosdk/v2client/algod.py
algochoi Sep 20, 2022
6f8d51c
Fix sleep method
algochoi Sep 20, 2022
1b8624d
Merge branch 'feature/box-storage' of https://github.com/algorand/py-…
algochoi Sep 20, 2022
98c0d3e
Cast int type
algochoi Sep 20, 2022
9ebde7d
Add back context to step
algochoi Sep 20, 2022
54dd40f
Minor improvements to boxes branch (#388)
jasonpaulos Sep 30, 2022
a6551ba
Merge branch 'develop' into update_again
michaeldiamant Oct 31, 2022
64780f0
Update comments
michaeldiamant Oct 31, 2022
bc03ab2
Merge pull request #393 from michaeldiamant/update_again
michaeldiamant Oct 31, 2022
8e0ccd6
Revert SDK_TESTING_BRANCH to master
michaeldiamant Nov 1, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/steps/application_v2_steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def s512_256_uint64(witness):

# Dev mode helper functions
def wait_for_transaction_processing_to_complete_in_dev_mode(
context=None, millisecond_num=500
millisecond_num=500,
):
"""
wait_for_transaction_processing_to_complete_in_dev_mode is a Dev mode helper method that waits for a transaction to be processed and serves as a rough analog to `context.app_acl.status_after_block(last_round + 2)`.
Expand All @@ -134,8 +134,8 @@ def wait_for_transaction_processing_to_complete_in_dev_mode(
@then(
"I sleep for {millisecond_num} milliseconds for indexer to digest things down."
)
def wait_for_indexer_in_dev_mode():
wait_for_transaction_processing_to_complete_in_dev_mode()
def wait_for_indexer_in_dev_mode(millisecond_num):
ahangsu marked this conversation as resolved.
Show resolved Hide resolved
wait_for_transaction_processing_to_complete_in_dev_mode(millisecond_num)


@step(
Expand Down