@goplausible/algorand-mcp 3.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (924) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +692 -0
  3. package/dist/algorand-client.d.ts +2 -0
  4. package/dist/algorand-client.js +2 -0
  5. package/dist/env.d.ts +1 -0
  6. package/dist/env.js +4 -0
  7. package/dist/index.d.ts +2 -0
  8. package/dist/index.js +158 -0
  9. package/dist/networkConfig.d.ts +5 -0
  10. package/dist/networkConfig.js +57 -0
  11. package/dist/resources/index.d.ts +16 -0
  12. package/dist/resources/index.js +37 -0
  13. package/dist/resources/knowledge/index.d.ts +72 -0
  14. package/dist/resources/knowledge/index.js +180 -0
  15. package/dist/resources/knowledge/taxonomy/algokit-cli:README.md +272 -0
  16. package/dist/resources/knowledge/taxonomy/algokit:README.md +70 -0
  17. package/dist/resources/knowledge/taxonomy/algokit:cli:algokit.md +52 -0
  18. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2022-11-14_sandbox-approach.md +94 -0
  19. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2022-11-22_beaker-testing-strategy.md +95 -0
  20. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2023-01-11_beaker_productionisation_review.md +412 -0
  21. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2023-01-11_brew_install.md +86 -0
  22. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2023-01-12_smart-contract-deployment.md +375 -0
  23. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2023-06-06_frontend-templates.md +164 -0
  24. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2023-07-19_advanced_generate_command.md +203 -0
  25. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2024-01-13_native_binaries.md +163 -0
  26. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2024-01-23_init-wizard-v2.md +211 -0
  27. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2024-01-31_binary_distribution.md +255 -0
  28. package/dist/resources/knowledge/taxonomy/algokit:cli:architecture-decisions:2024-03-06_local_dev_ui_packaging.md +143 -0
  29. package/dist/resources/knowledge/taxonomy/algokit:cli:articles:output_stability.md +8 -0
  30. package/dist/resources/knowledge/taxonomy/algokit:cli:cli:index.md +1517 -0
  31. package/dist/resources/knowledge/taxonomy/algokit:cli:features:compile.md +98 -0
  32. package/dist/resources/knowledge/taxonomy/algokit:cli:features:completions.md +56 -0
  33. package/dist/resources/knowledge/taxonomy/algokit:cli:features:config.md +37 -0
  34. package/dist/resources/knowledge/taxonomy/algokit:cli:features:dispenser.md +90 -0
  35. package/dist/resources/knowledge/taxonomy/algokit:cli:features:doctor.md +51 -0
  36. package/dist/resources/knowledge/taxonomy/algokit:cli:features:explore.md +21 -0
  37. package/dist/resources/knowledge/taxonomy/algokit:cli:features:generate.md +179 -0
  38. package/dist/resources/knowledge/taxonomy/algokit:cli:features:goal.md +139 -0
  39. package/dist/resources/knowledge/taxonomy/algokit:cli:features:init.md +122 -0
  40. package/dist/resources/knowledge/taxonomy/algokit:cli:features:localnet.md +191 -0
  41. package/dist/resources/knowledge/taxonomy/algokit:cli:features:project.md +95 -0
  42. package/dist/resources/knowledge/taxonomy/algokit:cli:features:project:bootstrap.md +128 -0
  43. package/dist/resources/knowledge/taxonomy/algokit:cli:features:project:deploy.md +211 -0
  44. package/dist/resources/knowledge/taxonomy/algokit:cli:features:project:link.md +67 -0
  45. package/dist/resources/knowledge/taxonomy/algokit:cli:features:project:list.md +43 -0
  46. package/dist/resources/knowledge/taxonomy/algokit:cli:features:project:run.md +184 -0
  47. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks.md +16 -0
  48. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:analyze.md +33 -0
  49. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:ipfs.md +66 -0
  50. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:mint.md +70 -0
  51. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:nfd.md +45 -0
  52. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:opt.md +71 -0
  53. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:send.md +60 -0
  54. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:sign.md +94 -0
  55. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:transfer.md +54 -0
  56. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:vanity_address.md +56 -0
  57. package/dist/resources/knowledge/taxonomy/algokit:cli:features:tasks:wallet.md +93 -0
  58. package/dist/resources/knowledge/taxonomy/algokit:cli:tutorials:algokit-template.md +220 -0
  59. package/dist/resources/knowledge/taxonomy/algokit:cli:tutorials:intro.md +171 -0
  60. package/dist/resources/knowledge/taxonomy/algokit:cli:tutorials:smart-contracts.md +14 -0
  61. package/dist/resources/knowledge/taxonomy/algokit:docs:testnet_api.md +157 -0
  62. package/dist/resources/knowledge/taxonomy/algokit:lora:README.md +61 -0
  63. package/dist/resources/knowledge/taxonomy/algokit:utils:python:README.md +35 -0
  64. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:apidocs:algokit_utils:algokit_utils.md +1095 -0
  65. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:capabilities:account.md +32 -0
  66. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:capabilities:app-client.md +154 -0
  67. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:capabilities:app-deploy.md +121 -0
  68. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:capabilities:client.md +29 -0
  69. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:capabilities:debugger.md +45 -0
  70. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:capabilities:dispenser-client.md +60 -0
  71. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:capabilities:transfer.md +58 -0
  72. package/dist/resources/knowledge/taxonomy/algokit:utils:python:markdown:index.md +123 -0
  73. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:capabilities:account.md +31 -0
  74. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:capabilities:app-client.md +157 -0
  75. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:capabilities:app-deploy.md +121 -0
  76. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:capabilities:client.md +29 -0
  77. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:capabilities:debugger.md +45 -0
  78. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:capabilities:dispenser-client.md +60 -0
  79. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:capabilities:transfer.md +58 -0
  80. package/dist/resources/knowledge/taxonomy/algokit:utils:python:source:index.md +103 -0
  81. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:README.md +64 -0
  82. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:account.md +186 -0
  83. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:algorand-client.md +160 -0
  84. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:amount.md +51 -0
  85. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:app-client.md +422 -0
  86. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:app-deploy.md +278 -0
  87. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:app.md +442 -0
  88. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:asset.md +331 -0
  89. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:client.md +115 -0
  90. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:debugging.md +54 -0
  91. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:dispenser-client.md +85 -0
  92. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:event-emitter.md +97 -0
  93. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:indexer.md +83 -0
  94. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:testing.md +207 -0
  95. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:transaction-composer.md +89 -0
  96. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:transaction.md +23 -0
  97. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:transfer.md +129 -0
  98. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:capabilities:typed-app-clients.md +201 -0
  99. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:README.md +53 -0
  100. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:testing.TestLogger.md +272 -0
  101. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:testing.TransactionLogger.md +149 -0
  102. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_account.MultisigAccount.md +178 -0
  103. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_account.SigningAccount.md +153 -0
  104. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_account_manager.AccountManager.md +924 -0
  105. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_algo_http_client_with_retry.AlgoHttpClientWithRetry.md +200 -0
  106. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_algorand_client.AlgorandClient.md +646 -0
  107. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_algorand_client_transaction_creator.AlgorandClientTransactionCreator.md +1290 -0
  108. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_algorand_client_transaction_sender.AlgorandClientTransactionSender.md +1425 -0
  109. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_amount.AlgoAmount.md +247 -0
  110. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_app_arc56.Arc56Method.md +259 -0
  111. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_app_client.AppClient.md +1350 -0
  112. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_app_client.ApplicationClient.md +887 -0
  113. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_app_deployer.AppDeployer.md +186 -0
  114. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_app_factory.AppFactory.md +780 -0
  115. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_app_manager.AppManager.md +527 -0
  116. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_asset_manager.AssetManager.md +221 -0
  117. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_async_event_emitter.AsyncEventEmitter.md +244 -0
  118. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_client_manager.ClientManager.md +1072 -0
  119. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_composer.TransactionComposer.md +1281 -0
  120. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_config.UpdatableConfig.md +274 -0
  121. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_dispenser_client.TestNetDispenserApiClient.md +225 -0
  122. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_kmd_account_manager.KmdAccountManager.md +182 -0
  123. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:classes:types_logic_error.LogicError.md +261 -0
  124. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:enums:types_app.OnSchemaBreak.md +51 -0
  125. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:enums:types_app.OnUpdate.md +64 -0
  126. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:enums:types_indexer.AccountStatus.md +51 -0
  127. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:enums:types_indexer.ApplicationOnComplete.md +78 -0
  128. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:enums:types_indexer.SignatureType.md +51 -0
  129. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:enums:types_lifecycle_events.EventType.md +32 -0
  130. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_account.AccountConfig.md +69 -0
  131. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_account.TransactionSignerAccount.md +34 -0
  132. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_account_manager.EnsureFundedResult.md +38 -0
  133. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_algorand_client_interface.AlgorandClientInterface.md +102 -0
  134. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppCallParams.md +233 -0
  135. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppCallTransactionResultOfType.md +108 -0
  136. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppCompilationResult.md +38 -0
  137. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppDeployMetadata.md +72 -0
  138. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppDeploymentParams.md +305 -0
  139. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppLookup.md +34 -0
  140. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppMetadata.md +174 -0
  141. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppReference.md +44 -0
  142. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppState.md +11 -0
  143. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.AppStorageSchema.md +77 -0
  144. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.BoxName.md +51 -0
  145. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.BoxReference.md +42 -0
  146. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.BoxValueRequestParams.md +54 -0
  147. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.BoxValuesRequestParams.md +54 -0
  148. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.CompiledTeal.md +77 -0
  149. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.CoreAppCallArgs.md +98 -0
  150. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.CreateAppParams.md +287 -0
  151. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.RawAppCallArgs.md +148 -0
  152. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.TealTemplateParams.md +13 -0
  153. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app.UpdateAppParams.md +274 -0
  154. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_arc56.Arc56Contract.md +284 -0
  155. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_arc56.Event.md +51 -0
  156. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_arc56.Method.md +145 -0
  157. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_arc56.ProgramSourceInfo.md +38 -0
  158. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_arc56.StorageKey.md +64 -0
  159. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_arc56.StorageMap.md +64 -0
  160. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_arc56.StructField.md +38 -0
  161. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientCallABIArgs.md +150 -0
  162. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientCallCoreParams.md +51 -0
  163. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientCompilationParams.md +49 -0
  164. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientCompilationResult.md +80 -0
  165. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientDeployCallInterfaceParams.md +83 -0
  166. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientDeployCoreParams.md +111 -0
  167. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientDeployParams.md +239 -0
  168. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppClientParams.md +120 -0
  169. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.AppSourceMaps.md +38 -0
  170. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.FundAppAccountParams.md +62 -0
  171. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.ResolveAppById.md +65 -0
  172. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.ResolveAppByIdBase.md +44 -0
  173. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_client.SourceMapExport.md +54 -0
  174. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_deployer.AppLookup.md +42 -0
  175. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_deployer.AppMetadata.md +164 -0
  176. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_factory.AppFactoryParams.md +145 -0
  177. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_manager.AppInformation.md +156 -0
  178. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_manager.BoxReference.md +38 -0
  179. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_manager.BoxValueRequestParams.md +51 -0
  180. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_manager.BoxValuesRequestParams.md +51 -0
  181. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.AppSources.md +38 -0
  182. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.AppSpec.md +90 -0
  183. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.CallConfig.md +77 -0
  184. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.DeclaredSchemaValueSpec.md +64 -0
  185. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.Hint.md +58 -0
  186. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.ReservedSchemaValueSpec.md +51 -0
  187. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.Schema.md +38 -0
  188. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.SchemaSpec.md +38 -0
  189. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.StateSchemaSpec.md +38 -0
  190. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_app_spec.Struct.md +38 -0
  191. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_asset.AssetBulkOptInOutParams.md +105 -0
  192. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_asset.AssetOptInParams.md +224 -0
  193. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_asset.AssetOptOutParams.md +268 -0
  194. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_asset.CreateAssetParams.md +369 -0
  195. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_asset_manager.AssetInformation.md +272 -0
  196. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_asset_manager.BulkAssetOptInOutResult.md +38 -0
  197. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_client_manager.AlgoSdkClients.md +51 -0
  198. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_client_manager.TypedAppClient.md +84 -0
  199. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_client_manager.TypedAppFactory.md +39 -0
  200. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_composer.BuiltTransactions.md +51 -0
  201. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_config.Config.md +115 -0
  202. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_debugging.AVMTracesEventData.md +25 -0
  203. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_debugging.TealSourceDebugEventData.md +51 -0
  204. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_debugging.TealSourcesDebugEventData.md +25 -0
  205. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_dispenser_client.DispenserFundResponse.md +38 -0
  206. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_dispenser_client.DispenserLimitResponse.md +25 -0
  207. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_dispenser_client.TestNetDispenserApiClientParams.md +38 -0
  208. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_indexer.LookupAssetHoldingsOptions.md +51 -0
  209. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_logic_error.LogicErrorDetails.md +77 -0
  210. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_network_client.AlgoClientConfig.md +51 -0
  211. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_network_client.AlgoConfig.md +51 -0
  212. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_network_client.NetworkDetails.md +77 -0
  213. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_testing.AlgoKitLogCaptureFixture.md +72 -0
  214. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_testing.AlgorandFixture.md +79 -0
  215. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_testing.AlgorandFixtureConfig.md +149 -0
  216. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_testing.AlgorandTestAutomationContext.md +165 -0
  217. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_testing.GetTestAccountParams.md +65 -0
  218. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_testing.LogSnapshotConfig.md +53 -0
  219. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.AtomicTransactionComposerToSend.md +98 -0
  220. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.ConfirmedTransactionResult.md +52 -0
  221. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.ConfirmedTransactionResults.md +88 -0
  222. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.SendAtomicTransactionComposerResults.md +92 -0
  223. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.SendParams.md +57 -0
  224. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.SendTransactionParams.md +135 -0
  225. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.SendTransactionResult.md +48 -0
  226. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.SendTransactionResults.md +49 -0
  227. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.TransactionGroupToSend.md +54 -0
  228. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transaction.TransactionToSign.md +38 -0
  229. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transfer.AlgoRekeyParams.md +222 -0
  230. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transfer.AlgoTransferParams.md +235 -0
  231. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transfer.EnsureFundedParams.md +248 -0
  232. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transfer.EnsureFundedReturnType.md +38 -0
  233. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:interfaces:types_transfer.TransferAssetParams.md +261 -0
  234. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:index.indexer.md +194 -0
  235. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:index.md +3215 -0
  236. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:testing.md +243 -0
  237. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_account.md +100 -0
  238. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_account_manager.md +42 -0
  239. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_account_manager_spec.md +3 -0
  240. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algo_http_client_with_retry.md +9 -0
  241. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algorand_client.md +9 -0
  242. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algorand_client_asset_spec.md +3 -0
  243. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algorand_client_interface.md +9 -0
  244. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algorand_client_spec.md +3 -0
  245. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algorand_client_transaction_creator.md +9 -0
  246. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algorand_client_transaction_sender.md +9 -0
  247. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_algorand_client_transfer_spec.md +3 -0
  248. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_amount.md +9 -0
  249. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_amount_spec.md +3 -0
  250. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app.md +279 -0
  251. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_arc56.md +346 -0
  252. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_client.md +347 -0
  253. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_client_spec.md +3 -0
  254. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_deployer.md +93 -0
  255. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_factory.md +124 -0
  256. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_factory_and_client_spec.md +3 -0
  257. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_manager.md +36 -0
  258. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_app_spec.md +160 -0
  259. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_asset.md +12 -0
  260. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_asset_manager.md +14 -0
  261. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_async_event_emitter.md +44 -0
  262. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_async_event_emitter_spec.md +3 -0
  263. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_client_manager.md +122 -0
  264. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_client_manager_spec.md +3 -0
  265. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_composer.md +433 -0
  266. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_config.md +13 -0
  267. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_debugging.md +79 -0
  268. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_dispenser_client.md +15 -0
  269. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_dispenser_client_spec.md +3 -0
  270. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_expand.md +28 -0
  271. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_indexer.md +611 -0
  272. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_kmd_account_manager.md +9 -0
  273. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_lifecycle_events.md +34 -0
  274. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_logging.md +93 -0
  275. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_logic_error.md +13 -0
  276. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_network_client.md +39 -0
  277. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_testing.md +14 -0
  278. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_transaction.md +90 -0
  279. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:code:modules:types_transfer.md +13 -0
  280. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:v7-migration.md +392 -0
  281. package/dist/resources/knowledge/taxonomy/algokit:utils:typescript:v8-migration.md +102 -0
  282. package/dist/resources/knowledge/taxonomy/arcs:ARC-template.md +48 -0
  283. package/dist/resources/knowledge/taxonomy/arcs:README.md +41 -0
  284. package/dist/resources/knowledge/taxonomy/arcs:assets:arc-0012:README.md +30 -0
  285. package/dist/resources/knowledge/taxonomy/arcs:assets:arc-0034:TemplateForm.md +58 -0
  286. package/dist/resources/knowledge/taxonomy/arcs:assets:arc-0062:README.md +16 -0
  287. package/dist/resources/knowledge/taxonomy/arcs:pages:nfts.md +24 -0
  288. package/dist/resources/knowledge/taxonomy/arcs:pages:wallets.md +74 -0
  289. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0000.md +298 -0
  290. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0001.md +480 -0
  291. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0002.md +138 -0
  292. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0003.md +469 -0
  293. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0004.md +725 -0
  294. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0005.md +90 -0
  295. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0006.md +202 -0
  296. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0007.md +113 -0
  297. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0008.md +55 -0
  298. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0009.md +63 -0
  299. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0010.md +111 -0
  300. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0011.md +47 -0
  301. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0012.md +158 -0
  302. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0015.md +112 -0
  303. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0016.md +97 -0
  304. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0018.md +616 -0
  305. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0019.md +246 -0
  306. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0020.md +742 -0
  307. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0021.md +98 -0
  308. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0022.md +75 -0
  309. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0023.md +189 -0
  310. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0025.md +241 -0
  311. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0026.md +112 -0
  312. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0028.md +176 -0
  313. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0032.md +286 -0
  314. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0033.md +104 -0
  315. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0034.md +167 -0
  316. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0035.md +151 -0
  317. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0036.md +84 -0
  318. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0042.md +76 -0
  319. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0047.md +171 -0
  320. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0048.md +85 -0
  321. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0049.md +80 -0
  322. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0054.md +217 -0
  323. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0055.md +540 -0
  324. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0056.md +516 -0
  325. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0059.md +726 -0
  326. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0062.md +339 -0
  327. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0065.md +169 -0
  328. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0069.md +183 -0
  329. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0072.md +335 -0
  330. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0073.md +93 -0
  331. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0074.md +128 -0
  332. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0076.md +99 -0
  333. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0078.md +220 -0
  334. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0079.md +109 -0
  335. package/dist/resources/knowledge/taxonomy/arcs:specs:arc-0200.md +232 -0
  336. package/dist/resources/knowledge/taxonomy/clis_index.md +2347 -0
  337. package/dist/resources/knowledge/taxonomy/developer:docs:about.md +13 -0
  338. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:algokey.md +45 -0
  339. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:generate.md +42 -0
  340. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:import.md +42 -0
  341. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:multisig:append-auth-addr.md +44 -0
  342. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:multisig:multisig.md +47 -0
  343. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:part:info.md +40 -0
  344. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:part:part.md +42 -0
  345. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:part:reparent.md +42 -0
  346. package/dist/resources/knowledge/taxonomy/developer:docs:clis:algokey:sign.md +46 -0
  347. package/dist/resources/knowledge/taxonomy/developer:docs:clis:conduit:conduit.md +71 -0
  348. package/dist/resources/knowledge/taxonomy/developer:docs:clis:conduit:init.md +88 -0
  349. package/dist/resources/knowledge/taxonomy/developer:docs:clis:conduit:list:exporters.md +46 -0
  350. package/dist/resources/knowledge/taxonomy/developer:docs:clis:conduit:list:importers.md +46 -0
  351. package/dist/resources/knowledge/taxonomy/developer:docs:clis:conduit:list:list.md +63 -0
  352. package/dist/resources/knowledge/taxonomy/developer:docs:clis:conduit:list:processors.md +46 -0
  353. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:diagcfg.md +39 -0
  354. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:metric:disable.md +58 -0
  355. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:metric:enable.md +58 -0
  356. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:metric:metric.md +51 -0
  357. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:metric:status.md +58 -0
  358. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:telemetry:disable.md +58 -0
  359. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:telemetry:enable.md +58 -0
  360. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:telemetry:endpoint.md +60 -0
  361. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:telemetry:name.md +60 -0
  362. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:telemetry:status.md +58 -0
  363. package/dist/resources/knowledge/taxonomy/developer:docs:clis:diagcfg:telemetry:telemetry.md +53 -0
  364. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:node:restart.md +60 -0
  365. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:node:start.md +60 -0
  366. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:node:status.md +62 -0
  367. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:node:stop.md +52 -0
  368. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:node:wait.md +62 -0
  369. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:protocols.md +60 -0
  370. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:report.md +60 -0
  371. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:version.md +54 -0
  372. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:wallet:list.md +52 -0
  373. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:wallet:new.md +54 -0
  374. package/dist/resources/knowledge/taxonomy/developer:docs:clis:goal:wallet:wallet.md +56 -0
  375. package/dist/resources/knowledge/taxonomy/developer:docs:clis:indexer:api-config.md +50 -0
  376. package/dist/resources/knowledge/taxonomy/developer:docs:clis:indexer:daemon.md +110 -0
  377. package/dist/resources/knowledge/taxonomy/developer:docs:clis:indexer:indexer.md +50 -0
  378. package/dist/resources/knowledge/taxonomy/developer:docs:clis:indexer:util:util.md +39 -0
  379. package/dist/resources/knowledge/taxonomy/developer:docs:clis:indexer:util:validator.md +72 -0
  380. package/dist/resources/knowledge/taxonomy/developer:docs:clis:kmd.md +51 -0
  381. package/dist/resources/knowledge/taxonomy/developer:docs:clis:tealdbg:debug.md +92 -0
  382. package/dist/resources/knowledge/taxonomy/developer:docs:clis:tealdbg:remote.md +66 -0
  383. package/dist/resources/knowledge/taxonomy/developer:docs:clis:tealdbg:tealdbg.md +59 -0
  384. package/dist/resources/knowledge/taxonomy/developer:docs:details:accounts:create.md +741 -0
  385. package/dist/resources/knowledge/taxonomy/developer:docs:details:accounts:index.md +107 -0
  386. package/dist/resources/knowledge/taxonomy/developer:docs:details:accounts:rekey.md +462 -0
  387. package/dist/resources/knowledge/taxonomy/developer:docs:details:algorand-networks:betanet.md +31 -0
  388. package/dist/resources/knowledge/taxonomy/developer:docs:details:algorand-networks:index.md +23 -0
  389. package/dist/resources/knowledge/taxonomy/developer:docs:details:algorand-networks:mainnet.md +19 -0
  390. package/dist/resources/knowledge/taxonomy/developer:docs:details:algorand-networks:testnet.md +25 -0
  391. package/dist/resources/knowledge/taxonomy/developer:docs:details:algorand_consensus.md +46 -0
  392. package/dist/resources/knowledge/taxonomy/developer:docs:details:asa.md +1214 -0
  393. package/dist/resources/knowledge/taxonomy/developer:docs:details:atc.md +412 -0
  394. package/dist/resources/knowledge/taxonomy/developer:docs:details:atomic_transfers.md +396 -0
  395. package/dist/resources/knowledge/taxonomy/developer:docs:details:conduit.md +95 -0
  396. package/dist/resources/knowledge/taxonomy/developer:docs:details:crust.md +156 -0
  397. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:index.md +18 -0
  398. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:guidelines.md +3 -0
  399. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:index.md +332 -0
  400. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:jsonspec.md +134 -0
  401. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:index.md +16 -0
  402. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v1.md +401 -0
  403. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v10.md +1748 -0
  404. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v2.md +671 -0
  405. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v3.md +789 -0
  406. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v4.md +1029 -0
  407. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v5.md +1263 -0
  408. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v6.md +1359 -0
  409. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v7.md +1481 -0
  410. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v8.md +1640 -0
  411. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:opcodes:v9.md +1640 -0
  412. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:avm:teal:specification.md +945 -0
  413. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:ABI:index.md +172 -0
  414. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:apps:create.md +398 -0
  415. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:apps:index.md +246 -0
  416. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:apps:innertx.md +514 -0
  417. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:apps:state.md +704 -0
  418. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:apps:txs.md +231 -0
  419. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:debugging.md +897 -0
  420. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:frontend:apps.md +1680 -0
  421. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:frontend:smartsigs.md +492 -0
  422. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:guidelines.md +405 -0
  423. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:index.md +41 -0
  424. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:smartsigs:index.md +15 -0
  425. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:smartsigs:modes.md +34 -0
  426. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:smart-contracts:smartsigs:walkthrough.md +159 -0
  427. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:writing-contracts:beaker.md +341 -0
  428. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:writing-contracts:pyteal.md +786 -0
  429. package/dist/resources/knowledge/taxonomy/developer:docs:details:dapps:writing-contracts:python.md +3 -0
  430. package/dist/resources/knowledge/taxonomy/developer:docs:details:encoding.md +457 -0
  431. package/dist/resources/knowledge/taxonomy/developer:docs:details:ethereum_to_algorand.md +239 -0
  432. package/dist/resources/knowledge/taxonomy/developer:docs:details:index.md +29 -0
  433. package/dist/resources/knowledge/taxonomy/developer:docs:details:indexer.md +472 -0
  434. package/dist/resources/knowledge/taxonomy/developer:docs:details:parameter_tables.md +84 -0
  435. package/dist/resources/knowledge/taxonomy/developer:docs:details:stateproofs:index.md +61 -0
  436. package/dist/resources/knowledge/taxonomy/developer:docs:details:stateproofs:light_client.md +390 -0
  437. package/dist/resources/knowledge/taxonomy/developer:docs:details:technical_faq.md +233 -0
  438. package/dist/resources/knowledge/taxonomy/developer:docs:details:transactions:index.md +746 -0
  439. package/dist/resources/knowledge/taxonomy/developer:docs:details:transactions:offline_transactions.md +319 -0
  440. package/dist/resources/knowledge/taxonomy/developer:docs:details:transactions:payment_prompts.md +96 -0
  441. package/dist/resources/knowledge/taxonomy/developer:docs:details:transactions:signatures.md +484 -0
  442. package/dist/resources/knowledge/taxonomy/developer:docs:details:transactions:transactions.md +168 -0
  443. package/dist/resources/knowledge/taxonomy/developer:docs:details:useful_resources.md +29 -0
  444. package/dist/resources/knowledge/taxonomy/developer:docs:get-started:algokit.md +263 -0
  445. package/dist/resources/knowledge/taxonomy/developer:docs:get-started:basics:what_is_blockchain.md +69 -0
  446. package/dist/resources/knowledge/taxonomy/developer:docs:get-started:basics:whats_a_dapp.md +29 -0
  447. package/dist/resources/knowledge/taxonomy/developer:docs:get-started:basics:where_to_start.md +43 -0
  448. package/dist/resources/knowledge/taxonomy/developer:docs:get-started:basics:why_algorand.md +119 -0
  449. package/dist/resources/knowledge/taxonomy/developer:docs:get-started:tokenization:ft.md +24 -0
  450. package/dist/resources/knowledge/taxonomy/developer:docs:get-started:tokenization:nft.md +41 -0
  451. package/dist/resources/knowledge/taxonomy/developer:docs:index.md +100 -0
  452. package/dist/resources/knowledge/taxonomy/developer:docs:rest-apis:algod.md +3163 -0
  453. package/dist/resources/knowledge/taxonomy/developer:docs:rest-apis:indexer.md +2142 -0
  454. package/dist/resources/knowledge/taxonomy/developer:docs:rest-apis:kmd.md +1347 -0
  455. package/dist/resources/knowledge/taxonomy/developer:docs:rest-apis:restendpoints.md +76 -0
  456. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:operations:catchup.md +33 -0
  457. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:operations:switch_networks.md +89 -0
  458. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:participate:generate_keys.md +76 -0
  459. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:participate:index.md +56 -0
  460. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:participate:offline.md +83 -0
  461. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:participate:online.md +170 -0
  462. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:participate:renew.md +29 -0
  463. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:reference:artifacts.md +89 -0
  464. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:reference:config.md +190 -0
  465. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:reference:relay.md +51 -0
  466. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:reference:telemetry-config.md +31 -0
  467. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:setup:indexer.md +71 -0
  468. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:setup:install.md +618 -0
  469. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:setup:node-troubleshooting.md +190 -0
  470. package/dist/resources/knowledge/taxonomy/developer:docs:run-a-node:setup:types.md +77 -0
  471. package/dist/resources/knowledge/taxonomy/developer:docs:sdks:go:index.md +189 -0
  472. package/dist/resources/knowledge/taxonomy/developer:docs:sdks:index.md +38 -0
  473. package/dist/resources/knowledge/taxonomy/developer:docs:sdks:java:index.md +164 -0
  474. package/dist/resources/knowledge/taxonomy/developer:docs:sdks:javascript:index.md +168 -0
  475. package/dist/resources/knowledge/taxonomy/developer:docs:sdks:python:index.md +162 -0
  476. package/dist/resources/knowledge/taxonomy/developer:python:code:example:accounts.md +215 -0
  477. package/dist/resources/knowledge/taxonomy/developer:python:code:example:arc4_types.md +267 -0
  478. package/dist/resources/knowledge/taxonomy/developer:python:code:example:assets.md +235 -0
  479. package/dist/resources/knowledge/taxonomy/developer:python:code:example:box_storage.md +211 -0
  480. package/dist/resources/knowledge/taxonomy/developer:python:code:example:control_flow.md +162 -0
  481. package/dist/resources/knowledge/taxonomy/developer:python:code:example:crypto:merkle_tree.md +0 -0
  482. package/dist/resources/knowledge/taxonomy/developer:python:code:example:defi:amm.md +0 -0
  483. package/dist/resources/knowledge/taxonomy/developer:python:code:example:defi:auction.md +0 -0
  484. package/dist/resources/knowledge/taxonomy/developer:python:code:example:defi:htlc_logicsig.md +0 -0
  485. package/dist/resources/knowledge/taxonomy/developer:python:code:example:defi:marketplace.md +0 -0
  486. package/dist/resources/knowledge/taxonomy/developer:python:code:example:events:arc28_events.md +0 -0
  487. package/dist/resources/knowledge/taxonomy/developer:python:code:example:global_storage.md +192 -0
  488. package/dist/resources/knowledge/taxonomy/developer:python:code:example:governance:simple_voting.md +0 -0
  489. package/dist/resources/knowledge/taxonomy/developer:python:code:example:hello_world.md +133 -0
  490. package/dist/resources/knowledge/taxonomy/developer:python:code:example:inner_transactions.md +247 -0
  491. package/dist/resources/knowledge/taxonomy/developer:python:code:example:local_storage.md +227 -0
  492. package/dist/resources/knowledge/taxonomy/developer:python:code:example:nft:proof_of_attendance.md +0 -0
  493. package/dist/resources/knowledge/taxonomy/developer:python:code:example:privacy:zk_whitelist.md +0 -0
  494. package/dist/resources/knowledge/taxonomy/developer:python:code:example:scratch_storage.md +169 -0
  495. package/dist/resources/knowledge/taxonomy/developer:python:code:example:self_payment.md +167 -0
  496. package/dist/resources/knowledge/taxonomy/developer:python:code:example:struct_in_box.md +182 -0
  497. package/dist/resources/knowledge/taxonomy/developer:python:code:example:subsidize_app_call.md +189 -0
  498. package/dist/resources/knowledge/taxonomy/developer:python:code:example:transactions.md +0 -0
  499. package/dist/resources/knowledge/taxonomy/developer:python:code:example:utility:calculator.md +0 -0
  500. package/dist/resources/knowledge/taxonomy/devportal-code-examples:README.md +31 -0
  501. package/dist/resources/knowledge/taxonomy/devportal-code-examples:projects:python-contract-examples:README.md +155 -0
  502. package/dist/resources/knowledge/taxonomy/docs:.walletconnect:index.md +133 -0
  503. package/dist/resources/knowledge/taxonomy/docs:.walletconnect:walletconnect-schema.md +167 -0
  504. package/dist/resources/knowledge/taxonomy/docs:README.md +12 -0
  505. package/dist/resources/knowledge/taxonomy/docs:scripts:README.md +90 -0
  506. package/dist/resources/knowledge/taxonomy/docs:scripts:example_tracker:example_list.md +132 -0
  507. package/dist/resources/knowledge/taxonomy/index.md +2044 -0
  508. package/dist/resources/knowledge/taxonomy/liquid-auth:ARCHITECTURE.md +241 -0
  509. package/dist/resources/knowledge/taxonomy/liquid-auth:README.md +105 -0
  510. package/dist/resources/knowledge/taxonomy/liquid-auth:SEQUENCE.md +41 -0
  511. package/dist/resources/knowledge/taxonomy/liquid-auth:VISION.md +13 -0
  512. package/dist/resources/knowledge/taxonomy/liquid-auth:decisions:1-Service-Authentication.md +18 -0
  513. package/dist/resources/knowledge/taxonomy/liquid-auth:decisions:2-Bidirectional-Communication.md +42 -0
  514. package/dist/resources/knowledge/taxonomy/liquid-auth:decisions:3-Peer-to-Peer-Signaling.md +60 -0
  515. package/dist/resources/knowledge/taxonomy/liquid-auth:decisions:4-Fido-Extension.md +51 -0
  516. package/dist/resources/knowledge/taxonomy/liquid-auth:decisions:README.md +6 -0
  517. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:README.md +54 -0
  518. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:architecture.md +101 -0
  519. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:clients:android:provider-service:authenticate.md +13 -0
  520. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:clients:android:provider-service:register.md +18 -0
  521. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:clients:browser:authentication.md +107 -0
  522. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:clients:browser:example.md +64 -0
  523. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:introduction.md +18 -0
  524. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:server:environment-variables.md +75 -0
  525. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:server:integrations.md +168 -0
  526. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:server:introduction.md +22 -0
  527. package/dist/resources/knowledge/taxonomy/liquid-auth:docs:server:running-locally.md +88 -0
  528. package/dist/resources/knowledge/taxonomy/liquid-auth:services:liquid-auth-api-js:src:assertion:assertion.controller.post.request.md +3 -0
  529. package/dist/resources/knowledge/taxonomy/liquid-auth:services:liquid-auth-api-js:src:assertion:assertion.controller.post.response.md +3 -0
  530. package/dist/resources/knowledge/taxonomy/liquid-auth:services:liquid-auth-api-js:src:attestation:attestation.controller.post.request.md +1 -0
  531. package/dist/resources/knowledge/taxonomy/liquid-auth:services:liquid-auth-api-js:src:auth:auth.controller.get.user.md +0 -0
  532. package/dist/resources/knowledge/taxonomy/liquid-auth:sites:express-dapp:README.md +73 -0
  533. package/dist/resources/knowledge/taxonomy/liquid_auth_index.md +2221 -0
  534. package/dist/resources/knowledge/taxonomy/puya:README.md +72 -0
  535. package/dist/resources/knowledge/taxonomy/puya:docs:algopy_testing:index.md +15 -0
  536. package/dist/resources/knowledge/taxonomy/puya:docs:api-algopy.arc4.md +6 -0
  537. package/dist/resources/knowledge/taxonomy/puya:docs:api-algopy.gtxn.md +6 -0
  538. package/dist/resources/knowledge/taxonomy/puya:docs:api-algopy.itxn.md +6 -0
  539. package/dist/resources/knowledge/taxonomy/puya:docs:api-algopy.md +6 -0
  540. package/dist/resources/knowledge/taxonomy/puya:docs:api-algopy.op.md +6 -0
  541. package/dist/resources/knowledge/taxonomy/puya:docs:api.md +6 -0
  542. package/dist/resources/knowledge/taxonomy/puya:docs:compiler.md +239 -0
  543. package/dist/resources/knowledge/taxonomy/puya:docs:index.md +63 -0
  544. package/dist/resources/knowledge/taxonomy/puya:docs:language-guide.md +86 -0
  545. package/dist/resources/knowledge/taxonomy/puya:docs:lg-arc28.md +53 -0
  546. package/dist/resources/knowledge/taxonomy/puya:docs:lg-arc4.md +225 -0
  547. package/dist/resources/knowledge/taxonomy/puya:docs:lg-builtins.md +26 -0
  548. package/dist/resources/knowledge/taxonomy/puya:docs:lg-calling-apps.md +142 -0
  549. package/dist/resources/knowledge/taxonomy/puya:docs:lg-compile.md +70 -0
  550. package/dist/resources/knowledge/taxonomy/puya:docs:lg-control.md +87 -0
  551. package/dist/resources/knowledge/taxonomy/puya:docs:lg-errors.md +36 -0
  552. package/dist/resources/knowledge/taxonomy/puya:docs:lg-logs.md +46 -0
  553. package/dist/resources/knowledge/taxonomy/puya:docs:lg-modules.md +90 -0
  554. package/dist/resources/knowledge/taxonomy/puya:docs:lg-opcode-budget.md +3 -0
  555. package/dist/resources/knowledge/taxonomy/puya:docs:lg-ops.md +40 -0
  556. package/dist/resources/knowledge/taxonomy/puya:docs:lg-storage.md +222 -0
  557. package/dist/resources/knowledge/taxonomy/puya:docs:lg-structure.md +283 -0
  558. package/dist/resources/knowledge/taxonomy/puya:docs:lg-transactions.md +248 -0
  559. package/dist/resources/knowledge/taxonomy/puya:docs:lg-types.md +319 -0
  560. package/dist/resources/knowledge/taxonomy/puya:docs:lg-unsupported-python-features.md +52 -0
  561. package/dist/resources/knowledge/taxonomy/puya:docs:principles.md +196 -0
  562. package/dist/resources/knowledge/taxonomy/puya:examples:auction:README.md +3 -0
  563. package/dist/resources/knowledge/taxonomy/puya:python:testing:README.md +66 -0
  564. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:algopy.md +9 -0
  565. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:api.md +41 -0
  566. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:coverage.md +159 -0
  567. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:examples.md +13 -0
  568. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:faq.md +61 -0
  569. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:index.md +182 -0
  570. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:arc4-types.md +96 -0
  571. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:avm-types.md +223 -0
  572. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:concepts.md +58 -0
  573. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:contract-testing.md +225 -0
  574. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:index.md +67 -0
  575. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:opcodes.md +382 -0
  576. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:signature-testing.md +73 -0
  577. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:state-management.md +104 -0
  578. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:subroutines.md +62 -0
  579. package/dist/resources/knowledge/taxonomy/puya:python:testing:docs:testing-guide:transactions.md +200 -0
  580. package/dist/resources/knowledge/taxonomy/puya:python:testing:examples:README.md +56 -0
  581. package/dist/resources/knowledge/taxonomy/puya:src:puya:ARCHITECTURE.md +26 -0
  582. package/dist/resources/knowledge/taxonomy/puya:src:puyapy:_typeshed:README.md +10 -0
  583. package/dist/resources/knowledge/taxonomy/puya:src:puyapy:_vendor:mypy:typeshed:stdlib:_typeshed:README.md +34 -0
  584. package/dist/resources/knowledge/taxonomy/puya:src:puyapy:awst_build:README.md +13 -0
  585. package/dist/resources/knowledge/taxonomy/puya:stubs:README.md +89 -0
  586. package/dist/resources/knowledge/taxonomy/puya:tests:test_expected_output:README.md +17 -0
  587. package/dist/resources/knowledge/taxonomy/puya:typescript:README.md +11 -0
  588. package/dist/resources/knowledge/taxonomy/puya:typescript:docs:README.md +35 -0
  589. package/dist/resources/knowledge/taxonomy/puya:typescript:docs:architecture-decisions:2024-05-21_primitive-bytes-and-strings.md +196 -0
  590. package/dist/resources/knowledge/taxonomy/puya:typescript:docs:architecture-decisions:2024-05-21_primitive-integer-types.md +179 -0
  591. package/dist/resources/knowledge/taxonomy/puya:typescript:packages:algo-ts:readme.md +3 -0
  592. package/dist/resources/knowledge/taxonomy/puya_index.md +2143 -0
  593. package/dist/resources/knowledge/taxonomy/sdks:javascript:FAQ.md +21 -0
  594. package/dist/resources/knowledge/taxonomy/sdks:javascript:README.md +139 -0
  595. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIAddressType.md +185 -0
  596. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIArrayDynamicType.md +230 -0
  597. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIArrayStaticType.md +236 -0
  598. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIBoolType.md +185 -0
  599. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIByteType.md +185 -0
  600. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIContract.md +124 -0
  601. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIInterface.md +100 -0
  602. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIMethod.md +185 -0
  603. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIStringType.md +185 -0
  604. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABITupleType.md +230 -0
  605. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIType.md +169 -0
  606. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIUfixedType.md +221 -0
  607. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:ABIUintType.md +209 -0
  608. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:Algodv2.md +1321 -0
  609. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:AtomicTransactionComposer.md +385 -0
  610. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:DryrunResult.md +61 -0
  611. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:Indexer.md +727 -0
  612. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:Kmd.md +642 -0
  613. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:LogicSig.md +315 -0
  614. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:LogicSigAccount.md +276 -0
  615. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:SourceMap.md +151 -0
  616. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:Transaction.md +1133 -0
  617. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.Account.md +557 -0
  618. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AccountParticipation.md +195 -0
  619. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AccountResponse.md +138 -0
  620. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AccountStateDelta.md +136 -0
  621. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AccountsResponse.md +149 -0
  622. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.Application.md +180 -0
  623. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationLocalState.md +195 -0
  624. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationLocalStatesResponse.md +149 -0
  625. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationLogData.md +138 -0
  626. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationLogsResponse.md +163 -0
  627. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationParams.md +209 -0
  628. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationResponse.md +136 -0
  629. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationStateSchema.md +138 -0
  630. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ApplicationsResponse.md +149 -0
  631. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.Asset.md +183 -0
  632. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AssetBalancesResponse.md +149 -0
  633. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AssetHolding.md +196 -0
  634. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AssetHoldingsResponse.md +149 -0
  635. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AssetParams.md +334 -0
  636. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AssetResponse.md +136 -0
  637. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.AssetsResponse.md +149 -0
  638. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.Block.md +390 -0
  639. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.BlockRewards.md +199 -0
  640. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.BlockUpgradeState.md +181 -0
  641. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.BlockUpgradeVote.md +152 -0
  642. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.Box.md +152 -0
  643. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.BoxDescriptor.md +124 -0
  644. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.BoxesResponse.md +151 -0
  645. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ErrorResponse.md +134 -0
  646. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.EvalDelta.md +152 -0
  647. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.EvalDeltaKeyValue.md +136 -0
  648. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.HashFactory.md +122 -0
  649. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.HealthCheck.md +196 -0
  650. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.IndexerStateProofMessage.md +178 -0
  651. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.MerkleArrayProof.md +148 -0
  652. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.MiniAssetHolding.md +188 -0
  653. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.ParticipationUpdates.md +139 -0
  654. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateProofFields.md +211 -0
  655. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateProofParticipant.md +136 -0
  656. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateProofReveal.md +151 -0
  657. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateProofSigSlot.md +134 -0
  658. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateProofSignature.md +158 -0
  659. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateProofTracking.md +166 -0
  660. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateProofVerifier.md +136 -0
  661. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.StateSchema.md +141 -0
  662. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TealKeyValue.md +136 -0
  663. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TealValue.md +152 -0
  664. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.Transaction.md +629 -0
  665. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionApplication.md +291 -0
  666. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionAssetConfig.md +145 -0
  667. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionAssetFreeze.md +154 -0
  668. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionAssetTransfer.md +201 -0
  669. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionKeyreg.md +211 -0
  670. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionPayment.md +170 -0
  671. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionResponse.md +140 -0
  672. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionSignature.md +157 -0
  673. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionSignatureLogicsig.md +171 -0
  674. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionSignatureMultisig.md +154 -0
  675. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionSignatureMultisigSubsignature.md +136 -0
  676. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionStateProof.md +157 -0
  677. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:indexerModels.TransactionsResponse.md +149 -0
  678. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.Account.md +516 -0
  679. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AccountApplicationResponse.md +158 -0
  680. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AccountAssetHolding.md +141 -0
  681. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AccountAssetResponse.md +156 -0
  682. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AccountAssetsInformationResponse.md +151 -0
  683. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AccountParticipation.md +196 -0
  684. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AccountStateDelta.md +136 -0
  685. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AppCallLogs.md +153 -0
  686. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.Application.md +138 -0
  687. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ApplicationInitialStates.md +167 -0
  688. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ApplicationKVStorage.md +138 -0
  689. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ApplicationLocalReference.md +138 -0
  690. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ApplicationLocalState.md +152 -0
  691. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ApplicationParams.md +209 -0
  692. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ApplicationStateOperation.md +182 -0
  693. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ApplicationStateSchema.md +138 -0
  694. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.Asset.md +141 -0
  695. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AssetHolding.md +154 -0
  696. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AssetHoldingReference.md +138 -0
  697. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AssetParams.md +334 -0
  698. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AvmKeyValue.md +136 -0
  699. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.AvmValue.md +152 -0
  700. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BlockHashResponse.md +124 -0
  701. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BlockLogsResponse.md +128 -0
  702. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BlockResponse.md +139 -0
  703. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BlockTxidsResponse.md +124 -0
  704. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.Box.md +152 -0
  705. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BoxDescriptor.md +124 -0
  706. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BoxReference.md +138 -0
  707. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BoxesResponse.md +122 -0
  708. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.BuildVersion.md +180 -0
  709. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.CompileResponse.md +152 -0
  710. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.DisassembleResponse.md +124 -0
  711. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.DryrunRequest.md +204 -0
  712. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.DryrunResponse.md +148 -0
  713. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.DryrunSource.md +163 -0
  714. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.DryrunState.md +176 -0
  715. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.DryrunTxnResult.md +253 -0
  716. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ErrorResponse.md +134 -0
  717. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.EvalDelta.md +152 -0
  718. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.EvalDeltaKeyValue.md +136 -0
  719. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.GetBlockTimeStampOffsetResponse.md +124 -0
  720. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.GetSyncRoundResponse.md +124 -0
  721. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.KvDelta.md +139 -0
  722. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.LedgerStateDeltaForTransactionGroup.md +136 -0
  723. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.LightBlockHeaderProof.md +153 -0
  724. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.NodeStatusResponse.md +480 -0
  725. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.PendingTransactionResponse.md +312 -0
  726. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.PendingTransactionsResponse.md +140 -0
  727. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.PostTransactionsResponse.md +124 -0
  728. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.ScratchChange.md +138 -0
  729. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateInitialStates.md +125 -0
  730. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateRequest.md +227 -0
  731. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateRequestTransactionGroup.md +124 -0
  732. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateResponse.md +197 -0
  733. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateTraceConfig.md +169 -0
  734. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateTransactionGroupResult.md +206 -0
  735. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateTransactionResult.md +206 -0
  736. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulateUnnamedResourcesAccessed.md +221 -0
  737. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulationEvalOverrides.md +198 -0
  738. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulationOpcodeTraceUnit.md +194 -0
  739. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SimulationTransactionExecTrace.md +241 -0
  740. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.StateProof.md +138 -0
  741. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.StateProofMessage.md +182 -0
  742. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.SupplyResponse.md +152 -0
  743. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.TealKeyValue.md +136 -0
  744. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.TealValue.md +152 -0
  745. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.TransactionGroupLedgerStateDeltasForRoundResponse.md +123 -0
  746. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.TransactionParametersResponse.md +200 -0
  747. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.TransactionProofResponse.md +183 -0
  748. package/dist/resources/knowledge/taxonomy/sdks:javascript:classes:modelsv2.Version.md +158 -0
  749. package/dist/resources/knowledge/taxonomy/sdks:javascript:enums:ABIReferenceType.md +47 -0
  750. package/dist/resources/knowledge/taxonomy/sdks:javascript:enums:ABITransactionType.md +99 -0
  751. package/dist/resources/knowledge/taxonomy/sdks:javascript:enums:AtomicTransactionComposerStatus.md +73 -0
  752. package/dist/resources/knowledge/taxonomy/sdks:javascript:enums:IntDecoding.md +65 -0
  753. package/dist/resources/knowledge/taxonomy/sdks:javascript:enums:OnApplicationComplete.md +96 -0
  754. package/dist/resources/knowledge/taxonomy/sdks:javascript:enums:TransactionType.md +103 -0
  755. package/dist/resources/knowledge/taxonomy/sdks:javascript:examples:README.md +9 -0
  756. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIContractNetworkInfo.md +19 -0
  757. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIContractNetworks.md +7 -0
  758. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIContractParams.md +63 -0
  759. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIInterfaceParams.md +41 -0
  760. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIMethodArgParams.md +41 -0
  761. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIMethodParams.md +78 -0
  762. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIMethodReturnParams.md +30 -0
  763. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:ABIResult.md +90 -0
  764. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:Account.md +38 -0
  765. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:Address.md +32 -0
  766. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:AlgodTokenHeader.md +19 -0
  767. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:BaseHTTPClient.md +98 -0
  768. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:BaseHTTPClientError.md +22 -0
  769. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:BaseHTTPClientResponse.md +41 -0
  770. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:BoxReference.md +36 -0
  771. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:CustomTokenHeader.md +7 -0
  772. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedAssetParams.md +153 -0
  773. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedBoxReference.md +34 -0
  774. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedGlobalStateSchema.md +34 -0
  775. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedLocalStateSchema.md +34 -0
  776. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedLogicSig.md +52 -0
  777. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedLogicSigAccount.md +30 -0
  778. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedMultisig.md +50 -0
  779. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedSignedTransaction.md +75 -0
  780. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedSubsig.md +34 -0
  781. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:EncodedTransaction.md +606 -0
  782. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:IndexerTokenHeader.md +19 -0
  783. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:KMDTokenHeader.md +19 -0
  784. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:MultisigMetadata.md +52 -0
  785. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:SignedTransaction.md +75 -0
  786. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:SuggestedParams.md +89 -0
  787. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:TransactionParams.md +718 -0
  788. package/dist/resources/knowledge/taxonomy/sdks:javascript:interfaces:TransactionWithSigner.md +36 -0
  789. package/dist/resources/knowledge/taxonomy/sdks:javascript:modules.md +2993 -0
  790. package/dist/resources/knowledge/taxonomy/sdks:javascript:modules:indexerModels.md +69 -0
  791. package/dist/resources/knowledge/taxonomy/sdks:javascript:modules:modelsv2.md +79 -0
  792. package/dist/resources/knowledge/taxonomy/sdks:python:README.md +120 -0
  793. package/dist/resources/knowledge/taxonomy/sdks:python:algosdk:v2client:harness:README.md +18 -0
  794. package/dist/resources/knowledge/taxonomy/sdks:python:examples:README.md +11 -0
  795. package/dist/resources/knowledge/taxonomy/tealscript:FEATURES.md +252 -0
  796. package/dist/resources/knowledge/taxonomy/tealscript:README.md +54 -0
  797. package/dist/resources/knowledge/taxonomy/tealscript:examples_amm_README.md +3 -0
  798. package/dist/resources/knowledge/taxonomy/tealscript:examples_auction_README.md +3 -0
  799. package/dist/resources/knowledge/taxonomy/tealscript:examples_big_box_README.md +20 -0
  800. package/dist/resources/knowledge/taxonomy/tealscript:examples_itxns_README.md +1 -0
  801. package/dist/resources/knowledge/taxonomy/tealscript:examples_lsig_with_app_README.md +3 -0
  802. package/dist/resources/knowledge/taxonomy/tealscript:examples_reti_README.md +1 -0
  803. package/dist/resources/knowledge/taxonomy/tealscript:guides_Supported Types_arrays.md +104 -0
  804. package/dist/resources/knowledge/taxonomy/tealscript:guides_Supported Types_numbers.md +49 -0
  805. package/dist/resources/knowledge/taxonomy/tealscript:guides_atomic_txn.md +22 -0
  806. package/dist/resources/knowledge/taxonomy/tealscript:guides_features.md +256 -0
  807. package/dist/resources/knowledge/taxonomy/tealscript:guides_getting_started.md +88 -0
  808. package/dist/resources/knowledge/taxonomy/tealscript:guides_inner_transactions.md +43 -0
  809. package/dist/resources/knowledge/taxonomy/tealscript:guides_lifecycle.md +88 -0
  810. package/dist/resources/knowledge/taxonomy/tealscript:guides_math.md +54 -0
  811. package/dist/resources/knowledge/taxonomy/tealscript:guides_methods.md +85 -0
  812. package/dist/resources/knowledge/taxonomy/tealscript:guides_multiple_contracts.md +92 -0
  813. package/dist/resources/knowledge/taxonomy/tealscript:guides_pyteal.md +35 -0
  814. package/dist/resources/knowledge/taxonomy/tealscript:guides_storage.md +110 -0
  815. package/dist/resources/knowledge/taxonomy/tealscript:tests_test_package_README.md +1 -0
  816. package/dist/resources/knowledge/taxonomy/tealscript:tutorials_Hello World_0001-intro.md +9 -0
  817. package/dist/resources/knowledge/taxonomy/tealscript:tutorials_Hello World_0002-init.md +50 -0
  818. package/dist/resources/knowledge/taxonomy/tealscript:tutorials_Hello World_0003-contract.md +98 -0
  819. package/dist/resources/knowledge/taxonomy/tealscript:tutorials_Hello World_0004-artifacts.md +59 -0
  820. package/dist/resources/knowledge/taxonomy/tealscript:tutorials_Hello World_0005-hello.md +35 -0
  821. package/dist/resources/knowledge/taxonomy/tealscript:tutorials_Hello World_0006-test.md +30 -0
  822. package/dist/resources/knowledge/taxonomy-categories/algokit-utils.json +148 -0
  823. package/dist/resources/knowledge/taxonomy-categories/algokit.json +105 -0
  824. package/dist/resources/knowledge/taxonomy-categories/arcs.json +92 -0
  825. package/dist/resources/knowledge/taxonomy-categories/clis.json +280 -0
  826. package/dist/resources/knowledge/taxonomy-categories/details.json +173 -0
  827. package/dist/resources/knowledge/taxonomy-categories/developers.json +71 -0
  828. package/dist/resources/knowledge/taxonomy-categories/liquid-auth.json +127 -0
  829. package/dist/resources/knowledge/taxonomy-categories/nodes.json +50 -0
  830. package/dist/resources/knowledge/taxonomy-categories/puya.json +76 -0
  831. package/dist/resources/knowledge/taxonomy-categories/python.json +104 -0
  832. package/dist/resources/knowledge/taxonomy-categories/sdks.json +152 -0
  833. package/dist/resources/knowledge/taxonomy-categories/tealscript.json +80 -0
  834. package/dist/tools/accountManager.d.ts +150 -0
  835. package/dist/tools/accountManager.js +339 -0
  836. package/dist/tools/algodManager.d.ts +134 -0
  837. package/dist/tools/algodManager.js +257 -0
  838. package/dist/tools/apiManager/algod/account.d.ts +10 -0
  839. package/dist/tools/apiManager/algod/account.js +135 -0
  840. package/dist/tools/apiManager/algod/application.d.ts +10 -0
  841. package/dist/tools/apiManager/algod/application.js +165 -0
  842. package/dist/tools/apiManager/algod/asset.d.ts +8 -0
  843. package/dist/tools/apiManager/algod/asset.js +47 -0
  844. package/dist/tools/apiManager/algod/index.d.ts +6 -0
  845. package/dist/tools/apiManager/algod/index.js +32 -0
  846. package/dist/tools/apiManager/algod/transaction.d.ts +14 -0
  847. package/dist/tools/apiManager/algod/transaction.js +216 -0
  848. package/dist/tools/apiManager/example/get-balance.d.ts +11 -0
  849. package/dist/tools/apiManager/example/get-balance.js +32 -0
  850. package/dist/tools/apiManager/example/index.d.ts +6 -0
  851. package/dist/tools/apiManager/example/index.js +18 -0
  852. package/dist/tools/apiManager/index.d.ts +45 -0
  853. package/dist/tools/apiManager/index.js +53 -0
  854. package/dist/tools/apiManager/indexer/account.d.ts +24 -0
  855. package/dist/tools/apiManager/indexer/account.js +248 -0
  856. package/dist/tools/apiManager/indexer/application.d.ts +24 -0
  857. package/dist/tools/apiManager/indexer/application.js +290 -0
  858. package/dist/tools/apiManager/indexer/asset.d.ts +36 -0
  859. package/dist/tools/apiManager/indexer/asset.js +292 -0
  860. package/dist/tools/apiManager/indexer/index.d.ts +6 -0
  861. package/dist/tools/apiManager/indexer/index.js +39 -0
  862. package/dist/tools/apiManager/indexer/transaction.d.ts +34 -0
  863. package/dist/tools/apiManager/indexer/transaction.js +276 -0
  864. package/dist/tools/apiManager/nfd/index.d.ts +6 -0
  865. package/dist/tools/apiManager/nfd/index.js +476 -0
  866. package/dist/tools/apiManager/tinyman/analytics.d.ts +3 -0
  867. package/dist/tools/apiManager/tinyman/analytics.js +80 -0
  868. package/dist/tools/apiManager/tinyman/bootstrap.d.ts +3 -0
  869. package/dist/tools/apiManager/tinyman/bootstrap.js +85 -0
  870. package/dist/tools/apiManager/tinyman/index.d.ts +3 -0
  871. package/dist/tools/apiManager/tinyman/index.js +60 -0
  872. package/dist/tools/apiManager/tinyman/liquidity.d.ts +3 -0
  873. package/dist/tools/apiManager/tinyman/liquidity.js +143 -0
  874. package/dist/tools/apiManager/tinyman/opt_in.d.ts +3 -0
  875. package/dist/tools/apiManager/tinyman/opt_in.js +112 -0
  876. package/dist/tools/apiManager/tinyman/pool.d.ts +3 -0
  877. package/dist/tools/apiManager/tinyman/pool.js +90 -0
  878. package/dist/tools/apiManager/tinyman/remove_liquidity.d.ts +3 -0
  879. package/dist/tools/apiManager/tinyman/remove_liquidity.js +148 -0
  880. package/dist/tools/apiManager/tinyman/swap.d.ts +3 -0
  881. package/dist/tools/apiManager/tinyman/swap.js +147 -0
  882. package/dist/tools/arc26Manager.d.ts +37 -0
  883. package/dist/tools/arc26Manager.js +131 -0
  884. package/dist/tools/commonParams.d.ts +18 -0
  885. package/dist/tools/commonParams.js +28 -0
  886. package/dist/tools/index.d.ts +8 -0
  887. package/dist/tools/index.js +8 -0
  888. package/dist/tools/knowledgeManager.d.ts +28 -0
  889. package/dist/tools/knowledgeManager.js +73 -0
  890. package/dist/tools/transactionManager/accountTransactions.d.ts +127 -0
  891. package/dist/tools/transactionManager/accountTransactions.js +177 -0
  892. package/dist/tools/transactionManager/appTransactions/callTxn.d.ts +17 -0
  893. package/dist/tools/transactionManager/appTransactions/callTxn.js +95 -0
  894. package/dist/tools/transactionManager/appTransactions/clearTxn.d.ts +17 -0
  895. package/dist/tools/transactionManager/appTransactions/clearTxn.js +95 -0
  896. package/dist/tools/transactionManager/appTransactions/closeOutTxn.d.ts +17 -0
  897. package/dist/tools/transactionManager/appTransactions/closeOutTxn.js +95 -0
  898. package/dist/tools/transactionManager/appTransactions/createTxn.d.ts +17 -0
  899. package/dist/tools/transactionManager/appTransactions/createTxn.js +128 -0
  900. package/dist/tools/transactionManager/appTransactions/deleteTxn.d.ts +17 -0
  901. package/dist/tools/transactionManager/appTransactions/deleteTxn.js +95 -0
  902. package/dist/tools/transactionManager/appTransactions/index.d.ts +23 -0
  903. package/dist/tools/transactionManager/appTransactions/index.js +56 -0
  904. package/dist/tools/transactionManager/appTransactions/optInTxn.d.ts +17 -0
  905. package/dist/tools/transactionManager/appTransactions/optInTxn.js +95 -0
  906. package/dist/tools/transactionManager/appTransactions/types.d.ts +525 -0
  907. package/dist/tools/transactionManager/appTransactions/types.js +298 -0
  908. package/dist/tools/transactionManager/appTransactions/updateTxn.d.ts +17 -0
  909. package/dist/tools/transactionManager/appTransactions/updateTxn.js +101 -0
  910. package/dist/tools/transactionManager/assetTransactions.d.ts +300 -0
  911. package/dist/tools/transactionManager/assetTransactions.js +351 -0
  912. package/dist/tools/transactionManager/generalTransaction.d.ts +96 -0
  913. package/dist/tools/transactionManager/generalTransaction.js +504 -0
  914. package/dist/tools/transactionManager/index.d.ts +18 -0
  915. package/dist/tools/transactionManager/index.js +42 -0
  916. package/dist/tools/utilityManager.d.ts +127 -0
  917. package/dist/tools/utilityManager.js +422 -0
  918. package/dist/tools/walletManager.d.ts +46 -0
  919. package/dist/tools/walletManager.js +781 -0
  920. package/dist/types.d.ts +123 -0
  921. package/dist/types.js +42 -0
  922. package/dist/utils/responseProcessor.d.ts +31 -0
  923. package/dist/utils/responseProcessor.js +152 -0
  924. package/package.json +58 -0
