├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── setup-poetry │ │ └── action.yaml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build-python.yaml │ ├── cd.yaml │ ├── check-docs.yaml │ ├── check-python.yaml │ └── pr.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── make.bat ├── markdown │ ├── autoapi │ │ ├── algokit_utils │ │ │ ├── accounts │ │ │ │ ├── account_manager │ │ │ │ │ └── index.md │ │ │ │ ├── index.md │ │ │ │ └── kmd_account_manager │ │ │ │ │ └── index.md │ │ │ ├── algorand │ │ │ │ └── index.md │ │ │ ├── applications │ │ │ │ ├── abi │ │ │ │ │ └── index.md │ │ │ │ ├── app_client │ │ │ │ │ └── index.md │ │ │ │ ├── app_deployer │ │ │ │ │ └── index.md │ │ │ │ ├── app_factory │ │ │ │ │ └── index.md │ │ │ │ ├── app_manager │ │ │ │ │ └── index.md │ │ │ │ ├── app_spec │ │ │ │ │ ├── arc32 │ │ │ │ │ │ └── index.md │ │ │ │ │ ├── arc56 │ │ │ │ │ │ └── index.md │ │ │ │ │ └── index.md │ │ │ │ ├── enums │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── assets │ │ │ │ ├── asset_manager │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── clients │ │ │ │ ├── client_manager │ │ │ │ │ └── index.md │ │ │ │ ├── dispenser_api_client │ │ │ │ │ └── index.md │ │ │ │ └── index.md │ │ │ ├── config │ │ │ │ └── index.md │ │ │ ├── errors │ │ │ │ ├── index.md │ │ │ │ └── logic_error │ │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── models │ │ │ │ ├── account │ │ │ │ │ └── index.md │ │ │ │ ├── amount │ │ │ │ │ └── index.md │ │ │ │ ├── application │ │ │ │ │ └── index.md │ │ │ │ ├── index.md │ │ │ │ ├── network │ │ │ │ │ └── index.md │ │ │ │ ├── simulate │ │ │ │ │ └── index.md │ │ │ │ ├── state │ │ │ │ │ └── index.md │ │ │ │ └── transaction │ │ │ │ │ └── index.md │ │ │ ├── protocols │ │ │ │ ├── account │ │ │ │ │ └── index.md │ │ │ │ ├── index.md │ │ │ │ └── typed_clients │ │ │ │ │ └── index.md │ │ │ └── transactions │ │ │ │ ├── index.md │ │ │ │ ├── transaction_composer │ │ │ │ └── index.md │ │ │ │ ├── transaction_creator │ │ │ │ └── index.md │ │ │ │ └── transaction_sender │ │ │ │ └── index.md │ │ └── index.md │ ├── capabilities │ │ ├── account.md │ │ ├── algorand-client.md │ │ ├── amount.md │ │ ├── app-client.md │ │ ├── app-deploy.md │ │ ├── app.md │ │ ├── asset.md │ │ ├── client.md │ │ ├── debugging.md │ │ ├── dispenser-client.md │ │ ├── testing.md │ │ ├── transaction-composer.md │ │ ├── transaction.md │ │ ├── transfer.md │ │ └── typed-app-clients.md │ ├── images │ │ └── lifecycle.jpg │ ├── index.md │ └── v3-migration-guide.md └── source │ ├── capabilities │ ├── account.md │ ├── algorand-client.md │ ├── amount.md │ ├── app-client.md │ ├── app-deploy.md │ ├── app.md │ ├── asset.md │ ├── client.md │ ├── debugging.md │ ├── dispenser-client.md │ ├── testing.md │ ├── transaction-composer.md │ ├── transaction.md │ ├── transfer.md │ └── typed-app-clients.md │ ├── conf.py │ ├── images │ └── lifecycle.jpg │ ├── index.md │ └── v3-migration-guide.md ├── example.env ├── legacy_v2_tests ├── __init__.py ├── app_client_test.json ├── app_resolve.json ├── app_v1.json ├── app_v2.json ├── app_v3.json ├── conftest.py ├── test_account.py ├── test_app.py ├── test_app_client.py ├── test_app_client_call.approvals │ ├── test_readonly_call_with_error.approved.txt │ ├── test_readonly_call_with_error_debug_mode_disabled.approved.txt │ ├── test_readonly_call_with_error_with_imported_source_map.approved.txt │ ├── test_readonly_call_with_error_with_new_client_missing_source_map.approved.txt │ ├── test_readonly_call_with_error_with_new_client_provided_source_map.approved.txt │ └── test_readonly_call_with_error_with_new_client_provided_template_values.approved.txt ├── test_app_client_call.py ├── test_app_client_clear_state.py ├── test_app_client_close_out.approvals │ └── test_abi_close_out_args_fails.approved.txt ├── test_app_client_close_out.py ├── test_app_client_create.approvals │ └── test_create_auto_find_ambiguous.approved.txt ├── test_app_client_create.py ├── test_app_client_delete.approvals │ └── test_abi_delete_args_fails.approved.txt ├── test_app_client_delete.py ├── test_app_client_deploy.py ├── test_app_client_opt_in.approvals │ └── test_abi_update_args_fails.approved.txt ├── test_app_client_opt_in.py ├── test_app_client_prepare.py ├── test_app_client_resolve.py ├── test_app_client_signer_sender.py ├── test_app_client_template_values.py ├── test_app_client_update.approvals │ └── test_abi_update_args_fails.approved.txt ├── test_app_client_update.py ├── test_asset.py ├── test_debug_utils.approvals │ ├── test_legacy_build_teal_sourcemaps.approved.txt │ └── test_legacy_build_teal_sourcemaps_without_sources.approved.txt ├── test_debug_utils.py ├── test_deploy.approvals │ ├── test_comment_stripping.approved.txt │ └── test_template_substitution.approved.txt ├── test_deploy.py ├── test_deploy_scenarios.approvals │ ├── test_deploy_app_with_existing_immutable_app_and_on_update_equals_replace_app_succeeds.approved.txt │ ├── test_deploy_app_with_existing_immutable_app_cannot_determine_if_updatable.approved.txt │ ├── test_deploy_app_with_existing_immutable_app_fails.approved.txt │ ├── test_deploy_app_with_existing_permanent_app_and_on_schema_break_equals_replace_app_fails.approved.txt │ ├── test_deploy_app_with_existing_permanent_app_cannot_determine_if_deletable.approved.txt │ ├── test_deploy_app_with_existing_permanent_app_fails.approved.txt │ ├── test_deploy_app_with_existing_permanent_app_on_update_equals_replace_app_fails_and_doesnt_create_2nd_app.approved.txt │ ├── test_deploy_app_with_existing_updatable_app_succeeds.approved.txt │ ├── test_deploy_app_with_no_existing_app_succeeds.approved.txt │ ├── test_deploy_templated_app_with_changing_parameters_succeeds.approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.No-Deletable.No].approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.No-Deletable.Yes].approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.Yes-Deletable.No].approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.Yes-Deletable.Yes].approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.No-Deletable.No].approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.No-Deletable.Yes].approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.Yes-Deletable.No].approved.txt │ ├── test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.Yes-Deletable.Yes].approved.txt │ ├── test_deploy_with_schema_breaking_change_append.approved.txt │ ├── test_deploy_with_update[OnUpdate.Fail-Updatable.No-Deletable.No].approved.txt │ ├── test_deploy_with_update[OnUpdate.Fail-Updatable.No-Deletable.Yes].approved.txt │ ├── test_deploy_with_update[OnUpdate.Fail-Updatable.Yes-Deletable.No].approved.txt │ ├── test_deploy_with_update[OnUpdate.Fail-Updatable.Yes-Deletable.Yes].approved.txt │ ├── test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.No-Deletable.No].approved.txt │ ├── test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.No-Deletable.Yes].approved.txt │ ├── test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.Yes-Deletable.No].approved.txt │ ├── test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.Yes-Deletable.Yes].approved.txt │ ├── test_deploy_with_update[OnUpdate.UpdateApp-Updatable.No-Deletable.No].approved.txt │ ├── test_deploy_with_update[OnUpdate.UpdateApp-Updatable.No-Deletable.Yes].approved.txt │ ├── test_deploy_with_update[OnUpdate.UpdateApp-Updatable.Yes-Deletable.No].approved.txt │ ├── test_deploy_with_update[OnUpdate.UpdateApp-Updatable.Yes-Deletable.Yes].approved.txt │ └── test_deploy_with_update_append.approved.txt ├── test_deploy_scenarios.py ├── test_dispenser_api_client.py ├── test_network_clients.py ├── test_transfer.approvals │ ├── test_transfer_algo_max_fee_fails.approved.txt │ └── test_transfer_asset_max_fee_fails.approved.txt └── test_transfer.py ├── poetry.lock ├── poetry.toml ├── pyproject.toml ├── src └── algokit_utils │ ├── __init__.py │ ├── _debugging.py │ ├── _legacy_v2 │ ├── __init__.py │ ├── _ensure_funded.py │ ├── _transfer.py │ ├── account.py │ ├── application_client.py │ ├── application_specification.py │ ├── asset.py │ ├── common.py │ ├── deploy.py │ ├── logic_error.py │ ├── models.py │ └── network_clients.py │ ├── account.py │ ├── accounts │ ├── __init__.py │ ├── account_manager.py │ └── kmd_account_manager.py │ ├── algorand.py │ ├── application_client.py │ ├── application_specification.py │ ├── applications │ ├── __init__.py │ ├── abi.py │ ├── app_client.py │ ├── app_deployer.py │ ├── app_factory.py │ ├── app_manager.py │ ├── app_spec │ │ ├── __init__.py │ │ ├── arc32.py │ │ └── arc56.py │ └── enums.py │ ├── asset.py │ ├── assets │ ├── __init__.py │ └── asset_manager.py │ ├── beta │ ├── _utils.py │ ├── account_manager.py │ ├── algorand_client.py │ ├── client_manager.py │ └── composer.py │ ├── clients │ ├── __init__.py │ ├── client_manager.py │ └── dispenser_api_client.py │ ├── common.py │ ├── config.py │ ├── deploy.py │ ├── dispenser_api.py │ ├── errors │ ├── __init__.py │ └── logic_error.py │ ├── logic_error.py │ ├── models │ ├── __init__.py │ ├── account.py │ ├── amount.py │ ├── application.py │ ├── network.py │ ├── simulate.py │ ├── state.py │ └── transaction.py │ ├── network_clients.py │ ├── protocols │ ├── __init__.py │ ├── account.py │ └── typed_clients.py │ ├── py.typed │ └── transactions │ ├── __init__.py │ ├── transaction_composer.py │ ├── transaction_creator.py │ └── transaction_sender.py └── tests ├── __init__.py ├── _snapshots └── test_debug_utils.approvals │ ├── test_build_teal_sourcemaps.approved.txt │ └── test_build_teal_sourcemaps_without_sources.approved.txt ├── accounts ├── __init__.py └── test_account_manager.py ├── applications ├── __init__.py ├── _snapshots │ ├── test_app_manager.approvals │ │ ├── test_comment_stripping.approved.txt │ │ └── test_template_substitution.approved.txt │ └── test_arc56.approvals │ │ ├── test_arc32_state_keys_are_not_normalized.approved.txt │ │ ├── test_arc56_from_arc32_instance.approved.txt │ │ ├── test_arc56_from_arc32_json.approved.txt │ │ ├── test_arc56_from_dict.approved.txt │ │ ├── test_arc56_from_json.approved.txt │ │ └── test_arc56_state_keys_are_not_normalized.approved.txt ├── test_app_client.py ├── test_app_factory.py ├── test_app_manager.py └── test_arc56.py ├── artifacts ├── amm_arc56_example │ └── amm.arc56.json ├── bare_create_abi_delete │ ├── app_spec.arc56.json │ └── contract.py ├── delete_abi_with_inner │ ├── application.json │ └── contract.py ├── extra_pages_test │ ├── large.arc56.json │ └── small.arc56.json ├── hello_world │ ├── app_spec.arc32.json │ ├── approval.teal │ └── clear.teal ├── inner-fee │ ├── application.json │ └── contract.py ├── legacy_app_client_test │ └── app_client_test.json ├── legacy_hello_world │ └── app_spec.arc32.json ├── nested_contract │ └── application.json ├── nested_struct │ ├── nested_struct.algo.ts │ └── nested_struct.arc56.json ├── resource-packer │ ├── .gitignore │ ├── ExternalApp.arc32.json │ ├── ExternalAppV8.arc32.json │ ├── InnerBoxApp.arc32.json │ ├── ResourcePackerv8.arc32.json │ ├── ResourcePackerv9.arc32.json │ └── resource-packer.algo.ts ├── state_contract │ ├── State.arc32.json │ └── State.arc56.json ├── testing_app │ ├── app_spec.arc32.json │ └── sources.teal.map.json ├── testing_app_arc56 │ └── app_spec.arc56.json └── testing_app_puya │ ├── app_spec.arc32.json │ └── contract.py ├── assets ├── __init__.py └── test_asset_manager.py ├── clients ├── __init__.py └── algorand_client │ ├── __init__.py │ └── test_transfer.py ├── conftest.py ├── models └── test_algo_amount.py ├── test_debug_utils.py ├── transactions ├── __init__.py ├── test_abi_return.py ├── test_fee_coverage.py ├── test_resource_packing.py ├── test_transaction_composer.py ├── test_transaction_creator.py └── test_transaction_sender.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/setup-poetry/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/actions/setup-poetry/action.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/workflows/build-python.yaml -------------------------------------------------------------------------------- /.github/workflows/cd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/workflows/cd.yaml -------------------------------------------------------------------------------- /.github/workflows/check-docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/workflows/check-docs.yaml -------------------------------------------------------------------------------- /.github/workflows/check-python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/workflows/check-python.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/accounts/account_manager/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/accounts/account_manager/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/accounts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/accounts/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/accounts/kmd_account_manager/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/accounts/kmd_account_manager/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/algorand/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/algorand/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/abi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/abi/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/app_client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/app_client/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/app_deployer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/app_deployer/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/app_factory/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/app_factory/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/app_manager/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/app_manager/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/app_spec/arc32/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/app_spec/arc32/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/app_spec/arc56/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/app_spec/arc56/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/app_spec/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/app_spec/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/enums/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/enums/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/applications/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/applications/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/assets/asset_manager/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/assets/asset_manager/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/assets/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/assets/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/clients/client_manager/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/clients/client_manager/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/clients/dispenser_api_client/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/clients/dispenser_api_client/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/clients/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/clients/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/config/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/errors/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/errors/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/errors/logic_error/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/errors/logic_error/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/account/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/account/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/amount/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/amount/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/application/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/application/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/network/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/network/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/simulate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/simulate/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/state/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/state/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/models/transaction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/models/transaction/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/protocols/account/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/protocols/account/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/protocols/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/protocols/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/protocols/typed_clients/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/protocols/typed_clients/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/transactions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/transactions/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/transactions/transaction_composer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/transactions/transaction_composer/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/transactions/transaction_creator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/transactions/transaction_creator/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/algokit_utils/transactions/transaction_sender/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/algokit_utils/transactions/transaction_sender/index.md -------------------------------------------------------------------------------- /docs/markdown/autoapi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/autoapi/index.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/account.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/algorand-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/algorand-client.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/amount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/amount.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/app-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/app-client.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/app-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/app-deploy.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/app.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/asset.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/client.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/debugging.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/dispenser-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/dispenser-client.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/testing.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/transaction-composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/transaction-composer.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/transaction.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/transfer.md -------------------------------------------------------------------------------- /docs/markdown/capabilities/typed-app-clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/capabilities/typed-app-clients.md -------------------------------------------------------------------------------- /docs/markdown/images/lifecycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/images/lifecycle.jpg -------------------------------------------------------------------------------- /docs/markdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/index.md -------------------------------------------------------------------------------- /docs/markdown/v3-migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/markdown/v3-migration-guide.md -------------------------------------------------------------------------------- /docs/source/capabilities/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/account.md -------------------------------------------------------------------------------- /docs/source/capabilities/algorand-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/algorand-client.md -------------------------------------------------------------------------------- /docs/source/capabilities/amount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/amount.md -------------------------------------------------------------------------------- /docs/source/capabilities/app-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/app-client.md -------------------------------------------------------------------------------- /docs/source/capabilities/app-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/app-deploy.md -------------------------------------------------------------------------------- /docs/source/capabilities/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/app.md -------------------------------------------------------------------------------- /docs/source/capabilities/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/asset.md -------------------------------------------------------------------------------- /docs/source/capabilities/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/client.md -------------------------------------------------------------------------------- /docs/source/capabilities/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/debugging.md -------------------------------------------------------------------------------- /docs/source/capabilities/dispenser-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/dispenser-client.md -------------------------------------------------------------------------------- /docs/source/capabilities/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/testing.md -------------------------------------------------------------------------------- /docs/source/capabilities/transaction-composer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/transaction-composer.md -------------------------------------------------------------------------------- /docs/source/capabilities/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/transaction.md -------------------------------------------------------------------------------- /docs/source/capabilities/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/transfer.md -------------------------------------------------------------------------------- /docs/source/capabilities/typed-app-clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/capabilities/typed-app-clients.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/images/lifecycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/images/lifecycle.jpg -------------------------------------------------------------------------------- /docs/source/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/index.md -------------------------------------------------------------------------------- /docs/source/v3-migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/docs/source/v3-migration-guide.md -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/example.env -------------------------------------------------------------------------------- /legacy_v2_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /legacy_v2_tests/app_client_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/app_client_test.json -------------------------------------------------------------------------------- /legacy_v2_tests/app_resolve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/app_resolve.json -------------------------------------------------------------------------------- /legacy_v2_tests/app_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/app_v1.json -------------------------------------------------------------------------------- /legacy_v2_tests/app_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/app_v2.json -------------------------------------------------------------------------------- /legacy_v2_tests/app_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/app_v3.json -------------------------------------------------------------------------------- /legacy_v2_tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/conftest.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_account.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_debug_mode_disabled.approved.txt: -------------------------------------------------------------------------------- 1 | None -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_imported_source_map.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_imported_source_map.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_new_client_missing_source_map.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_new_client_missing_source_map.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_new_client_provided_source_map.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_new_client_provided_source_map.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_new_client_provided_template_values.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_call.approvals/test_readonly_call_with_error_with_new_client_provided_template_values.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_call.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_clear_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_clear_state.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_close_out.approvals/test_abi_close_out_args_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_close_out.approvals/test_abi_close_out_args_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_close_out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_close_out.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_create.approvals/test_create_auto_find_ambiguous.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_create.approvals/test_create_auto_find_ambiguous.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_create.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_delete.approvals/test_abi_delete_args_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_delete.approvals/test_abi_delete_args_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_delete.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_deploy.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_opt_in.approvals/test_abi_update_args_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_opt_in.approvals/test_abi_update_args_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_opt_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_opt_in.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_prepare.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_resolve.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_signer_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_signer_sender.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_template_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_template_values.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_update.approvals/test_abi_update_args_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_update.approvals/test_abi_update_args_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_app_client_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_app_client_update.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_asset.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_debug_utils.approvals/test_legacy_build_teal_sourcemaps.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_debug_utils.approvals/test_legacy_build_teal_sourcemaps.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_debug_utils.approvals/test_legacy_build_teal_sourcemaps_without_sources.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_debug_utils.approvals/test_legacy_build_teal_sourcemaps_without_sources.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_debug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_debug_utils.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy.approvals/test_comment_stripping.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy.approvals/test_comment_stripping.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy.approvals/test_template_substitution.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy.approvals/test_template_substitution.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_immutable_app_and_on_update_equals_replace_app_succeeds.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_immutable_app_and_on_update_equals_replace_app_succeeds.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_immutable_app_cannot_determine_if_updatable.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_immutable_app_cannot_determine_if_updatable.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_immutable_app_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_immutable_app_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_and_on_schema_break_equals_replace_app_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_and_on_schema_break_equals_replace_app_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_cannot_determine_if_deletable.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_cannot_determine_if_deletable.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_on_update_equals_replace_app_fails_and_doesnt_create_2nd_app.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_permanent_app_on_update_equals_replace_app_fails_and_doesnt_create_2nd_app.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_updatable_app_succeeds.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_existing_updatable_app_succeeds.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_no_existing_app_succeeds.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_app_with_no_existing_app_succeeds.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_templated_app_with_changing_parameters_succeeds.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_templated_app_with_changing_parameters_succeeds.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.No-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.No-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.No-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.No-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.Yes-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.Yes-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.Yes-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.Fail-Updatable.Yes-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.No-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.No-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.No-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.No-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.Yes-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.Yes-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.Yes-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change[OnSchemaBreak.ReplaceApp-Updatable.Yes-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change_append.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_schema_breaking_change_append.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.No-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.No-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.No-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.No-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.Yes-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.Yes-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.Yes-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.Fail-Updatable.Yes-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.No-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.No-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.No-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.No-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.Yes-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.Yes-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.Yes-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.ReplaceApp-Updatable.Yes-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.No-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.No-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.No-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.No-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.Yes-Deletable.No].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.Yes-Deletable.No].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.Yes-Deletable.Yes].approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update[OnUpdate.UpdateApp-Updatable.Yes-Deletable.Yes].approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update_append.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.approvals/test_deploy_with_update_append.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_deploy_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_deploy_scenarios.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_dispenser_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_dispenser_api_client.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_network_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_network_clients.py -------------------------------------------------------------------------------- /legacy_v2_tests/test_transfer.approvals/test_transfer_algo_max_fee_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_transfer.approvals/test_transfer_algo_max_fee_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_transfer.approvals/test_transfer_asset_max_fee_fails.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_transfer.approvals/test_transfer_asset_max_fee_fails.approved.txt -------------------------------------------------------------------------------- /legacy_v2_tests/test_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/legacy_v2_tests/test_transfer.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/algokit_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/_debugging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_debugging.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/_ensure_funded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/_ensure_funded.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/_transfer.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/account.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/application_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/application_client.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/application_specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/application_specification.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/asset.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/common.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/deploy.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/logic_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/logic_error.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/models.py -------------------------------------------------------------------------------- /src/algokit_utils/_legacy_v2/network_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/_legacy_v2/network_clients.py -------------------------------------------------------------------------------- /src/algokit_utils/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/account.py -------------------------------------------------------------------------------- /src/algokit_utils/accounts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/accounts/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/accounts/account_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/accounts/account_manager.py -------------------------------------------------------------------------------- /src/algokit_utils/accounts/kmd_account_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/accounts/kmd_account_manager.py -------------------------------------------------------------------------------- /src/algokit_utils/algorand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/algorand.py -------------------------------------------------------------------------------- /src/algokit_utils/application_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/application_client.py -------------------------------------------------------------------------------- /src/algokit_utils/application_specification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/application_specification.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/abi.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/app_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/app_client.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/app_deployer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/app_deployer.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/app_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/app_factory.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/app_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/app_manager.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/app_spec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/app_spec/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/app_spec/arc32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/app_spec/arc32.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/app_spec/arc56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/app_spec/arc56.py -------------------------------------------------------------------------------- /src/algokit_utils/applications/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/applications/enums.py -------------------------------------------------------------------------------- /src/algokit_utils/asset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/asset.py -------------------------------------------------------------------------------- /src/algokit_utils/assets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/assets/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/assets/asset_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/assets/asset_manager.py -------------------------------------------------------------------------------- /src/algokit_utils/beta/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/beta/_utils.py -------------------------------------------------------------------------------- /src/algokit_utils/beta/account_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/beta/account_manager.py -------------------------------------------------------------------------------- /src/algokit_utils/beta/algorand_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/beta/algorand_client.py -------------------------------------------------------------------------------- /src/algokit_utils/beta/client_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/beta/client_manager.py -------------------------------------------------------------------------------- /src/algokit_utils/beta/composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/beta/composer.py -------------------------------------------------------------------------------- /src/algokit_utils/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/clients/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/clients/client_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/clients/client_manager.py -------------------------------------------------------------------------------- /src/algokit_utils/clients/dispenser_api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/clients/dispenser_api_client.py -------------------------------------------------------------------------------- /src/algokit_utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/common.py -------------------------------------------------------------------------------- /src/algokit_utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/config.py -------------------------------------------------------------------------------- /src/algokit_utils/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/deploy.py -------------------------------------------------------------------------------- /src/algokit_utils/dispenser_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/dispenser_api.py -------------------------------------------------------------------------------- /src/algokit_utils/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/errors/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/errors/logic_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/errors/logic_error.py -------------------------------------------------------------------------------- /src/algokit_utils/logic_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/logic_error.py -------------------------------------------------------------------------------- /src/algokit_utils/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/models/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/account.py -------------------------------------------------------------------------------- /src/algokit_utils/models/amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/amount.py -------------------------------------------------------------------------------- /src/algokit_utils/models/application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/application.py -------------------------------------------------------------------------------- /src/algokit_utils/models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/network.py -------------------------------------------------------------------------------- /src/algokit_utils/models/simulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/simulate.py -------------------------------------------------------------------------------- /src/algokit_utils/models/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/state.py -------------------------------------------------------------------------------- /src/algokit_utils/models/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/models/transaction.py -------------------------------------------------------------------------------- /src/algokit_utils/network_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/network_clients.py -------------------------------------------------------------------------------- /src/algokit_utils/protocols/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/protocols/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/protocols/account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/protocols/account.py -------------------------------------------------------------------------------- /src/algokit_utils/protocols/typed_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/protocols/typed_clients.py -------------------------------------------------------------------------------- /src/algokit_utils/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/algokit_utils/transactions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/transactions/__init__.py -------------------------------------------------------------------------------- /src/algokit_utils/transactions/transaction_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/transactions/transaction_composer.py -------------------------------------------------------------------------------- /src/algokit_utils/transactions/transaction_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/transactions/transaction_creator.py -------------------------------------------------------------------------------- /src/algokit_utils/transactions/transaction_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/src/algokit_utils/transactions/transaction_sender.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_snapshots/test_debug_utils.approvals/test_build_teal_sourcemaps.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/_snapshots/test_debug_utils.approvals/test_build_teal_sourcemaps.approved.txt -------------------------------------------------------------------------------- /tests/_snapshots/test_debug_utils.approvals/test_build_teal_sourcemaps_without_sources.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/_snapshots/test_debug_utils.approvals/test_build_teal_sourcemaps_without_sources.approved.txt -------------------------------------------------------------------------------- /tests/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/accounts/test_account_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/accounts/test_account_manager.py -------------------------------------------------------------------------------- /tests/applications/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_app_manager.approvals/test_comment_stripping.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_app_manager.approvals/test_comment_stripping.approved.txt -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_app_manager.approvals/test_template_substitution.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_app_manager.approvals/test_template_substitution.approved.txt -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_arc56.approvals/test_arc32_state_keys_are_not_normalized.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_arc56.approvals/test_arc32_state_keys_are_not_normalized.approved.txt -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_arc32_instance.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_arc32_instance.approved.txt -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_arc32_json.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_arc32_json.approved.txt -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_dict.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_dict.approved.txt -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_json.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_arc56.approvals/test_arc56_from_json.approved.txt -------------------------------------------------------------------------------- /tests/applications/_snapshots/test_arc56.approvals/test_arc56_state_keys_are_not_normalized.approved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/_snapshots/test_arc56.approvals/test_arc56_state_keys_are_not_normalized.approved.txt -------------------------------------------------------------------------------- /tests/applications/test_app_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/test_app_client.py -------------------------------------------------------------------------------- /tests/applications/test_app_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/test_app_factory.py -------------------------------------------------------------------------------- /tests/applications/test_app_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/test_app_manager.py -------------------------------------------------------------------------------- /tests/applications/test_arc56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/applications/test_arc56.py -------------------------------------------------------------------------------- /tests/artifacts/amm_arc56_example/amm.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/amm_arc56_example/amm.arc56.json -------------------------------------------------------------------------------- /tests/artifacts/bare_create_abi_delete/app_spec.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/bare_create_abi_delete/app_spec.arc56.json -------------------------------------------------------------------------------- /tests/artifacts/bare_create_abi_delete/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/bare_create_abi_delete/contract.py -------------------------------------------------------------------------------- /tests/artifacts/delete_abi_with_inner/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/delete_abi_with_inner/application.json -------------------------------------------------------------------------------- /tests/artifacts/delete_abi_with_inner/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/delete_abi_with_inner/contract.py -------------------------------------------------------------------------------- /tests/artifacts/extra_pages_test/large.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/extra_pages_test/large.arc56.json -------------------------------------------------------------------------------- /tests/artifacts/extra_pages_test/small.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/extra_pages_test/small.arc56.json -------------------------------------------------------------------------------- /tests/artifacts/hello_world/app_spec.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/hello_world/app_spec.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/hello_world/approval.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/hello_world/approval.teal -------------------------------------------------------------------------------- /tests/artifacts/hello_world/clear.teal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/hello_world/clear.teal -------------------------------------------------------------------------------- /tests/artifacts/inner-fee/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/inner-fee/application.json -------------------------------------------------------------------------------- /tests/artifacts/inner-fee/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/inner-fee/contract.py -------------------------------------------------------------------------------- /tests/artifacts/legacy_app_client_test/app_client_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/legacy_app_client_test/app_client_test.json -------------------------------------------------------------------------------- /tests/artifacts/legacy_hello_world/app_spec.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/legacy_hello_world/app_spec.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/nested_contract/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/nested_contract/application.json -------------------------------------------------------------------------------- /tests/artifacts/nested_struct/nested_struct.algo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/nested_struct/nested_struct.algo.ts -------------------------------------------------------------------------------- /tests/artifacts/nested_struct/nested_struct.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/nested_struct/nested_struct.arc56.json -------------------------------------------------------------------------------- /tests/artifacts/resource-packer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/resource-packer/.gitignore -------------------------------------------------------------------------------- /tests/artifacts/resource-packer/ExternalApp.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/resource-packer/ExternalApp.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/resource-packer/ExternalAppV8.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/resource-packer/ExternalAppV8.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/resource-packer/InnerBoxApp.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/resource-packer/InnerBoxApp.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/resource-packer/ResourcePackerv8.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/resource-packer/ResourcePackerv8.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/resource-packer/ResourcePackerv9.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/resource-packer/ResourcePackerv9.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/resource-packer/resource-packer.algo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/resource-packer/resource-packer.algo.ts -------------------------------------------------------------------------------- /tests/artifacts/state_contract/State.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/state_contract/State.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/state_contract/State.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/state_contract/State.arc56.json -------------------------------------------------------------------------------- /tests/artifacts/testing_app/app_spec.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/testing_app/app_spec.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/testing_app/sources.teal.map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/testing_app/sources.teal.map.json -------------------------------------------------------------------------------- /tests/artifacts/testing_app_arc56/app_spec.arc56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/testing_app_arc56/app_spec.arc56.json -------------------------------------------------------------------------------- /tests/artifacts/testing_app_puya/app_spec.arc32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/testing_app_puya/app_spec.arc32.json -------------------------------------------------------------------------------- /tests/artifacts/testing_app_puya/contract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/artifacts/testing_app_puya/contract.py -------------------------------------------------------------------------------- /tests/assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/test_asset_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/assets/test_asset_manager.py -------------------------------------------------------------------------------- /tests/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clients/algorand_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/clients/algorand_client/test_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/clients/algorand_client/test_transfer.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/models/test_algo_amount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/models/test_algo_amount.py -------------------------------------------------------------------------------- /tests/test_debug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/test_debug_utils.py -------------------------------------------------------------------------------- /tests/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transactions/test_abi_return.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/transactions/test_abi_return.py -------------------------------------------------------------------------------- /tests/transactions/test_fee_coverage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/transactions/test_fee_coverage.py -------------------------------------------------------------------------------- /tests/transactions/test_resource_packing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/transactions/test_resource_packing.py -------------------------------------------------------------------------------- /tests/transactions/test_transaction_composer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/transactions/test_transaction_composer.py -------------------------------------------------------------------------------- /tests/transactions/test_transaction_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/transactions/test_transaction_creator.py -------------------------------------------------------------------------------- /tests/transactions/test_transaction_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/transactions/test_transaction_sender.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/algokit-utils-py/HEAD/tests/utils.py --------------------------------------------------------------------------------