├── .github └── workflows │ ├── build-python.yaml │ ├── cd.yaml │ ├── cd_retry.yaml │ ├── check-python.yaml │ └── pr.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── CONTRIBUTING.MD ├── LICENSE ├── README.md ├── beaker.png ├── beaker ├── __init__.py ├── application.py ├── build_options.py ├── client │ ├── __init__.py │ ├── api_providers.py │ └── application_client.py ├── compilation.py ├── consts.py ├── decorators.py ├── lib │ ├── __init__.py │ ├── inline.py │ ├── iter.py │ ├── math.py │ ├── storage │ │ ├── __init__.py │ │ ├── blob.py │ │ ├── box_list.py │ │ ├── box_mapping.py │ │ ├── global_blob.py │ │ └── local_blob.py │ └── strings.py ├── localnet │ ├── __init__.py │ ├── clients.py │ └── kmd.py ├── logic_signature.py ├── precompile.py ├── py.typed ├── sandbox │ ├── __init__.py │ ├── clients.py │ └── kmd.py └── state │ ├── __init__.py │ ├── _abc.py │ ├── _aggregate.py │ ├── blob.py │ ├── primitive.py │ └── reserved.py ├── config.test ├── distribute.sh ├── docker-compose.yml ├── docs ├── .nojekyll ├── Makefile ├── doctrees │ ├── application.doctree │ ├── application_client.doctree │ ├── boxes.doctree │ ├── decorators.doctree │ ├── environment.pickle │ ├── index.doctree │ ├── lsig.doctree │ ├── migration.doctree │ ├── precompile.doctree │ ├── sandbox.doctree │ ├── state.doctree │ └── usage.doctree ├── html │ ├── .buildinfo │ ├── .nojekyll │ ├── _images │ │ └── beaker.png │ ├── _modules │ │ ├── beaker │ │ │ ├── application.html │ │ │ ├── client │ │ │ │ └── application_client.html │ │ │ ├── decorators.html │ │ │ ├── lib │ │ │ │ └── storage │ │ │ │ │ ├── box_list.html │ │ │ │ │ └── box_mapping.html │ │ │ ├── localnet │ │ │ │ ├── clients.html │ │ │ │ └── kmd.html │ │ │ ├── logic_signature.html │ │ │ ├── precompile.html │ │ │ └── state │ │ │ │ ├── blob.html │ │ │ │ ├── primitive.html │ │ │ │ └── reserved.html │ │ └── index.html │ ├── _sources │ │ ├── application.rst.txt │ │ ├── application_client.rst.txt │ │ ├── boxes.rst.txt │ │ ├── decorators.rst.txt │ │ ├── index.rst.txt │ │ ├── lsig.rst.txt │ │ ├── migration.rst.txt │ │ ├── precompile.rst.txt │ │ ├── sandbox.rst.txt │ │ ├── state.rst.txt │ │ └── usage.rst.txt │ ├── _static │ │ ├── _sphinx_javascript_frameworks_compat.js │ │ ├── basic.css │ │ ├── beaker.png │ │ ├── css │ │ │ ├── badge_only.css │ │ │ ├── custom.css │ │ │ ├── fonts │ │ │ │ ├── Roboto-Slab-Bold.woff │ │ │ │ ├── Roboto-Slab-Bold.woff2 │ │ │ │ ├── Roboto-Slab-Regular.woff │ │ │ │ ├── Roboto-Slab-Regular.woff2 │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ ├── lato-bold-italic.woff │ │ │ │ ├── lato-bold-italic.woff2 │ │ │ │ ├── lato-bold.woff │ │ │ │ ├── lato-bold.woff2 │ │ │ │ ├── lato-normal-italic.woff │ │ │ │ ├── lato-normal-italic.woff2 │ │ │ │ ├── lato-normal.woff │ │ │ │ └── lato-normal.woff2 │ │ │ ├── theme.css │ │ │ └── vyper_dark.css │ │ ├── doctools.js │ │ ├── documentation_options.js │ │ ├── file.png │ │ ├── jquery-3.6.0.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── badge_only.js │ │ │ ├── html5shiv-printshiv.min.js │ │ │ ├── html5shiv.min.js │ │ │ └── theme.js │ │ ├── language_data.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.13.1.js │ │ └── underscore.js │ ├── application.html │ ├── application_client.html │ ├── boxes.html │ ├── decorators.html │ ├── genindex.html │ ├── index.html │ ├── lsig.html │ ├── migration.html │ ├── objects.inv │ ├── precompile.html │ ├── py-modindex.html │ ├── sandbox.html │ ├── search.html │ ├── searchindex.js │ ├── state.html │ └── usage.html ├── index.html └── source │ ├── _static │ └── css │ │ ├── custom.css │ │ └── vyper_dark.css │ ├── application.rst │ ├── application_client.rst │ ├── boxes.rst │ ├── conf.py │ ├── decorators.rst │ ├── index.rst │ ├── lsig.rst │ ├── migration.rst │ ├── precompile.rst │ ├── sandbox.rst │ ├── state.rst │ └── usage.rst ├── examples ├── __init__.py ├── account_storage │ ├── DiskHungry.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── README.md │ ├── __init__.py │ ├── demo.py │ ├── disk_hungry.py │ └── test_demo.py ├── amm │ ├── ConstantProductAMM.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── README.md │ ├── __init__.py │ ├── amm.py │ ├── amm_test.py │ ├── constant_product_amm.ipynb │ └── demo.py ├── blueprint │ ├── ExtendAppWithBlueprints.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── app.py │ ├── demo.py │ └── test_demo.py ├── boxen │ ├── AppMember.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── MembershipClub.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── README.md │ ├── __init__.py │ ├── app_member.py │ ├── demo.py │ ├── membership_club.py │ └── test_demo.py ├── c2c │ ├── C2CMain.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── C2CSub.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── README.md │ ├── __init__.py │ ├── c2c_main.py │ ├── c2c_sub.py │ ├── demo.py │ └── test_demo.py ├── client │ ├── Nicknames.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── README.md │ ├── __init__.py │ ├── demo.py │ ├── nicknames.py │ └── test_demo.py ├── conftest.py ├── golf │ ├── SortedIntegers.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── demo.py │ ├── sorted_integers.py │ └── test_demo.py ├── merkle_tree │ ├── MerkleTree.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── README.md │ ├── __init__.py │ ├── application.py │ ├── demo.py │ ├── merkle.py │ ├── offchain_merkle.py │ └── test_demo.py ├── nested_precompile │ ├── Grandparent.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── demo.py │ ├── smart_contracts │ │ ├── __init__.py │ │ ├── child1.py │ │ ├── child2.py │ │ ├── grandparent.py │ │ └── parent.py │ └── test_demo.py ├── offload_compute │ ├── EthChecker.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── demo.py │ ├── eth_checker.py │ └── test_demo.py ├── opup │ ├── ExpensiveApp.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── contract.py │ ├── demo.py │ ├── op_up.py │ └── test_demo.py ├── rsvp │ ├── EventRSVP.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── demo.py │ ├── rsvp.py │ └── test_demo.py ├── simple │ ├── Calculator.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── CounterApp.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── ExternalExample.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── HelloBeaker.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── calculator.py │ ├── counter.py │ ├── decorators.py │ ├── hello.py │ └── test_demo.py ├── source_mapping │ ├── SourceMapped.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── app.py │ ├── demo.py │ └── test_demo.py ├── state │ ├── StateExample.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── contract.py │ ├── demo.py │ └── test_demo.py ├── structure │ ├── Structer.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── demo.py │ ├── structer.py │ └── test_demo.py ├── templated_lsig │ ├── SigCheckerApp.artifacts │ │ ├── application.json │ │ ├── approval.teal │ │ ├── clear.teal │ │ └── contract.json │ ├── __init__.py │ ├── demo.py │ ├── sig_checker.py │ └── test_demo.py └── wormhole │ ├── OracleDataCache.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json │ ├── __init__.py │ ├── demo.py │ ├── oracle.py │ ├── test_demo.py │ └── wormhole.py ├── mypy.ini ├── poetry.lock ├── poetry.toml ├── pyproject.toml └── tests ├── __init__.py ├── application_test.py ├── application_test ├── AllowEverything.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── EmptyApp.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── EmptyAppVersion7.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── InternalABISubroutine.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── MethodOverload.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── MinimalSpec.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── MultiOptIn.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── OnlyCreate.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── PartialSpec.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── SingleExternal.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── Specd.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json └── TestStateInit.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── authorize_test.py ├── box_list_test.py ├── box_mapping_test.py ├── client ├── __init__.py ├── api_providers_test.py └── application_client_test.py ├── conftest.py ├── decorators_test.py ├── global_blob_test.py ├── helpers ├── __init__.py ├── account_info.py └── unit_testing_helpers.py ├── inline_asm_test.py ├── iter_test.py ├── local_blob_test.py ├── logic_signature_test.py ├── lsig_teal ├── test_different_methods_logic_signature.lsig.teal ├── test_evaluate_logic_signature.lsig.teal ├── test_handler_logic_signature.lsig.teal ├── test_simple_logic_signature.lsig.teal └── test_templated_logic_signature.lsig.teal ├── math_test.py ├── precompile_test.py ├── precompile_test └── DeployInSubroutine.artifacts │ ├── application.json │ ├── approval.teal │ ├── clear.teal │ └── contract.json ├── sandbox ├── __init__.py └── kmd_test.py ├── state_aggregates_test.py ├── state_test.py └── string_test.py /.github/workflows/build-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/.github/workflows/build-python.yaml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/cd_retry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/.github/workflows/cd_retry.yaml -------------------------------------------------------------------------------- /.github/workflows/check-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/.github/workflows/check-python.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/README.md -------------------------------------------------------------------------------- /beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker.png -------------------------------------------------------------------------------- /beaker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/__init__.py -------------------------------------------------------------------------------- /beaker/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/application.py -------------------------------------------------------------------------------- /beaker/build_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/build_options.py -------------------------------------------------------------------------------- /beaker/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/client/__init__.py -------------------------------------------------------------------------------- /beaker/client/api_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/client/api_providers.py -------------------------------------------------------------------------------- /beaker/client/application_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/client/application_client.py -------------------------------------------------------------------------------- /beaker/compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/compilation.py -------------------------------------------------------------------------------- /beaker/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/consts.py -------------------------------------------------------------------------------- /beaker/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/decorators.py -------------------------------------------------------------------------------- /beaker/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beaker/lib/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/inline.py -------------------------------------------------------------------------------- /beaker/lib/iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/iter.py -------------------------------------------------------------------------------- /beaker/lib/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/math.py -------------------------------------------------------------------------------- /beaker/lib/storage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/storage/__init__.py -------------------------------------------------------------------------------- /beaker/lib/storage/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/storage/blob.py -------------------------------------------------------------------------------- /beaker/lib/storage/box_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/storage/box_list.py -------------------------------------------------------------------------------- /beaker/lib/storage/box_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/storage/box_mapping.py -------------------------------------------------------------------------------- /beaker/lib/storage/global_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/storage/global_blob.py -------------------------------------------------------------------------------- /beaker/lib/storage/local_blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/storage/local_blob.py -------------------------------------------------------------------------------- /beaker/lib/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/lib/strings.py -------------------------------------------------------------------------------- /beaker/localnet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/localnet/__init__.py -------------------------------------------------------------------------------- /beaker/localnet/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/localnet/clients.py -------------------------------------------------------------------------------- /beaker/localnet/kmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/localnet/kmd.py -------------------------------------------------------------------------------- /beaker/logic_signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/logic_signature.py -------------------------------------------------------------------------------- /beaker/precompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/precompile.py -------------------------------------------------------------------------------- /beaker/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beaker/sandbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/sandbox/__init__.py -------------------------------------------------------------------------------- /beaker/sandbox/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/sandbox/clients.py -------------------------------------------------------------------------------- /beaker/sandbox/kmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/sandbox/kmd.py -------------------------------------------------------------------------------- /beaker/state/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/state/__init__.py -------------------------------------------------------------------------------- /beaker/state/_abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/state/_abc.py -------------------------------------------------------------------------------- /beaker/state/_aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/state/_aggregate.py -------------------------------------------------------------------------------- /beaker/state/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/state/blob.py -------------------------------------------------------------------------------- /beaker/state/primitive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/state/primitive.py -------------------------------------------------------------------------------- /beaker/state/reserved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/beaker/state/reserved.py -------------------------------------------------------------------------------- /config.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/config.test -------------------------------------------------------------------------------- /distribute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/distribute.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/doctrees/application.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/application.doctree -------------------------------------------------------------------------------- /docs/doctrees/application_client.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/application_client.doctree -------------------------------------------------------------------------------- /docs/doctrees/boxes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/boxes.doctree -------------------------------------------------------------------------------- /docs/doctrees/decorators.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/decorators.doctree -------------------------------------------------------------------------------- /docs/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/doctrees/lsig.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/lsig.doctree -------------------------------------------------------------------------------- /docs/doctrees/migration.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/migration.doctree -------------------------------------------------------------------------------- /docs/doctrees/precompile.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/precompile.doctree -------------------------------------------------------------------------------- /docs/doctrees/sandbox.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/sandbox.doctree -------------------------------------------------------------------------------- /docs/doctrees/state.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/state.doctree -------------------------------------------------------------------------------- /docs/doctrees/usage.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/doctrees/usage.doctree -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/html/_images/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_images/beaker.png -------------------------------------------------------------------------------- /docs/html/_modules/beaker/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/application.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/client/application_client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/client/application_client.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/decorators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/decorators.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/lib/storage/box_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/lib/storage/box_list.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/lib/storage/box_mapping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/lib/storage/box_mapping.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/localnet/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/localnet/clients.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/localnet/kmd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/localnet/kmd.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/logic_signature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/logic_signature.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/precompile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/precompile.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/state/blob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/state/blob.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/state/primitive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/state/primitive.html -------------------------------------------------------------------------------- /docs/html/_modules/beaker/state/reserved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/beaker/state/reserved.html -------------------------------------------------------------------------------- /docs/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_modules/index.html -------------------------------------------------------------------------------- /docs/html/_sources/application.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/application.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/application_client.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/application_client.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/boxes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/boxes.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/decorators.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/decorators.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/lsig.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/lsig.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/migration.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/migration.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/precompile.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/precompile.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/sandbox.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/sandbox.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/state.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/state.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/usage.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_sources/usage.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/_sphinx_javascript_frameworks_compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/_sphinx_javascript_frameworks_compat.js -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/beaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/beaker.png -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | .wy-side-nav-search { 2 | background-color: #2e2c2c; 3 | } -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/Roboto-Slab-Regular.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-bold-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-bold.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-bold.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-normal-italic.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-normal.woff -------------------------------------------------------------------------------- /docs/html/_static/css/fonts/lato-normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/fonts/lato-normal.woff2 -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/css/vyper_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/css/vyper_dark.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/documentation_options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/documentation_options.js -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.6.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/jquery-3.6.0.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/badge_only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/js/badge_only.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv-printshiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/js/html5shiv-printshiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/js/html5shiv.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/language_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/language_data.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.13.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/underscore-1.13.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/application.html -------------------------------------------------------------------------------- /docs/html/application_client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/application_client.html -------------------------------------------------------------------------------- /docs/html/boxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/boxes.html -------------------------------------------------------------------------------- /docs/html/decorators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/decorators.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/lsig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/lsig.html -------------------------------------------------------------------------------- /docs/html/migration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/migration.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/precompile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/precompile.html -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/sandbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/sandbox.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/html/state.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/state.html -------------------------------------------------------------------------------- /docs/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/html/usage.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | .wy-side-nav-search { 2 | background-color: #2e2c2c; 3 | } -------------------------------------------------------------------------------- /docs/source/_static/css/vyper_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/_static/css/vyper_dark.css -------------------------------------------------------------------------------- /docs/source/application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/application.rst -------------------------------------------------------------------------------- /docs/source/application_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/application_client.rst -------------------------------------------------------------------------------- /docs/source/boxes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/boxes.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/decorators.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/decorators.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/lsig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/lsig.rst -------------------------------------------------------------------------------- /docs/source/migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/migration.rst -------------------------------------------------------------------------------- /docs/source/precompile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/precompile.rst -------------------------------------------------------------------------------- /docs/source/sandbox.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/sandbox.rst -------------------------------------------------------------------------------- /docs/source/state.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/state.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/account_storage/DiskHungry.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/account_storage/DiskHungry.artifacts/application.json -------------------------------------------------------------------------------- /examples/account_storage/DiskHungry.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/account_storage/DiskHungry.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/account_storage/DiskHungry.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 8 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/account_storage/DiskHungry.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/account_storage/DiskHungry.artifacts/contract.json -------------------------------------------------------------------------------- /examples/account_storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/account_storage/README.md -------------------------------------------------------------------------------- /examples/account_storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/account_storage/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/account_storage/demo.py -------------------------------------------------------------------------------- /examples/account_storage/disk_hungry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/account_storage/disk_hungry.py -------------------------------------------------------------------------------- /examples/account_storage/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/account_storage/test_demo.py -------------------------------------------------------------------------------- /examples/amm/ConstantProductAMM.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/ConstantProductAMM.artifacts/application.json -------------------------------------------------------------------------------- /examples/amm/ConstantProductAMM.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/ConstantProductAMM.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/amm/ConstantProductAMM.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/amm/ConstantProductAMM.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/ConstantProductAMM.artifacts/contract.json -------------------------------------------------------------------------------- /examples/amm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/README.md -------------------------------------------------------------------------------- /examples/amm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/amm/amm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/amm.py -------------------------------------------------------------------------------- /examples/amm/amm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/amm_test.py -------------------------------------------------------------------------------- /examples/amm/constant_product_amm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/constant_product_amm.ipynb -------------------------------------------------------------------------------- /examples/amm/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/amm/demo.py -------------------------------------------------------------------------------- /examples/blueprint/ExtendAppWithBlueprints.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/blueprint/ExtendAppWithBlueprints.artifacts/application.json -------------------------------------------------------------------------------- /examples/blueprint/ExtendAppWithBlueprints.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/blueprint/ExtendAppWithBlueprints.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/blueprint/ExtendAppWithBlueprints.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/blueprint/ExtendAppWithBlueprints.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/blueprint/ExtendAppWithBlueprints.artifacts/contract.json -------------------------------------------------------------------------------- /examples/blueprint/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/blueprint/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/blueprint/app.py -------------------------------------------------------------------------------- /examples/blueprint/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/blueprint/demo.py -------------------------------------------------------------------------------- /examples/blueprint/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/blueprint/test_demo.py -------------------------------------------------------------------------------- /examples/boxen/AppMember.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/AppMember.artifacts/application.json -------------------------------------------------------------------------------- /examples/boxen/AppMember.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/AppMember.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/boxen/AppMember.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/boxen/AppMember.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/AppMember.artifacts/contract.json -------------------------------------------------------------------------------- /examples/boxen/MembershipClub.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/MembershipClub.artifacts/application.json -------------------------------------------------------------------------------- /examples/boxen/MembershipClub.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/MembershipClub.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/boxen/MembershipClub.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/boxen/MembershipClub.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/MembershipClub.artifacts/contract.json -------------------------------------------------------------------------------- /examples/boxen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/README.md -------------------------------------------------------------------------------- /examples/boxen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/boxen/app_member.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/app_member.py -------------------------------------------------------------------------------- /examples/boxen/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/demo.py -------------------------------------------------------------------------------- /examples/boxen/membership_club.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/membership_club.py -------------------------------------------------------------------------------- /examples/boxen/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/boxen/test_demo.py -------------------------------------------------------------------------------- /examples/c2c/C2CMain.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/C2CMain.artifacts/application.json -------------------------------------------------------------------------------- /examples/c2c/C2CMain.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/C2CMain.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/c2c/C2CMain.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/c2c/C2CMain.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/C2CMain.artifacts/contract.json -------------------------------------------------------------------------------- /examples/c2c/C2CSub.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/C2CSub.artifacts/application.json -------------------------------------------------------------------------------- /examples/c2c/C2CSub.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/C2CSub.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/c2c/C2CSub.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/c2c/C2CSub.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/C2CSub.artifacts/contract.json -------------------------------------------------------------------------------- /examples/c2c/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/README.md -------------------------------------------------------------------------------- /examples/c2c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/c2c/c2c_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/c2c_main.py -------------------------------------------------------------------------------- /examples/c2c/c2c_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/c2c_sub.py -------------------------------------------------------------------------------- /examples/c2c/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/demo.py -------------------------------------------------------------------------------- /examples/c2c/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/c2c/test_demo.py -------------------------------------------------------------------------------- /examples/client/Nicknames.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/client/Nicknames.artifacts/application.json -------------------------------------------------------------------------------- /examples/client/Nicknames.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/client/Nicknames.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/client/Nicknames.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/client/Nicknames.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/client/Nicknames.artifacts/contract.json -------------------------------------------------------------------------------- /examples/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/client/README.md -------------------------------------------------------------------------------- /examples/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/client/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/client/demo.py -------------------------------------------------------------------------------- /examples/client/nicknames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/client/nicknames.py -------------------------------------------------------------------------------- /examples/client/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/client/test_demo.py -------------------------------------------------------------------------------- /examples/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/conftest.py -------------------------------------------------------------------------------- /examples/golf/SortedIntegers.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/golf/SortedIntegers.artifacts/application.json -------------------------------------------------------------------------------- /examples/golf/SortedIntegers.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/golf/SortedIntegers.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/golf/SortedIntegers.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 8 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/golf/SortedIntegers.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/golf/SortedIntegers.artifacts/contract.json -------------------------------------------------------------------------------- /examples/golf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/golf/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/golf/demo.py -------------------------------------------------------------------------------- /examples/golf/sorted_integers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/golf/sorted_integers.py -------------------------------------------------------------------------------- /examples/golf/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/golf/test_demo.py -------------------------------------------------------------------------------- /examples/merkle_tree/MerkleTree.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/MerkleTree.artifacts/application.json -------------------------------------------------------------------------------- /examples/merkle_tree/MerkleTree.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/MerkleTree.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/merkle_tree/MerkleTree.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/merkle_tree/MerkleTree.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/MerkleTree.artifacts/contract.json -------------------------------------------------------------------------------- /examples/merkle_tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/README.md -------------------------------------------------------------------------------- /examples/merkle_tree/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/merkle_tree/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/application.py -------------------------------------------------------------------------------- /examples/merkle_tree/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/demo.py -------------------------------------------------------------------------------- /examples/merkle_tree/merkle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/merkle.py -------------------------------------------------------------------------------- /examples/merkle_tree/offchain_merkle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/offchain_merkle.py -------------------------------------------------------------------------------- /examples/merkle_tree/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/merkle_tree/test_demo.py -------------------------------------------------------------------------------- /examples/nested_precompile/Grandparent.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/Grandparent.artifacts/application.json -------------------------------------------------------------------------------- /examples/nested_precompile/Grandparent.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/Grandparent.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/nested_precompile/Grandparent.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/nested_precompile/Grandparent.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/Grandparent.artifacts/contract.json -------------------------------------------------------------------------------- /examples/nested_precompile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/nested_precompile/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/demo.py -------------------------------------------------------------------------------- /examples/nested_precompile/smart_contracts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/nested_precompile/smart_contracts/child1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/smart_contracts/child1.py -------------------------------------------------------------------------------- /examples/nested_precompile/smart_contracts/child2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/smart_contracts/child2.py -------------------------------------------------------------------------------- /examples/nested_precompile/smart_contracts/grandparent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/smart_contracts/grandparent.py -------------------------------------------------------------------------------- /examples/nested_precompile/smart_contracts/parent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/smart_contracts/parent.py -------------------------------------------------------------------------------- /examples/nested_precompile/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/nested_precompile/test_demo.py -------------------------------------------------------------------------------- /examples/offload_compute/EthChecker.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/offload_compute/EthChecker.artifacts/application.json -------------------------------------------------------------------------------- /examples/offload_compute/EthChecker.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/offload_compute/EthChecker.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/offload_compute/EthChecker.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/offload_compute/EthChecker.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/offload_compute/EthChecker.artifacts/contract.json -------------------------------------------------------------------------------- /examples/offload_compute/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/offload_compute/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/offload_compute/demo.py -------------------------------------------------------------------------------- /examples/offload_compute/eth_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/offload_compute/eth_checker.py -------------------------------------------------------------------------------- /examples/offload_compute/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/offload_compute/test_demo.py -------------------------------------------------------------------------------- /examples/opup/ExpensiveApp.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/opup/ExpensiveApp.artifacts/application.json -------------------------------------------------------------------------------- /examples/opup/ExpensiveApp.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/opup/ExpensiveApp.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/opup/ExpensiveApp.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/opup/ExpensiveApp.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/opup/ExpensiveApp.artifacts/contract.json -------------------------------------------------------------------------------- /examples/opup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/opup/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/opup/contract.py -------------------------------------------------------------------------------- /examples/opup/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/opup/demo.py -------------------------------------------------------------------------------- /examples/opup/op_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/opup/op_up.py -------------------------------------------------------------------------------- /examples/opup/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/opup/test_demo.py -------------------------------------------------------------------------------- /examples/rsvp/EventRSVP.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/rsvp/EventRSVP.artifacts/application.json -------------------------------------------------------------------------------- /examples/rsvp/EventRSVP.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/rsvp/EventRSVP.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/rsvp/EventRSVP.artifacts/clear.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/rsvp/EventRSVP.artifacts/clear.teal -------------------------------------------------------------------------------- /examples/rsvp/EventRSVP.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/rsvp/EventRSVP.artifacts/contract.json -------------------------------------------------------------------------------- /examples/rsvp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/rsvp/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/rsvp/demo.py -------------------------------------------------------------------------------- /examples/rsvp/rsvp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/rsvp/rsvp.py -------------------------------------------------------------------------------- /examples/rsvp/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/rsvp/test_demo.py -------------------------------------------------------------------------------- /examples/simple/Calculator.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/Calculator.artifacts/application.json -------------------------------------------------------------------------------- /examples/simple/Calculator.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/Calculator.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/simple/Calculator.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/simple/Calculator.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/Calculator.artifacts/contract.json -------------------------------------------------------------------------------- /examples/simple/CounterApp.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/CounterApp.artifacts/application.json -------------------------------------------------------------------------------- /examples/simple/CounterApp.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/CounterApp.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/simple/CounterApp.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/simple/CounterApp.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/CounterApp.artifacts/contract.json -------------------------------------------------------------------------------- /examples/simple/ExternalExample.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/ExternalExample.artifacts/application.json -------------------------------------------------------------------------------- /examples/simple/ExternalExample.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/ExternalExample.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/simple/ExternalExample.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/simple/ExternalExample.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/ExternalExample.artifacts/contract.json -------------------------------------------------------------------------------- /examples/simple/HelloBeaker.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/HelloBeaker.artifacts/application.json -------------------------------------------------------------------------------- /examples/simple/HelloBeaker.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/HelloBeaker.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/simple/HelloBeaker.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/simple/HelloBeaker.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/HelloBeaker.artifacts/contract.json -------------------------------------------------------------------------------- /examples/simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/simple/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/calculator.py -------------------------------------------------------------------------------- /examples/simple/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/counter.py -------------------------------------------------------------------------------- /examples/simple/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/decorators.py -------------------------------------------------------------------------------- /examples/simple/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/hello.py -------------------------------------------------------------------------------- /examples/simple/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/simple/test_demo.py -------------------------------------------------------------------------------- /examples/source_mapping/SourceMapped.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/source_mapping/SourceMapped.artifacts/application.json -------------------------------------------------------------------------------- /examples/source_mapping/SourceMapped.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/source_mapping/SourceMapped.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/source_mapping/SourceMapped.artifacts/clear.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/source_mapping/SourceMapped.artifacts/clear.teal -------------------------------------------------------------------------------- /examples/source_mapping/SourceMapped.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/source_mapping/SourceMapped.artifacts/contract.json -------------------------------------------------------------------------------- /examples/source_mapping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/source_mapping/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/source_mapping/app.py -------------------------------------------------------------------------------- /examples/source_mapping/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/source_mapping/demo.py -------------------------------------------------------------------------------- /examples/source_mapping/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/source_mapping/test_demo.py -------------------------------------------------------------------------------- /examples/state/StateExample.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/state/StateExample.artifacts/application.json -------------------------------------------------------------------------------- /examples/state/StateExample.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/state/StateExample.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/state/StateExample.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/state/StateExample.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/state/StateExample.artifacts/contract.json -------------------------------------------------------------------------------- /examples/state/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/state/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/state/contract.py -------------------------------------------------------------------------------- /examples/state/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/state/demo.py -------------------------------------------------------------------------------- /examples/state/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/state/test_demo.py -------------------------------------------------------------------------------- /examples/structure/Structer.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/structure/Structer.artifacts/application.json -------------------------------------------------------------------------------- /examples/structure/Structer.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/structure/Structer.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/structure/Structer.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/structure/Structer.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/structure/Structer.artifacts/contract.json -------------------------------------------------------------------------------- /examples/structure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/structure/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/structure/demo.py -------------------------------------------------------------------------------- /examples/structure/structer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/structure/structer.py -------------------------------------------------------------------------------- /examples/structure/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/structure/test_demo.py -------------------------------------------------------------------------------- /examples/templated_lsig/SigCheckerApp.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/templated_lsig/SigCheckerApp.artifacts/application.json -------------------------------------------------------------------------------- /examples/templated_lsig/SigCheckerApp.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/templated_lsig/SigCheckerApp.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/templated_lsig/SigCheckerApp.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/templated_lsig/SigCheckerApp.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/templated_lsig/SigCheckerApp.artifacts/contract.json -------------------------------------------------------------------------------- /examples/templated_lsig/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/templated_lsig/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/templated_lsig/demo.py -------------------------------------------------------------------------------- /examples/templated_lsig/sig_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/templated_lsig/sig_checker.py -------------------------------------------------------------------------------- /examples/templated_lsig/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/templated_lsig/test_demo.py -------------------------------------------------------------------------------- /examples/wormhole/OracleDataCache.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/wormhole/OracleDataCache.artifacts/application.json -------------------------------------------------------------------------------- /examples/wormhole/OracleDataCache.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/wormhole/OracleDataCache.artifacts/approval.teal -------------------------------------------------------------------------------- /examples/wormhole/OracleDataCache.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /examples/wormhole/OracleDataCache.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/wormhole/OracleDataCache.artifacts/contract.json -------------------------------------------------------------------------------- /examples/wormhole/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/wormhole/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/wormhole/demo.py -------------------------------------------------------------------------------- /examples/wormhole/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/wormhole/oracle.py -------------------------------------------------------------------------------- /examples/wormhole/test_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/wormhole/test_demo.py -------------------------------------------------------------------------------- /examples/wormhole/wormhole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/examples/wormhole/wormhole.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/mypy.ini -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/application_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test.py -------------------------------------------------------------------------------- /tests/application_test/AllowEverything.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/AllowEverything.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/AllowEverything.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/AllowEverything.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/AllowEverything.artifacts/clear.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/AllowEverything.artifacts/clear.teal -------------------------------------------------------------------------------- /tests/application_test/AllowEverything.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/AllowEverything.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/EmptyApp.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/EmptyApp.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/EmptyApp.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/EmptyApp.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/EmptyApp.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/EmptyApp.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/EmptyApp.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/EmptyAppVersion7.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/EmptyAppVersion7.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/EmptyAppVersion7.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/EmptyAppVersion7.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/EmptyAppVersion7.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 7 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/EmptyAppVersion7.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/EmptyAppVersion7.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/InternalABISubroutine.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/InternalABISubroutine.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/InternalABISubroutine.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/InternalABISubroutine.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/InternalABISubroutine.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/InternalABISubroutine.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/InternalABISubroutine.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/MethodOverload.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MethodOverload.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/MethodOverload.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MethodOverload.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/MethodOverload.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/MethodOverload.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MethodOverload.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/MinimalSpec.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MinimalSpec.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/MinimalSpec.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MinimalSpec.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/MinimalSpec.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/MinimalSpec.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MinimalSpec.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/MultiOptIn.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MultiOptIn.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/MultiOptIn.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MultiOptIn.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/MultiOptIn.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/MultiOptIn.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/MultiOptIn.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/OnlyCreate.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/OnlyCreate.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/OnlyCreate.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/OnlyCreate.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/OnlyCreate.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/OnlyCreate.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/OnlyCreate.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/PartialSpec.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/PartialSpec.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/PartialSpec.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/PartialSpec.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/PartialSpec.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/PartialSpec.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/PartialSpec.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/SingleExternal.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/SingleExternal.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/SingleExternal.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/SingleExternal.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/SingleExternal.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/SingleExternal.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/SingleExternal.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/Specd.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/Specd.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/Specd.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/Specd.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/Specd.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/Specd.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/Specd.artifacts/contract.json -------------------------------------------------------------------------------- /tests/application_test/TestStateInit.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/TestStateInit.artifacts/application.json -------------------------------------------------------------------------------- /tests/application_test/TestStateInit.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/TestStateInit.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/application_test/TestStateInit.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/application_test/TestStateInit.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/application_test/TestStateInit.artifacts/contract.json -------------------------------------------------------------------------------- /tests/authorize_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/authorize_test.py -------------------------------------------------------------------------------- /tests/box_list_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/box_list_test.py -------------------------------------------------------------------------------- /tests/box_mapping_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/box_mapping_test.py -------------------------------------------------------------------------------- /tests/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/client/api_providers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/client/api_providers_test.py -------------------------------------------------------------------------------- /tests/client/application_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/client/application_client_test.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/decorators_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/decorators_test.py -------------------------------------------------------------------------------- /tests/global_blob_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/global_blob_test.py -------------------------------------------------------------------------------- /tests/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/helpers/__init__.py -------------------------------------------------------------------------------- /tests/helpers/account_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/helpers/account_info.py -------------------------------------------------------------------------------- /tests/helpers/unit_testing_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/helpers/unit_testing_helpers.py -------------------------------------------------------------------------------- /tests/inline_asm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/inline_asm_test.py -------------------------------------------------------------------------------- /tests/iter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/iter_test.py -------------------------------------------------------------------------------- /tests/local_blob_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/local_blob_test.py -------------------------------------------------------------------------------- /tests/logic_signature_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/logic_signature_test.py -------------------------------------------------------------------------------- /tests/lsig_teal/test_different_methods_logic_signature.lsig.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/lsig_teal/test_different_methods_logic_signature.lsig.teal -------------------------------------------------------------------------------- /tests/lsig_teal/test_evaluate_logic_signature.lsig.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 1 // 1 3 | return -------------------------------------------------------------------------------- /tests/lsig_teal/test_handler_logic_signature.lsig.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/lsig_teal/test_handler_logic_signature.lsig.teal -------------------------------------------------------------------------------- /tests/lsig_teal/test_simple_logic_signature.lsig.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/lsig_teal/test_templated_logic_signature.lsig.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/lsig_teal/test_templated_logic_signature.lsig.teal -------------------------------------------------------------------------------- /tests/math_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/math_test.py -------------------------------------------------------------------------------- /tests/precompile_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/precompile_test.py -------------------------------------------------------------------------------- /tests/precompile_test/DeployInSubroutine.artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/precompile_test/DeployInSubroutine.artifacts/application.json -------------------------------------------------------------------------------- /tests/precompile_test/DeployInSubroutine.artifacts/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/precompile_test/DeployInSubroutine.artifacts/approval.teal -------------------------------------------------------------------------------- /tests/precompile_test/DeployInSubroutine.artifacts/clear.teal: -------------------------------------------------------------------------------- 1 | #pragma version 10 2 | pushint 0 // 0 3 | return -------------------------------------------------------------------------------- /tests/precompile_test/DeployInSubroutine.artifacts/contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/precompile_test/DeployInSubroutine.artifacts/contract.json -------------------------------------------------------------------------------- /tests/sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sandbox/kmd_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/sandbox/kmd_test.py -------------------------------------------------------------------------------- /tests/state_aggregates_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/state_aggregates_test.py -------------------------------------------------------------------------------- /tests/state_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/state_test.py -------------------------------------------------------------------------------- /tests/string_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/beaker/HEAD/tests/string_test.py --------------------------------------------------------------------------------