@@ -0,0 +1,1095 @@
1
+ # [`algokit_utils`](#module-algokit_utils)
2
+
3
+ ## Data
4
+
5
+ ### algokit_utils.AppSpecStateDict *: [TypeAlias](https://docs.python.org/3/library/typing.html#typing.TypeAlias)*
6
+
7
+ None
8
+
9
+ Type defining Application Specification state entries
10
+
11
+ ### algokit_utils.DELETABLE_TEMPLATE_NAME
12
+
13
+ None
14
+
15
+ Template variable name used to control if a smart contract is deletable or not at deployment
16
+
17
+ ### algokit_utils.DefaultArgumentType *: [TypeAlias](https://docs.python.org/3/library/typing.html#typing.TypeAlias)*
18
+
19
+ None
20
+
21
+ Literal values describing the types of default argument sources
22
+
23
+ ### algokit_utils.MethodConfigDict *: [TypeAlias](https://docs.python.org/3/library/typing.html#typing.TypeAlias)*
24
+
25
+ None
26
+
27
+ Dictionary of `dict[OnCompletionActionName, CallConfig]` representing allowed actions for each on completion type
28
+
29
+ ### algokit_utils.NOTE_PREFIX
30
+
31
+ ‘ALGOKIT_DEPLOYER:j’
32
+
33
+ ARC-0002 compliant note prefix for algokit_utils deployed applications
34
+
35
+ ### algokit_utils.OnCompleteActionName *: [TypeAlias](https://docs.python.org/3/library/typing.html#typing.TypeAlias)*
36
+
37
+ None
38
+
39
+ String literals representing on completion transaction types
40
+
41
+ ### algokit_utils.TemplateValueDict *: [TypeAlias](https://docs.python.org/3/library/typing.html#typing.TypeAlias)*
42
+
43
+ None
44
+
45
+ Dictionary of `dict[str, int | str | bytes]` representing template variable names and values
46
+
47
+ ### algokit_utils.TemplateValueMapping *: [TypeAlias](https://docs.python.org/3/library/typing.html#typing.TypeAlias)*
48
+
49
+ None
50
+
51
+ Mapping of `str` to `int | str | bytes` representing template variable names and values
52
+
53
+ ### algokit_utils.UPDATABLE_TEMPLATE_NAME
54
+
55
+ None
56
+
57
+ Template variable name used to control if a smart contract is updatable or not at deployment
58
+
59
+ ## Classes
60
+
61
+ ### *class* algokit_utils.ABICallArgs
62
+
63
+ Bases: [`algokit_utils.deploy.DeployCallArgs`](#algokit_utils.DeployCallArgs), `algokit_utils.deploy.ABICall`
64
+
65
+ ABI Parameters used to update or delete an application when calling
66
+ [`deploy()`](#algokit_utils.ApplicationClient.deploy)
67
+
68
+ ### *class* algokit_utils.ABICallArgsDict
69
+
70
+ Bases: [`algokit_utils.deploy.DeployCallArgsDict`](#algokit_utils.DeployCallArgsDict), [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict)
71
+
72
+ ABI Parameters used to update or delete an application when calling
73
+ [`deploy()`](#algokit_utils.ApplicationClient.deploy)
74
+
75
+ ### Initialization
76
+
77
+ Initialize self. See help(type(self)) for accurate signature.
78
+
79
+ ### *class* algokit_utils.ABICreateCallArgs
80
+
81
+ Bases: [`algokit_utils.deploy.DeployCreateCallArgs`](#algokit_utils.DeployCreateCallArgs), `algokit_utils.deploy.ABICall`
82
+
83
+ ABI Parameters used to create an application when calling [`deploy()`](#algokit_utils.ApplicationClient.deploy)
84
+
85
+ ### *class* algokit_utils.ABICreateCallArgsDict
86
+
87
+ Bases: [`algokit_utils.deploy.DeployCreateCallArgsDict`](#algokit_utils.DeployCreateCallArgsDict), [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict)
88
+
89
+ ABI Parameters used to create an application when calling [`deploy()`](#algokit_utils.ApplicationClient.deploy)
90
+
91
+ ### Initialization
92
+
93
+ Initialize self. See help(type(self)) for accurate signature.
94
+
95
+ ### *class* algokit_utils.ABITransactionResponse
96
+
97
+ Bases: [`algokit_utils.models.TransactionResponse`](#algokit_utils.TransactionResponse), [`typing.Generic`](https://docs.python.org/3/library/typing.html#typing.Generic)[`algokit_utils.models.ReturnType`]
98
+
99
+ Response for an ABI call
100
+
101
+ #### decode_error *: [Exception](https://docs.python.org/3/library/exceptions.html#Exception) | [None](https://docs.python.org/3/library/constants.html#None)*
102
+
103
+ None
104
+
105
+ Details of error that occurred when attempting to decode raw_value
106
+
107
+ #### method *: algosdk.abi.Method*
108
+
109
+ None
110
+
111
+ ABI method used to make call
112
+
113
+ #### raw_value *: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes)*
114
+
115
+ None
116
+
117
+ The raw response before ABI decoding
118
+
119
+ #### return_value *: algokit_utils.models.ReturnType*
120
+
121
+ None
122
+
123
+ Decoded ABI result
124
+
125
+ #### tx_info *: [dict](https://docs.python.org/3/library/stdtypes.html#dict)*
126
+
127
+ None
128
+
129
+ Details of transaction
130
+
131
+ ### *class* algokit_utils.Account
132
+
133
+ Holds the private_key and address for an account
134
+
135
+ #### address *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
136
+
137
+ ‘field(…)’
138
+
139
+ Address for this account
140
+
141
+ #### private_key *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
142
+
143
+ None
144
+
145
+ Base64 encoded private key
146
+
147
+ #### *property* public_key *: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes)*
148
+
149
+ The public key for this account
150
+
151
+ #### *property* signer *: [algosdk.atomic_transaction_composer.AccountTransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AccountTransactionSigner)*
152
+
153
+ An AccountTransactionSigner for this account
154
+
155
+ ### *class* algokit_utils.AlgoClientConfig
156
+
157
+ Connection details for connecting to an [`algosdk.v2client.algod.AlgodClient`](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient) or
158
+ [`algosdk.v2client.indexer.IndexerClient`](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/indexer.html#algosdk.v2client.indexer.IndexerClient)
159
+
160
+ #### server *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
161
+
162
+ None
163
+
164
+ URL for the service e.g. `http://localhost:4001` or `https://testnet-api.algonode.cloud`
165
+
166
+ #### token *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
167
+
168
+ None
169
+
170
+ API Token to authenticate with the service
171
+
172
+ ### *class* algokit_utils.AppDeployMetaData
173
+
174
+ Metadata about an application stored in a transaction note during creation.
175
+
176
+ The note is serialized as JSON and prefixed with [`NOTE_PREFIX`](#algokit_utils.NOTE_PREFIX) and stored in the transaction note field
177
+ as part of [`ApplicationClient.deploy()`](#algokit_utils.ApplicationClient.deploy)
178
+
179
+ ### *class* algokit_utils.AppLookup
180
+
181
+ Cache of [`AppMetaData`](#algokit_utils.AppMetaData) for a specific `creator`
182
+
183
+ Can be used as an argument to [`ApplicationClient`](#algokit_utils.ApplicationClient) to reduce the number of calls when deploying multiple
184
+ apps or discovering multiple app_ids
185
+
186
+ ### *class* algokit_utils.AppMetaData
187
+
188
+ Bases: [`algokit_utils.deploy.AppReference`](#algokit_utils.AppReference), [`algokit_utils.deploy.AppDeployMetaData`](#algokit_utils.AppDeployMetaData)
189
+
190
+ Metadata about a deployed app
191
+
192
+ ### *class* algokit_utils.AppReference
193
+
194
+ Information about an Algorand app
195
+
196
+ ### *class* algokit_utils.ApplicationClient(algod_client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), app_spec: [algokit_utils.application_specification.ApplicationSpecification](#algokit_utils.ApplicationSpecification) | [pathlib.Path](https://docs.python.org/3/library/pathlib.html#pathlib.Path), \*, app_id: [int](https://docs.python.org/3/library/functions.html#int) = 0, creator: [str](https://docs.python.org/3/library/stdtypes.html#str) | [algokit_utils.models.Account](#algokit_utils.Account) | [None](https://docs.python.org/3/library/constants.html#None) = None, indexer_client: IndexerClient | [None](https://docs.python.org/3/library/constants.html#None) = None, existing_deployments: [algokit_utils.deploy.AppLookup](#algokit_utils.AppLookup) | [None](https://docs.python.org/3/library/constants.html#None) = None, signer: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [algokit_utils.models.Account](#algokit_utils.Account) | [None](https://docs.python.org/3/library/constants.html#None) = None, sender: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None, suggested_params: [algosdk.transaction.SuggestedParams](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.SuggestedParams) | [None](https://docs.python.org/3/library/constants.html#None) = None, template_values: [algokit_utils.deploy.TemplateValueMapping](#algokit_utils.TemplateValueMapping) | [None](https://docs.python.org/3/library/constants.html#None) = None, app_name: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None)
197
+
198
+ A class that wraps an ARC-0032 app spec and provides high productivity methods to deploy and call the app
199
+
200
+ ### Initialization
201
+
202
+ ApplicationClient can be created with an app_id to interact with an existing application, alternatively
203
+ it can be created with a creator and indexer_client specified to find existing applications by name and creator.
204
+
205
+ * **Parameters:**
206
+ * **algod_client** (*AlgodClient*) – AlgoSDK algod client
207
+ * **app_spec** ([*ApplicationSpecification*](#algokit_utils.ApplicationSpecification) *|* *Path*) – An Application Specification or the path to one
208
+ * **app_id** ([*int*](https://docs.python.org/3/library/functions.html#int)) – The app_id of an existing application, to instead find the application by creator and name
209
+ use the creator and indexer_client parameters
210
+ * **creator** ([*str*](https://docs.python.org/3/library/stdtypes.html#str) *|* [*Account*](#algokit_utils.Account)) – The address or Account of the app creator to resolve the app_id
211
+ * **indexer_client** (*IndexerClient*) – AlgoSDK indexer client, only required if deploying or finding app_id by
212
+ creator and app name
213
+ * **existing_deployments** ([*AppLookup*](#algokit_utils.AppLookup)) –
214
+ * **signer** (*TransactionSigner* *|* [*Account*](#algokit_utils.Account)) – Account or signer to use to sign transactions, if not specified and
215
+ creator was passed as an Account will use that.
216
+ * **sender** ([*str*](https://docs.python.org/3/library/stdtypes.html#str)) – Address to use as the sender for all transactions, will use the address associated with the
217
+ signer if not specified.
218
+ * **template_values** ([*TemplateValueMapping*](#algokit_utils.TemplateValueMapping)) – Values to use for TMPL_\* template variables, dictionary keys should
219
+ *NOT* include the TMPL_ prefix
220
+ * **app_name** ([*str*](https://docs.python.org/3/library/stdtypes.html#str) *|* [*None*](https://docs.python.org/3/library/constants.html#None)) – Name of application to use when deploying, defaults to name defined on the
221
+ Application Specification
222
+
223
+ #### add_method_call(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*, abi_args: algokit_utils.models.ABIArgsDict | [None](https://docs.python.org/3/library/constants.html#None) = None, app_id: [int](https://docs.python.org/3/library/functions.html#int) | [None](https://docs.python.org/3/library/constants.html#None) = None, parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, on_complete: [algosdk.transaction.OnComplete](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.OnComplete) = transaction.OnComplete.NoOpOC, local_schema: [algosdk.transaction.StateSchema](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.StateSchema) | [None](https://docs.python.org/3/library/constants.html#None) = None, global_schema: [algosdk.transaction.StateSchema](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.StateSchema) | [None](https://docs.python.org/3/library/constants.html#None) = None, approval_program: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [None](https://docs.python.org/3/library/constants.html#None) = None, clear_program: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [None](https://docs.python.org/3/library/constants.html#None) = None, extra_pages: [int](https://docs.python.org/3/library/functions.html#int) | [None](https://docs.python.org/3/library/constants.html#None) = None, app_args: [list](https://docs.python.org/3/library/stdtypes.html#list)[[bytes](https://docs.python.org/3/library/stdtypes.html#bytes)] | [None](https://docs.python.org/3/library/constants.html#None) = None, call_config: [algokit_utils.application_specification.CallConfig](#algokit_utils.CallConfig) = au_spec.CallConfig.CALL) → [None](https://docs.python.org/3/library/constants.html#None)
224
+
225
+ Adds a transaction to the AtomicTransactionComposer passed
226
+
227
+ #### call(call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.OnCompleteCallParameters](#algokit_utils.OnCompleteCallParameters) | [algokit_utils.models.OnCompleteCallParametersDict](#algokit_utils.OnCompleteCallParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse) | [algokit_utils.models.ABITransactionResponse](#algokit_utils.ABITransactionResponse)
228
+
229
+ Submits a signed transaction with specified parameters
230
+
231
+ #### clear_state(transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, app_args: [list](https://docs.python.org/3/library/stdtypes.html#list)[[bytes](https://docs.python.org/3/library/stdtypes.html#bytes)] | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse)
232
+
233
+ Submits a signed transaction with on_complete=ClearState
234
+
235
+ #### close_out(call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse) | [algokit_utils.models.ABITransactionResponse](#algokit_utils.ABITransactionResponse)
236
+
237
+ Submits a signed transaction with on_complete=CloseOut
238
+
239
+ #### compose_call(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), /, call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.OnCompleteCallParameters](#algokit_utils.OnCompleteCallParameters) | [algokit_utils.models.OnCompleteCallParametersDict](#algokit_utils.OnCompleteCallParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [None](https://docs.python.org/3/library/constants.html#None)
240
+
241
+ Adds a signed transaction with specified parameters to atc
242
+
243
+ #### compose_clear_state(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), /, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, app_args: [list](https://docs.python.org/3/library/stdtypes.html#list)[[bytes](https://docs.python.org/3/library/stdtypes.html#bytes)] | [None](https://docs.python.org/3/library/constants.html#None) = None) → [None](https://docs.python.org/3/library/constants.html#None)
244
+
245
+ Adds a signed transaction with on_complete=ClearState to atc
246
+
247
+ #### compose_close_out(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), /, call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [None](https://docs.python.org/3/library/constants.html#None)
248
+
249
+ Adds a signed transaction with on_complete=CloseOut to ac
250
+
251
+ #### compose_create(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), /, call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.CreateCallParameters](#algokit_utils.CreateCallParameters) | [algokit_utils.models.CreateCallParametersDict](#algokit_utils.CreateCallParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [None](https://docs.python.org/3/library/constants.html#None)
252
+
253
+ Adds a signed transaction with application id == 0 and the schema and source of client’s app_spec to atc
254
+
255
+ #### compose_delete(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), /, call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [None](https://docs.python.org/3/library/constants.html#None)
256
+
257
+ Adds a signed transaction with on_complete=DeleteApplication to atc
258
+
259
+ #### compose_opt_in(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), /, call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [None](https://docs.python.org/3/library/constants.html#None)
260
+
261
+ Adds a signed transaction with on_complete=OptIn to atc
262
+
263
+ #### compose_update(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), /, call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [None](https://docs.python.org/3/library/constants.html#None)
264
+
265
+ Adds a signed transaction with on_complete=UpdateApplication to atc
266
+
267
+ #### create(call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.CreateCallParameters](#algokit_utils.CreateCallParameters) | [algokit_utils.models.CreateCallParametersDict](#algokit_utils.CreateCallParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse) | [algokit_utils.models.ABITransactionResponse](#algokit_utils.ABITransactionResponse)
268
+
269
+ Submits a signed transaction with application id == 0 and the schema and source of client’s app_spec
270
+
271
+ #### delete(call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse) | [algokit_utils.models.ABITransactionResponse](#algokit_utils.ABITransactionResponse)
272
+
273
+ Submits a signed transaction with on_complete=DeleteApplication
274
+
275
+ #### deploy(version: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*, signer: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [None](https://docs.python.org/3/library/constants.html#None) = None, sender: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None, allow_update: [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, allow_delete: [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, on_update: [algokit_utils.deploy.OnUpdate](#algokit_utils.OnUpdate) = au_deploy.OnUpdate.Fail, on_schema_break: [algokit_utils.deploy.OnSchemaBreak](#algokit_utils.OnSchemaBreak) = au_deploy.OnSchemaBreak.Fail, template_values: [algokit_utils.deploy.TemplateValueMapping](#algokit_utils.TemplateValueMapping) | [None](https://docs.python.org/3/library/constants.html#None) = None, create_args: [algokit_utils.deploy.ABICreateCallArgs](#algokit_utils.ABICreateCallArgs) | [algokit_utils.deploy.ABICreateCallArgsDict](#algokit_utils.ABICreateCallArgsDict) | [algokit_utils.deploy.DeployCreateCallArgs](#algokit_utils.DeployCreateCallArgs) | [None](https://docs.python.org/3/library/constants.html#None) = None, update_args: [algokit_utils.deploy.ABICallArgs](#algokit_utils.ABICallArgs) | [algokit_utils.deploy.ABICallArgsDict](#algokit_utils.ABICallArgsDict) | [algokit_utils.deploy.DeployCallArgs](#algokit_utils.DeployCallArgs) | [None](https://docs.python.org/3/library/constants.html#None) = None, delete_args: [algokit_utils.deploy.ABICallArgs](#algokit_utils.ABICallArgs) | [algokit_utils.deploy.ABICallArgsDict](#algokit_utils.ABICallArgsDict) | [algokit_utils.deploy.DeployCallArgs](#algokit_utils.DeployCallArgs) | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algokit_utils.deploy.DeployResponse](#algokit_utils.DeployResponse)
276
+
277
+ Deploy an application and update client to reference it.
278
+
279
+ Idempotently deploy (create, update/delete if changed) an app against the given name via the given creator
280
+ account, including deploy-time template placeholder substitutions.
281
+ To understand the architecture decisions behind this functionality please see
282
+ [https://github.com/algorandfoundation/algokit-cli/blob/main/docs/architecture-decisions/2023-01-12_smart-contract-deployment.md](https://github.com/algorandfoundation/algokit-cli/blob/main/docs/architecture-decisions/2023-01-12_smart-contract-deployment.md)
283
+
284
+ #### NOTE
285
+ If there is a breaking state schema change to an existing app (and `on_schema_break` is set to
286
+ ‘ReplaceApp’ the existing app will be deleted and re-created.
287
+
288
+ #### NOTE
289
+ If there is an update (different TEAL code) to an existing app (and `on_update` is set to ‘ReplaceApp’)
290
+ the existing app will be deleted and re-created.
291
+
292
+ * **Parameters:**
293
+ * **version** ([*str*](https://docs.python.org/3/library/stdtypes.html#str)) – version to use when creating or updating app, if None version will be auto incremented
294
+ * **signer** ([*algosdk.atomic_transaction_composer.TransactionSigner*](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner)) – signer to use when deploying app
295
+ , if None uses self.signer
296
+ * **sender** ([*str*](https://docs.python.org/3/library/stdtypes.html#str)) – sender address to use when deploying app, if None uses self.sender
297
+ * **allow_delete** ([*bool*](https://docs.python.org/3/library/functions.html#bool)) – Used to set the `TMPL_DELETABLE` template variable to conditionally control if an app
298
+ can be deleted
299
+ * **allow_update** ([*bool*](https://docs.python.org/3/library/functions.html#bool)) – Used to set the `TMPL_UPDATABLE` template variable to conditionally control if an app
300
+ can be updated
301
+ * **on_update** ([*OnUpdate*](#algokit_utils.OnUpdate)) – Determines what action to take if an application update is required
302
+ * **on_schema_break** ([*OnSchemaBreak*](#algokit_utils.OnSchemaBreak)) – Determines what action to take if an application schema requirements
303
+ has increased beyond the current allocation
304
+ * **template_values** ([*dict*](https://docs.python.org/3/library/stdtypes.html#dict) *[*[*str*](https://docs.python.org/3/library/stdtypes.html#str) *,* [*int*](https://docs.python.org/3/library/functions.html#int) *|*[*str*](https://docs.python.org/3/library/stdtypes.html#str) *|*[*bytes*](https://docs.python.org/3/library/stdtypes.html#bytes) *]*) – Values to use for `TMPL_*` template variables, dictionary keys
305
+ should *NOT* include the TMPL_ prefix
306
+ * **create_args** ([*ABICreateCallArgs*](#algokit_utils.ABICreateCallArgs)) – Arguments used when creating an application
307
+ * **update_args** ([*ABICallArgs*](#algokit_utils.ABICallArgs) *|* [*ABICallArgsDict*](#algokit_utils.ABICallArgsDict)) – Arguments used when updating an application
308
+ * **delete_args** ([*ABICallArgs*](#algokit_utils.ABICallArgs) *|* [*ABICallArgsDict*](#algokit_utils.ABICallArgsDict)) – Arguments used when deleting an application
309
+ * **Return DeployResponse:**
310
+ details action taken and relevant transactions
311
+ * **Raises:**
312
+ **DeploymentError** – If the deployment failed
313
+
314
+ #### export_source_map() → [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)
315
+
316
+ Export approval source map to JSON, can be later re-imported with `import_source_map`
317
+
318
+ #### get_global_state(\*, raw: [bool](https://docs.python.org/3/library/functions.html#bool) = False) → [dict](https://docs.python.org/3/library/stdtypes.html#dict)[[bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str), [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [int](https://docs.python.org/3/library/functions.html#int)]
319
+
320
+ Gets the global state info associated with app_id
321
+
322
+ #### get_local_state(account: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*, raw: [bool](https://docs.python.org/3/library/functions.html#bool) = False) → [dict](https://docs.python.org/3/library/stdtypes.html#dict)[[bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str), [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [int](https://docs.python.org/3/library/functions.html#int)]
323
+
324
+ Gets the local state info for associated app_id and account/sender
325
+
326
+ #### get_signer_sender(signer: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [None](https://docs.python.org/3/library/constants.html#None) = None, sender: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None) → [tuple](https://docs.python.org/3/library/stdtypes.html#tuple)[[algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [None](https://docs.python.org/3/library/constants.html#None), [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)]
327
+
328
+ Return signer and sender, using default values on client if not specified
329
+
330
+ Will use provided values if given, otherwise will fall back to values defined on client.
331
+ If no sender is specified then will attempt to obtain sender from signer
332
+
333
+ #### import_source_map(source_map_json: [str](https://docs.python.org/3/library/stdtypes.html#str)) → [None](https://docs.python.org/3/library/constants.html#None)
334
+
335
+ Import approval source from JSON exported by `export_source_map`
336
+
337
+ #### opt_in(call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse) | [algokit_utils.models.ABITransactionResponse](#algokit_utils.ABITransactionResponse)
338
+
339
+ Submits a signed transaction with on_complete=OptIn
340
+
341
+ #### prepare(signer: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [algokit_utils.models.Account](#algokit_utils.Account) | [None](https://docs.python.org/3/library/constants.html#None) = None, sender: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None, app_id: [int](https://docs.python.org/3/library/functions.html#int) | [None](https://docs.python.org/3/library/constants.html#None) = None, template_values: [algokit_utils.deploy.TemplateValueDict](#algokit_utils.TemplateValueDict) | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algokit_utils.application_client.ApplicationClient](#algokit_utils.ApplicationClient)
342
+
343
+ Creates a copy of this ApplicationClient, using the new signer, sender and app_id values if provided.
344
+ Will also substitute provided template_values into the associated app_spec in the copy
345
+
346
+ #### resolve(to_resolve: [algokit_utils.application_specification.DefaultArgumentDict](#algokit_utils.DefaultArgumentDict)) → [int](https://docs.python.org/3/library/functions.html#int) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [bytes](https://docs.python.org/3/library/stdtypes.html#bytes)
347
+
348
+ Resolves the default value for an ABI method, based on app_spec
349
+
350
+ #### resolve_signer_sender(signer: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [None](https://docs.python.org/3/library/constants.html#None) = None, sender: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None) → [tuple](https://docs.python.org/3/library/stdtypes.html#tuple)[[algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner), [str](https://docs.python.org/3/library/stdtypes.html#str)]
351
+
352
+ Return signer and sender, using default values on client if not specified
353
+
354
+ Will use provided values if given, otherwise will fall back to values defined on client.
355
+ If no sender is specified then will attempt to obtain sender from signer
356
+
357
+ * **Raises:**
358
+ [**ValueError**](https://docs.python.org/3/library/exceptions.html#ValueError) – Raised if a signer or sender is not provided. See `get_signer_sender`
359
+ for variant with no exception
360
+
361
+ #### update(call_abi_method: algokit_utils.models.ABIMethod | [bool](https://docs.python.org/3/library/functions.html#bool) | [None](https://docs.python.org/3/library/constants.html#None) = None, transaction_parameters: [algokit_utils.models.TransactionParameters](#algokit_utils.TransactionParameters) | [algokit_utils.models.TransactionParametersDict](#algokit_utils.TransactionParametersDict) | [None](https://docs.python.org/3/library/constants.html#None) = None, \*\*abi_kwargs: algokit_utils.models.ABIArgType) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse) | [algokit_utils.models.ABITransactionResponse](#algokit_utils.ABITransactionResponse)
362
+
363
+ Submits a signed transaction with on_complete=UpdateApplication
364
+
365
+ ### *class* algokit_utils.ApplicationSpecification
366
+
367
+ ARC-0032 application specification
368
+
369
+ See [https://github.com/algorandfoundation/ARCs/pull/150](https://github.com/algorandfoundation/ARCs/pull/150)
370
+
371
+ #### export(directory: [pathlib.Path](https://docs.python.org/3/library/pathlib.html#pathlib.Path) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None) → [None](https://docs.python.org/3/library/constants.html#None)
372
+
373
+ write out the artifacts generated by the application to disk
374
+
375
+ Args:
376
+ directory(optional): path to the directory where the artifacts should be written
377
+
378
+ ### *class* algokit_utils.CallConfig
379
+
380
+ Bases: [`enum.IntFlag`](https://docs.python.org/3/library/enum.html#enum.IntFlag)
381
+
382
+ Describes the type of calls a method can be used for based on [`algosdk.transaction.OnComplete`](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.OnComplete) type
383
+
384
+ ### Initialization
385
+
386
+ Initialize self. See help(type(self)) for accurate signature.
387
+
388
+ #### ALL
389
+
390
+ 3
391
+
392
+ Handle the specified on completion type for both create and normal application calls
393
+
394
+ #### CALL
395
+
396
+ 1
397
+
398
+ Only handle the specified on completion type for application calls
399
+
400
+ #### CREATE
401
+
402
+ 2
403
+
404
+ Only handle the specified on completion type for application create calls
405
+
406
+ #### NEVER
407
+
408
+ 0
409
+
410
+ Never handle the specified on completion type
411
+
412
+ ### *class* algokit_utils.CreateCallParameters
413
+
414
+ Bases: [`algokit_utils.models.OnCompleteCallParameters`](#algokit_utils.OnCompleteCallParameters)
415
+
416
+ Additional parameters that can be included in a transaction when using the
417
+ ApplicationClient.create/compose_create methods
418
+
419
+ ### *class* algokit_utils.CreateCallParametersDict
420
+
421
+ Bases: [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict), [`algokit_utils.models.OnCompleteCallParametersDict`](#algokit_utils.OnCompleteCallParametersDict)
422
+
423
+ Additional parameters that can be included in a transaction when using the
424
+ ApplicationClient.create/compose_create methods
425
+
426
+ ### Initialization
427
+
428
+ Initialize self. See help(type(self)) for accurate signature.
429
+
430
+ ### *class* algokit_utils.CreateTransactionParameters
431
+
432
+ Bases: [`algokit_utils.models.TransactionParameters`](#algokit_utils.TransactionParameters)
433
+
434
+ Additional parameters that can be included in a transaction when calling a create method
435
+
436
+ ### *class* algokit_utils.DefaultArgumentDict
437
+
438
+ Bases: [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict)
439
+
440
+ DefaultArgument is a container for any arguments that may
441
+ be resolved prior to calling some target method
442
+
443
+ ### Initialization
444
+
445
+ Initialize self. See help(type(self)) for accurate signature.
446
+
447
+ ### *class* algokit_utils.DeployCallArgs
448
+
449
+ Parameters used to update or delete an application when calling
450
+ [`deploy()`](#algokit_utils.ApplicationClient.deploy)
451
+
452
+ ### *class* algokit_utils.DeployCallArgsDict
453
+
454
+ Bases: [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict)
455
+
456
+ Parameters used to update or delete an application when calling
457
+ [`deploy()`](#algokit_utils.ApplicationClient.deploy)
458
+
459
+ ### Initialization
460
+
461
+ Initialize self. See help(type(self)) for accurate signature.
462
+
463
+ ### *class* algokit_utils.DeployCreateCallArgs
464
+
465
+ Bases: [`algokit_utils.deploy.DeployCallArgs`](#algokit_utils.DeployCallArgs)
466
+
467
+ Parameters used to create an application when calling [`deploy()`](#algokit_utils.ApplicationClient.deploy)
468
+
469
+ ### *class* algokit_utils.DeployCreateCallArgsDict
470
+
471
+ Bases: [`algokit_utils.deploy.DeployCallArgsDict`](#algokit_utils.DeployCallArgsDict), [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict)
472
+
473
+ Parameters used to create an application when calling [`deploy()`](#algokit_utils.ApplicationClient.deploy)
474
+
475
+ ### Initialization
476
+
477
+ Initialize self. See help(type(self)) for accurate signature.
478
+
479
+ ### *class* algokit_utils.DeployResponse
480
+
481
+ Describes the action taken during deployment, related transactions and the [`AppMetaData`](#algokit_utils.AppMetaData)
482
+
483
+ ### *class* algokit_utils.EnsureBalanceParameters
484
+
485
+ Parameters for ensuring an account has a minimum number of µALGOs
486
+
487
+ #### account_to_fund *: [algokit_utils.models.Account](#algokit_utils.Account) | [algosdk.atomic_transaction_composer.AccountTransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AccountTransactionSigner) | [str](https://docs.python.org/3/library/stdtypes.html#str)*
488
+
489
+ None
490
+
491
+ The account address that will receive the µALGOs
492
+
493
+ #### fee_micro_algos *: [int](https://docs.python.org/3/library/functions.html#int) | [None](https://docs.python.org/3/library/constants.html#None)*
494
+
495
+ None
496
+
497
+ (optional) The flat fee you want to pay, useful for covering extra fees in a transaction group or app call
498
+
499
+ #### funding_source *: [algokit_utils.models.Account](#algokit_utils.Account) | [algosdk.atomic_transaction_composer.AccountTransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AccountTransactionSigner) | [algokit_utils.dispenser_api.TestNetDispenserApiClient](#algokit_utils.TestNetDispenserApiClient) | [None](https://docs.python.org/3/library/constants.html#None)*
500
+
501
+ None
502
+
503
+ The account (with private key) or signer that will send the µALGOs,
504
+ will use `get_dispenser_account` by default. Alternatively you can pass an instance of [`TestNetDispenserApiClient`](https://github.com/algorandfoundation/algokit-utils-py/blob/main/docs/source/capabilities/dispenser-client.md)
505
+ which will allow you to interact with [AlgoKit TestNet Dispenser API](https://github.com/algorandfoundation/algokit-cli/blob/main/docs/features/dispenser.md).
506
+
507
+ #### max_fee_micro_algos *: [int](https://docs.python.org/3/library/functions.html#int) | [None](https://docs.python.org/3/library/constants.html#None)*
508
+
509
+ None
510
+
511
+ (optional)The maximum fee that you are happy to pay (default: unbounded) -
512
+ if this is set it’s possible the transaction could get rejected during network congestion
513
+
514
+ #### min_funding_increment_micro_algos *: [int](https://docs.python.org/3/library/functions.html#int)*
515
+
516
+ 0
517
+
518
+ When issuing a funding amount, the minimum amount to transfer (avoids many small transfers if this gets
519
+ called often on an active account)
520
+
521
+ #### min_spending_balance_micro_algos *: [int](https://docs.python.org/3/library/functions.html#int)*
522
+
523
+ None
524
+
525
+ The minimum balance of ALGOs that the account should have available to spend (i.e. on top of
526
+ minimum balance requirement)
527
+
528
+ #### note *: [str](https://docs.python.org/3/library/stdtypes.html#str) | [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [None](https://docs.python.org/3/library/constants.html#None)*
529
+
530
+ None
531
+
532
+ The (optional) transaction note, default: “Funding account to meet minimum requirement
533
+
534
+ #### suggested_params *: [algosdk.transaction.SuggestedParams](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.SuggestedParams) | [None](https://docs.python.org/3/library/constants.html#None)*
535
+
536
+ None
537
+
538
+ (optional) transaction parameters
539
+
540
+ ### *class* algokit_utils.EnsureFundedResponse
541
+
542
+ Response for ensuring an account has a minimum number of µALGOs
543
+
544
+ #### transaction_id *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
545
+
546
+ None
547
+
548
+ The amount of µALGOs that were funded
549
+
550
+ ### *class* algokit_utils.MethodHints
551
+
552
+ MethodHints provides hints to the caller about how to call the method
553
+
554
+ ### *class* algokit_utils.OnCompleteCallParameters
555
+
556
+ Bases: [`algokit_utils.models.TransactionParameters`](#algokit_utils.TransactionParameters)
557
+
558
+ Additional parameters that can be included in a transaction when using the
559
+ ApplicationClient.call/compose_call methods
560
+
561
+ ### *class* algokit_utils.OnCompleteCallParametersDict
562
+
563
+ Bases: [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict), [`algokit_utils.models.TransactionParametersDict`](#algokit_utils.TransactionParametersDict)
564
+
565
+ Additional parameters that can be included in a transaction when using the
566
+ ApplicationClient.call/compose_call methods
567
+
568
+ ### Initialization
569
+
570
+ Initialize self. See help(type(self)) for accurate signature.
571
+
572
+ ### *class* algokit_utils.OnSchemaBreak(\*args, \*\*kwds)
573
+
574
+ Bases: [`enum.Enum`](https://docs.python.org/3/library/enum.html#enum.Enum)
575
+
576
+ Action to take if an Application’s schema has breaking changes
577
+
578
+ ### Initialization
579
+
580
+ #### AppendApp
581
+
582
+ 3
583
+
584
+ Create a new Application
585
+
586
+ #### Fail
587
+
588
+ 0
589
+
590
+ Fail the deployment
591
+
592
+ #### ReplaceApp
593
+
594
+ 2
595
+
596
+ Create a new Application and delete the old Application in a single transaction
597
+
598
+ ### *class* algokit_utils.OnUpdate(\*args, \*\*kwds)
599
+
600
+ Bases: [`enum.Enum`](https://docs.python.org/3/library/enum.html#enum.Enum)
601
+
602
+ Action to take if an Application has been updated
603
+
604
+ ### Initialization
605
+
606
+ #### AppendApp
607
+
608
+ 3
609
+
610
+ Create a new application
611
+
612
+ #### Fail
613
+
614
+ 0
615
+
616
+ Fail the deployment
617
+
618
+ #### ReplaceApp
619
+
620
+ 2
621
+
622
+ Create a new Application and delete the old Application in a single transaction
623
+
624
+ #### UpdateApp
625
+
626
+ 1
627
+
628
+ Update the Application with the new approval and clear programs
629
+
630
+ ### *class* algokit_utils.OperationPerformed(\*args, \*\*kwds)
631
+
632
+ Bases: [`enum.Enum`](https://docs.python.org/3/library/enum.html#enum.Enum)
633
+
634
+ Describes the actions taken during deployment
635
+
636
+ ### Initialization
637
+
638
+ #### Create
639
+
640
+ 1
641
+
642
+ No existing Application was found, created a new Application
643
+
644
+ #### Nothing
645
+
646
+ 0
647
+
648
+ An existing Application was found
649
+
650
+ #### Replace
651
+
652
+ 3
653
+
654
+ An existing Application was found, but was out of date, created a new Application and deleted the original
655
+
656
+ #### Update
657
+
658
+ 2
659
+
660
+ An existing Application was found, but was out of date, updated to latest version
661
+
662
+ ### *class* algokit_utils.Program(program: [str](https://docs.python.org/3/library/stdtypes.html#str), client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient))
663
+
664
+ A compiled TEAL program
665
+
666
+ ### Initialization
667
+
668
+ Fully compile the program source to binary and generate a
669
+ source map for matching pc to line number
670
+
671
+ ### *class* algokit_utils.TestNetDispenserApiClient(auth_token: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None) = None, request_timeout: [int](https://docs.python.org/3/library/functions.html#int) = DISPENSER_REQUEST_TIMEOUT)
672
+
673
+ Client for interacting with the [AlgoKit TestNet Dispenser API](https://github.com/algorandfoundation/algokit/blob/main/docs/testnet_api.md).
674
+ To get started create a new access token via `algokit dispenser login --ci`
675
+ and pass it to the client constructor as `auth_token`.
676
+ Alternatively set the access token as environment variable `ALGOKIT_DISPENSER_ACCESS_TOKEN`,
677
+ and it will be auto loaded. If both are set, the constructor argument takes precedence.
678
+
679
+ Default request timeout is 15 seconds. Modify by passing `request_timeout` to the constructor.
680
+
681
+ ### Initialization
682
+
683
+ #### fund(address: [str](https://docs.python.org/3/library/stdtypes.html#str), amount: [int](https://docs.python.org/3/library/functions.html#int), asset_id: [int](https://docs.python.org/3/library/functions.html#int)) → algokit_utils.dispenser_api.DispenserFundResponse
684
+
685
+ Fund an account with Algos from the dispenser API
686
+
687
+ #### get_limit(address: [str](https://docs.python.org/3/library/stdtypes.html#str)) → algokit_utils.dispenser_api.DispenserLimitResponse
688
+
689
+ Get current limit for an account with Algos from the dispenser API
690
+
691
+ #### refund(refund_txn_id: [str](https://docs.python.org/3/library/stdtypes.html#str)) → [None](https://docs.python.org/3/library/constants.html#None)
692
+
693
+ Register a refund for a transaction with the dispenser API
694
+
695
+ ### *class* algokit_utils.TransactionParameters
696
+
697
+ Additional parameters that can be included in a transaction
698
+
699
+ #### accounts *: [list](https://docs.python.org/3/library/stdtypes.html#list)[[str](https://docs.python.org/3/library/stdtypes.html#str)] | [None](https://docs.python.org/3/library/constants.html#None)*
700
+
701
+ None
702
+
703
+ Accounts to include in transaction
704
+
705
+ #### boxes *: [collections.abc.Sequence](https://docs.python.org/3/library/collections.abc.html#collections.abc.Sequence)[[tuple](https://docs.python.org/3/library/stdtypes.html#tuple)[[int](https://docs.python.org/3/library/functions.html#int), [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [bytearray](https://docs.python.org/3/library/stdtypes.html#bytearray) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [int](https://docs.python.org/3/library/functions.html#int)]] | [None](https://docs.python.org/3/library/constants.html#None)*
706
+
707
+ None
708
+
709
+ Box references to include in transaction. A sequence of (app id, box key) tuples
710
+
711
+ #### foreign_apps *: [list](https://docs.python.org/3/library/stdtypes.html#list)[[int](https://docs.python.org/3/library/functions.html#int)] | [None](https://docs.python.org/3/library/constants.html#None)*
712
+
713
+ None
714
+
715
+ List of foreign apps (by app id) to include in transaction
716
+
717
+ #### foreign_assets *: [list](https://docs.python.org/3/library/stdtypes.html#list)[[int](https://docs.python.org/3/library/functions.html#int)] | [None](https://docs.python.org/3/library/constants.html#None)*
718
+
719
+ None
720
+
721
+ List of foreign assets (by asset id) to include in transaction
722
+
723
+ #### lease *: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)*
724
+
725
+ None
726
+
727
+ Lease value for this transaction
728
+
729
+ #### note *: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)*
730
+
731
+ None
732
+
733
+ Note for this transaction
734
+
735
+ #### rekey_to *: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)*
736
+
737
+ None
738
+
739
+ Address to rekey to
740
+
741
+ #### sender *: [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)*
742
+
743
+ None
744
+
745
+ Sender of this transaction
746
+
747
+ #### signer *: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [None](https://docs.python.org/3/library/constants.html#None)*
748
+
749
+ None
750
+
751
+ Signer to use when signing this transaction
752
+
753
+ #### suggested_params *: [algosdk.transaction.SuggestedParams](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.SuggestedParams) | [None](https://docs.python.org/3/library/constants.html#None)*
754
+
755
+ None
756
+
757
+ SuggestedParams to use for this transaction
758
+
759
+ ### *class* algokit_utils.TransactionParametersDict
760
+
761
+ Bases: [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict)
762
+
763
+ Additional parameters that can be included in a transaction
764
+
765
+ ### Initialization
766
+
767
+ Initialize self. See help(type(self)) for accurate signature.
768
+
769
+ #### accounts *: [list](https://docs.python.org/3/library/stdtypes.html#list)[[str](https://docs.python.org/3/library/stdtypes.html#str)]*
770
+
771
+ None
772
+
773
+ Accounts to include in transaction
774
+
775
+ #### boxes *: [collections.abc.Sequence](https://docs.python.org/3/library/collections.abc.html#collections.abc.Sequence)[[tuple](https://docs.python.org/3/library/stdtypes.html#tuple)[[int](https://docs.python.org/3/library/functions.html#int), [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [bytearray](https://docs.python.org/3/library/stdtypes.html#bytearray) | [str](https://docs.python.org/3/library/stdtypes.html#str) | [int](https://docs.python.org/3/library/functions.html#int)]]*
776
+
777
+ None
778
+
779
+ Box references to include in transaction. A sequence of (app id, box key) tuples
780
+
781
+ #### foreign_apps *: [list](https://docs.python.org/3/library/stdtypes.html#list)[[int](https://docs.python.org/3/library/functions.html#int)]*
782
+
783
+ None
784
+
785
+ List of foreign apps (by app id) to include in transaction
786
+
787
+ #### foreign_assets *: [list](https://docs.python.org/3/library/stdtypes.html#list)[[int](https://docs.python.org/3/library/functions.html#int)]*
788
+
789
+ None
790
+
791
+ List of foreign assets (by asset id) to include in transaction
792
+
793
+ #### lease *: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str)*
794
+
795
+ None
796
+
797
+ Lease value for this transaction
798
+
799
+ #### note *: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes) | [str](https://docs.python.org/3/library/stdtypes.html#str)*
800
+
801
+ None
802
+
803
+ Note for this transaction
804
+
805
+ #### rekey_to *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
806
+
807
+ None
808
+
809
+ Address to rekey to
810
+
811
+ #### sender *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
812
+
813
+ None
814
+
815
+ Sender of this transaction
816
+
817
+ #### signer *: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner)*
818
+
819
+ None
820
+
821
+ Signer to use when signing this transaction
822
+
823
+ #### suggested_params *: [algosdk.transaction.SuggestedParams](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.SuggestedParams)*
824
+
825
+ None
826
+
827
+ SuggestedParams to use for this transaction
828
+
829
+ ### *class* algokit_utils.TransactionResponse
830
+
831
+ Response for a non ABI call
832
+
833
+ #### confirmed_round *: [int](https://docs.python.org/3/library/functions.html#int) | [None](https://docs.python.org/3/library/constants.html#None)*
834
+
835
+ None
836
+
837
+ Round transaction was confirmed, `None` if call was a from a dry-run
838
+
839
+ #### *static* from_atr(result: [algosdk.atomic_transaction_composer.AtomicTransactionResponse](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionResponse) | [algosdk.atomic_transaction_composer.SimulateAtomicTransactionResponse](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.SimulateAtomicTransactionResponse), transaction_index: [int](https://docs.python.org/3/library/functions.html#int) = -1) → [algokit_utils.models.TransactionResponse](#algokit_utils.TransactionResponse)
840
+
841
+ Returns either an ABITransactionResponse or a TransactionResponse based on the type of the transaction
842
+ referred to by transaction_index
843
+
844
+ * **Parameters:**
845
+ * **result** (*AtomicTransactionResponse*) – Result containing one or more transactions
846
+ * **transaction_index** ([*int*](https://docs.python.org/3/library/functions.html#int)) – Which transaction in the result to return, defaults to -1 (the last transaction)
847
+
848
+ #### tx_id *: [str](https://docs.python.org/3/library/stdtypes.html#str)*
849
+
850
+ None
851
+
852
+ Transaction Id
853
+
854
+ ### *class* algokit_utils.TransferAssetParameters
855
+
856
+ Bases: `algokit_utils._transfer.TransferParametersBase`
857
+
858
+ Parameters for transferring assets between accounts
859
+
860
+ Args:
861
+ asset_id (int): The asset id that will be transfered
862
+ amount (int): The amount to send
863
+ clawback_from (str | None): An address of a target account from which to perform a clawback operation. Please
864
+ note, in such cases senderAccount must be equal to clawback field on ASA metadata.
865
+
866
+ ### *class* algokit_utils.TransferParameters
867
+
868
+ Bases: `algokit_utils._transfer.TransferParametersBase`
869
+
870
+ Parameters for transferring µALGOs between accounts
871
+
872
+ ## Functions
873
+
874
+ ### algokit_utils.create_kmd_wallet_account(kmd_client: [algosdk.kmd.KMDClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/kmd.html#algosdk.kmd.KMDClient), name: [str](https://docs.python.org/3/library/stdtypes.html#str)) → [algokit_utils.models.Account](#algokit_utils.Account)
875
+
876
+ Creates a wallet with specified name
877
+
878
+ ### algokit_utils.ensure_funded(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), parameters: [algokit_utils._ensure_funded.EnsureBalanceParameters](#algokit_utils.EnsureBalanceParameters)) → [algokit_utils._ensure_funded.EnsureFundedResponse](#algokit_utils.EnsureFundedResponse) | [None](https://docs.python.org/3/library/constants.html#None)
879
+
880
+ Funds a given account using a funding source such that it has a certain amount of algos free to spend
881
+ (accounting for ALGOs locked in minimum balance requirement)
882
+ see [https://developer.algorand.org/docs/get-details/accounts/#minimum-balance](https://developer.algorand.org/docs/get-details/accounts/#minimum-balance)
883
+
884
+ Args:
885
+ client (AlgodClient): An instance of the AlgodClient class from the AlgoSDK library.
886
+ parameters (EnsureBalanceParameters): An instance of the EnsureBalanceParameters class that
887
+ specifies the account to fund and the minimum spending balance.
888
+
889
+ Returns:
890
+ PaymentTxn | str | None: If funds are needed, the function returns a payment transaction or a
891
+ string indicating that the dispenser API was used. If no funds are needed, the function returns None.
892
+
893
+ ### algokit_utils.execute_atc_with_logic_error(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), algod_client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), approval_program: [str](https://docs.python.org/3/library/stdtypes.html#str), wait_rounds: [int](https://docs.python.org/3/library/functions.html#int) = 4, approval_source_map: [algosdk.source_map.SourceMap](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/source_map.html#algosdk.source_map.SourceMap) | [Callable](https://docs.python.org/3/library/typing.html#typing.Callable)[[], [algosdk.source_map.SourceMap](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/source_map.html#algosdk.source_map.SourceMap) | [None](https://docs.python.org/3/library/constants.html#None)] | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algosdk.atomic_transaction_composer.AtomicTransactionResponse](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionResponse)
894
+
895
+ Calls `AtomicTransactionComposer.execute()` on provided `atc`, but will parse any errors
896
+ and raise a `LogicError` if possible
897
+
898
+ #### NOTE
899
+ `approval_program` and `approval_source_map` are required to be able to parse any errors into a
900
+ `LogicError`
901
+
902
+ ### algokit_utils.get_account(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), name: [str](https://docs.python.org/3/library/stdtypes.html#str), fund_with_algos: [float](https://docs.python.org/3/library/functions.html#float) = 1000, kmd_client: KMDClient | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algokit_utils.models.Account](#algokit_utils.Account)
903
+
904
+ Returns an Algorand account with private key loaded by convention based on the given name identifier.
905
+
906
+ ### Convention
907
+
908
+ **Non-LocalNet:** will load `os.environ[f"{name}_MNEMONIC"]` as a mnemonic secret
909
+ Be careful how the mnemonic is handled, never commit it into source control and ideally load it via a
910
+ secret storage service rather than the file system.
911
+
912
+ **LocalNet:** will load the account from a KMD wallet called {name} and if that wallet doesn’t exist it will
913
+ create it and fund the account for you
914
+
915
+ This allows you to write code that will work seamlessly in production and local development (LocalNet) without
916
+ manual config locally (including when you reset the LocalNet).
917
+
918
+ ### Example
919
+
920
+ If you have a mnemonic secret loaded into `os.environ["ACCOUNT_MNEMONIC"]` then you can call the following to get
921
+ that private key loaded into an account object:
922
+
923
+ ```python
924
+ account = get_account('ACCOUNT', algod)
925
+ ```
926
+
927
+ If that code runs against LocalNet then a wallet called ‘ACCOUNT’ will automatically be created with an account
928
+ that is automatically funded with 1000 (default) ALGOs from the default LocalNet dispenser.
929
+
930
+ ### algokit_utils.get_account_from_mnemonic(mnemonic: [str](https://docs.python.org/3/library/stdtypes.html#str)) → [algokit_utils.models.Account](#algokit_utils.Account)
931
+
932
+ Convert a mnemonic (25 word passphrase) into an Account
933
+
934
+ ### algokit_utils.get_algod_client(config: [algokit_utils.network_clients.AlgoClientConfig](#algokit_utils.AlgoClientConfig) | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient)
935
+
936
+ Returns an [`algosdk.v2client.algod.AlgodClient`](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient) from `config` or environment
937
+
938
+ If no configuration provided will use environment variables `ALGOD_SERVER`, `ALGOD_PORT` and `ALGOD_TOKEN`
939
+
940
+ ### algokit_utils.get_app_id_from_tx_id(algod_client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), tx_id: [str](https://docs.python.org/3/library/stdtypes.html#str)) → [int](https://docs.python.org/3/library/functions.html#int)
941
+
942
+ Finds the app_id for provided transaction id
943
+
944
+ ### algokit_utils.get_creator_apps(indexer: [algosdk.v2client.indexer.IndexerClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/indexer.html#algosdk.v2client.indexer.IndexerClient), creator_account: [algokit_utils.models.Account](#algokit_utils.Account) | [str](https://docs.python.org/3/library/stdtypes.html#str)) → [algokit_utils.deploy.AppLookup](#algokit_utils.AppLookup)
945
+
946
+ Returns a mapping of Application names to [`AppMetaData`](#algokit_utils.AppMetaData) for all Applications created by specified
947
+ creator that have a transaction note containing [`AppDeployMetaData`](#algokit_utils.AppDeployMetaData)
948
+
949
+ ### algokit_utils.get_default_localnet_config(config: [Literal](https://docs.python.org/3/library/typing.html#typing.Literal)[algod, indexer, kmd]) → [algokit_utils.network_clients.AlgoClientConfig](#algokit_utils.AlgoClientConfig)
950
+
951
+ Returns the client configuration to point to the default LocalNet
952
+
953
+ ### algokit_utils.get_dispenser_account(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient)) → [algokit_utils.models.Account](#algokit_utils.Account)
954
+
955
+ Returns an Account based on DISPENSER_MNENOMIC environment variable or the default account on LocalNet
956
+
957
+ ### algokit_utils.get_indexer_client(config: [algokit_utils.network_clients.AlgoClientConfig](#algokit_utils.AlgoClientConfig) | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algosdk.v2client.indexer.IndexerClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/indexer.html#algosdk.v2client.indexer.IndexerClient)
958
+
959
+ Returns an [`algosdk.v2client.indexer.IndexerClient`](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/indexer.html#algosdk.v2client.indexer.IndexerClient) from `config` or environment.
960
+
961
+ If no configuration provided will use environment variables `INDEXER_SERVER`, `INDEXER_PORT` and `INDEXER_TOKEN`
962
+
963
+ ### algokit_utils.get_kmd_client_from_algod_client(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient)) → [algosdk.kmd.KMDClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/kmd.html#algosdk.kmd.KMDClient)
964
+
965
+ Returns an [`algosdk.kmd.KMDClient`](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/kmd.html#algosdk.kmd.KMDClient) from supplied `client`
966
+
967
+ Will use the same address as provided `client` but on port specified by `KMD_PORT` environment variable,
968
+ or 4002 by default
969
+
970
+ ### algokit_utils.get_kmd_wallet_account(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), kmd_client: [algosdk.kmd.KMDClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/kmd.html#algosdk.kmd.KMDClient), name: [str](https://docs.python.org/3/library/stdtypes.html#str), predicate: Callable[[[dict](https://docs.python.org/3/library/stdtypes.html#dict)[[str](https://docs.python.org/3/library/stdtypes.html#str), Any]], [bool](https://docs.python.org/3/library/functions.html#bool)] | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algokit_utils.models.Account](#algokit_utils.Account) | [None](https://docs.python.org/3/library/constants.html#None)
971
+
972
+ Returns wallet matching specified name and predicate or None if not found
973
+
974
+ ### algokit_utils.get_localnet_default_account(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient)) → [algokit_utils.models.Account](#algokit_utils.Account)
975
+
976
+ Returns the default Account in a LocalNet instance
977
+
978
+ ### algokit_utils.get_next_version(current_version: [str](https://docs.python.org/3/library/stdtypes.html#str)) → [str](https://docs.python.org/3/library/stdtypes.html#str)
979
+
980
+ Calculates the next version from `current_version`
981
+
982
+ Next version is calculated by finding a semver like
983
+ version string and incrementing the lower. This function is used by [`ApplicationClient.deploy()`](#algokit_utils.ApplicationClient.deploy) when
984
+ a version is not specified, and is intended mostly for convenience during local development.
985
+
986
+ * **Params str current_version:**
987
+ An existing version string with a semver like version contained within it,
988
+ some valid inputs and incremented outputs:
989
+ `1` -> `2`
990
+ `1.0` -> `1.1`
991
+ `v1.1` -> `v1.2`
992
+ `v1.1-beta1` -> `v1.2-beta1`
993
+ `v1.2.3.4567` -> `v1.2.3.4568`
994
+ `v1.2.3.4567-alpha` -> `v1.2.3.4568-alpha`
995
+ * **Raises:**
996
+ **DeploymentFailedError** – If `current_version` cannot be parsed
997
+
998
+ ### algokit_utils.get_or_create_kmd_wallet_account(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), name: [str](https://docs.python.org/3/library/stdtypes.html#str), fund_with_algos: [float](https://docs.python.org/3/library/functions.html#float) = 1000, kmd_client: KMDClient | [None](https://docs.python.org/3/library/constants.html#None) = None) → [algokit_utils.models.Account](#algokit_utils.Account)
999
+
1000
+ Returns a wallet with specified name, or creates one if not found
1001
+
1002
+ ### algokit_utils.get_sender_from_signer(signer: [algosdk.atomic_transaction_composer.TransactionSigner](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.TransactionSigner) | [None](https://docs.python.org/3/library/constants.html#None)) → [str](https://docs.python.org/3/library/stdtypes.html#str) | [None](https://docs.python.org/3/library/constants.html#None)
1003
+
1004
+ Returns the associated address of a signer, return None if no address found
1005
+
1006
+ ### algokit_utils.is_localnet(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient)) → [bool](https://docs.python.org/3/library/functions.html#bool)
1007
+
1008
+ Returns True if client genesis is `devnet-v1` or `sandnet-v1`
1009
+
1010
+ ### algokit_utils.is_mainnet(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient)) → [bool](https://docs.python.org/3/library/functions.html#bool)
1011
+
1012
+ Returns True if client genesis is `mainnet-v1`
1013
+
1014
+ ### algokit_utils.is_testnet(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient)) → [bool](https://docs.python.org/3/library/functions.html#bool)
1015
+
1016
+ Returns True if client genesis is `testnet-v1`
1017
+
1018
+ ### algokit_utils.num_extra_program_pages(approval: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes), clear: [bytes](https://docs.python.org/3/library/stdtypes.html#bytes)) → [int](https://docs.python.org/3/library/functions.html#int)
1019
+
1020
+ Calculate minimum number of extra_pages required for provided approval and clear programs
1021
+
1022
+ ### algokit_utils.opt_in(algod_client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), account: [algokit_utils.models.Account](#algokit_utils.Account), asset_ids: [list](https://docs.python.org/3/library/stdtypes.html#list)[[int](https://docs.python.org/3/library/functions.html#int)]) → [dict](https://docs.python.org/3/library/stdtypes.html#dict)[[int](https://docs.python.org/3/library/functions.html#int), [str](https://docs.python.org/3/library/stdtypes.html#str)]
1023
+
1024
+ Opt-in to a list of assets on the Algorand blockchain. Before an account can receive a specific asset,
1025
+ it must `opt-in` to receive it. An opt-in transaction places an asset holding of 0 into the account and increases
1026
+ its minimum balance by [100,000 microAlgos](https://developer.algorand.org/docs/get-details/asa/#assets-overview).
1027
+
1028
+ Args:
1029
+ algod_client (AlgodClient): An instance of the AlgodClient class from the algosdk library.
1030
+ account (Account): An instance of the Account class representing the account that wants to opt-in to the assets.
1031
+ asset_ids (list[int]): A list of integers representing the asset IDs to opt-in to.
1032
+ Returns:
1033
+ dict[int, str]: A dictionary where the keys are the asset IDs and the values
1034
+ are the transaction IDs for opting-in to each asset.
1035
+
1036
+ ### algokit_utils.opt_out(algod_client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), account: [algokit_utils.models.Account](#algokit_utils.Account), asset_ids: [list](https://docs.python.org/3/library/stdtypes.html#list)[[int](https://docs.python.org/3/library/functions.html#int)]) → [dict](https://docs.python.org/3/library/stdtypes.html#dict)[[int](https://docs.python.org/3/library/functions.html#int), [str](https://docs.python.org/3/library/stdtypes.html#str)]
1037
+
1038
+ Opt out from a list of Algorand Standard Assets (ASAs) by transferring them back to their creators.
1039
+ The account also recovers the Minimum Balance Requirement for the asset (100,000 microAlgos)
1040
+ The `optOut` function manages the opt-out process, permitting the account to discontinue holding a group of assets.
1041
+
1042
+ It’s essential to note that an account can only opt_out of an asset if its balance of that asset is zero.
1043
+
1044
+ Args:
1045
+ algod_client (AlgodClient): An instance of the AlgodClient class from the `algosdk` library.
1046
+ account (Account): An instance of the Account class that holds the private key and address for an account.
1047
+ asset_ids (list[int]): A list of integers representing the asset IDs of the ASAs to opt out from.
1048
+ Returns:
1049
+ dict[int, str]: A dictionary where the keys are the asset IDs and the values are the transaction IDs of
1050
+ the executed transactions.
1051
+
1052
+ ### algokit_utils.persist_sourcemaps(\*, sources: [list](https://docs.python.org/3/library/stdtypes.html#list)[algokit_utils._debugging.PersistSourceMapInput], project_root: [pathlib.Path](https://docs.python.org/3/library/pathlib.html#pathlib.Path), client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), with_sources: [bool](https://docs.python.org/3/library/functions.html#bool) = True, persist_mappings: [bool](https://docs.python.org/3/library/functions.html#bool) = False) → [None](https://docs.python.org/3/library/constants.html#None)
1053
+
1054
+ Persist the sourcemaps for the given sources as an AlgoKit AVM Debugger compliant artifacts.
1055
+ Args:
1056
+ sources (list[PersistSourceMapInput]): A list of PersistSourceMapInput objects.
1057
+ project_root (Path): The root directory of the project.
1058
+ client (AlgodClient): An AlgodClient object for interacting with the Algorand blockchain.
1059
+ with_sources (bool): If True, it will dump teal source files along with sourcemaps.
1060
+ Default is True, as needed by an AlgoKit AVM debugger.
1061
+ persist_mappings (bool): Enables legacy behavior of persisting the `sources.avm.json` mappings to
1062
+ the project root. Default is False, given that the AlgoKit AVM VSCode extension will manage the mappings.
1063
+
1064
+ ### algokit_utils.replace_template_variables(program: [str](https://docs.python.org/3/library/stdtypes.html#str), template_values: [algokit_utils.deploy.TemplateValueMapping](#algokit_utils.TemplateValueMapping)) → [str](https://docs.python.org/3/library/stdtypes.html#str)
1065
+
1066
+ Replaces `TMPL_*` variables in `program` with `template_values`
1067
+
1068
+ #### NOTE
1069
+ `template_values` keys should *NOT* be prefixed with `TMPL_`
1070
+
1071
+ ### algokit_utils.simulate_and_persist_response(atc: [algosdk.atomic_transaction_composer.AtomicTransactionComposer](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.AtomicTransactionComposer), project_root: [pathlib.Path](https://docs.python.org/3/library/pathlib.html#pathlib.Path), algod_client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), buffer_size_mb: [float](https://docs.python.org/3/library/functions.html#float) = 256) → [algosdk.atomic_transaction_composer.SimulateAtomicTransactionResponse](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/atomic_transaction_composer.html#algosdk.atomic_transaction_composer.SimulateAtomicTransactionResponse)
1072
+
1073
+ Simulates the atomic transactions using the provided `AtomicTransactionComposer` object and `AlgodClient` object,
1074
+ and persists the simulation response to an AlgoKit AVM Debugger compliant JSON file.
1075
+
1076
+ * **Parameters:**
1077
+ * **atc** – An `AtomicTransactionComposer` object representing the atomic transactions to be
1078
+ simulated and persisted.
1079
+ * **project_root** – A `Path` object representing the root directory of the project.
1080
+ * **algod_client** – An `AlgodClient` object representing the Algorand client.
1081
+ * **buffer_size_mb** – The size of the trace buffer in megabytes. Defaults to 256mb.
1082
+ * **Returns:**
1083
+ None
1084
+
1085
+ Returns:
1086
+ SimulateAtomicTransactionResponse: The simulated response after persisting it
1087
+ for AlgoKit AVM Debugger consumption.
1088
+
1089
+ ### algokit_utils.transfer(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), parameters: [algokit_utils._transfer.TransferParameters](#algokit_utils.TransferParameters)) → [algosdk.transaction.PaymentTxn](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.PaymentTxn)
1090
+
1091
+ Transfer µALGOs between accounts
1092
+
1093
+ ### algokit_utils.transfer_asset(client: [algosdk.v2client.algod.AlgodClient](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/v2client/algod.html#algosdk.v2client.algod.AlgodClient), parameters: [algokit_utils._transfer.TransferAssetParameters](#algokit_utils.TransferAssetParameters)) → [algosdk.transaction.AssetTransferTxn](https://py-algorand-sdk.readthedocs.io/en/latest/algosdk/transaction.html#algosdk.transaction.AssetTransferTxn)
1094
+
1095
+ Transfer assets between accounts