@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,2993 @@
1
+ [algosdk](README.md) / Exports
2
+
3
+ # algosdk
4
+
5
+ ## Table of contents
6
+
7
+ ### Namespaces
8
+
9
+ - [indexerModels](modules/indexerModels.md)
10
+ - [modelsv2](modules/modelsv2.md)
11
+
12
+ ### Enumerations
13
+
14
+ - [ABIReferenceType](enums/ABIReferenceType.md)
15
+ - [ABITransactionType](enums/ABITransactionType.md)
16
+ - [AtomicTransactionComposerStatus](enums/AtomicTransactionComposerStatus.md)
17
+ - [IntDecoding](enums/IntDecoding.md)
18
+ - [OnApplicationComplete](enums/OnApplicationComplete.md)
19
+ - [TransactionType](enums/TransactionType.md)
20
+
21
+ ### Classes
22
+
23
+ - [ABIAddressType](classes/ABIAddressType.md)
24
+ - [ABIArrayDynamicType](classes/ABIArrayDynamicType.md)
25
+ - [ABIArrayStaticType](classes/ABIArrayStaticType.md)
26
+ - [ABIBoolType](classes/ABIBoolType.md)
27
+ - [ABIByteType](classes/ABIByteType.md)
28
+ - [ABIContract](classes/ABIContract.md)
29
+ - [ABIInterface](classes/ABIInterface.md)
30
+ - [ABIMethod](classes/ABIMethod.md)
31
+ - [ABIStringType](classes/ABIStringType.md)
32
+ - [ABITupleType](classes/ABITupleType.md)
33
+ - [ABIType](classes/ABIType.md)
34
+ - [ABIUfixedType](classes/ABIUfixedType.md)
35
+ - [ABIUintType](classes/ABIUintType.md)
36
+ - [Algodv2](classes/Algodv2.md)
37
+ - [AtomicTransactionComposer](classes/AtomicTransactionComposer.md)
38
+ - [DryrunResult](classes/DryrunResult.md)
39
+ - [Indexer](classes/Indexer.md)
40
+ - [Kmd](classes/Kmd.md)
41
+ - [LogicSig](classes/LogicSig.md)
42
+ - [LogicSigAccount](classes/LogicSigAccount.md)
43
+ - [SourceMap](classes/SourceMap.md)
44
+ - [Transaction](classes/Transaction.md)
45
+
46
+ ### Interfaces
47
+
48
+ - [ABIContractNetworkInfo](interfaces/ABIContractNetworkInfo.md)
49
+ - [ABIContractNetworks](interfaces/ABIContractNetworks.md)
50
+ - [ABIContractParams](interfaces/ABIContractParams.md)
51
+ - [ABIInterfaceParams](interfaces/ABIInterfaceParams.md)
52
+ - [ABIMethodArgParams](interfaces/ABIMethodArgParams.md)
53
+ - [ABIMethodParams](interfaces/ABIMethodParams.md)
54
+ - [ABIMethodReturnParams](interfaces/ABIMethodReturnParams.md)
55
+ - [ABIResult](interfaces/ABIResult.md)
56
+ - [Account](interfaces/Account.md)
57
+ - [Address](interfaces/Address.md)
58
+ - [AlgodTokenHeader](interfaces/AlgodTokenHeader.md)
59
+ - [BaseHTTPClient](interfaces/BaseHTTPClient.md)
60
+ - [BaseHTTPClientError](interfaces/BaseHTTPClientError.md)
61
+ - [BaseHTTPClientResponse](interfaces/BaseHTTPClientResponse.md)
62
+ - [BoxReference](interfaces/BoxReference.md)
63
+ - [CustomTokenHeader](interfaces/CustomTokenHeader.md)
64
+ - [EncodedAssetParams](interfaces/EncodedAssetParams.md)
65
+ - [EncodedBoxReference](interfaces/EncodedBoxReference.md)
66
+ - [EncodedGlobalStateSchema](interfaces/EncodedGlobalStateSchema.md)
67
+ - [EncodedLocalStateSchema](interfaces/EncodedLocalStateSchema.md)
68
+ - [EncodedLogicSig](interfaces/EncodedLogicSig.md)
69
+ - [EncodedLogicSigAccount](interfaces/EncodedLogicSigAccount.md)
70
+ - [EncodedMultisig](interfaces/EncodedMultisig.md)
71
+ - [EncodedSignedTransaction](interfaces/EncodedSignedTransaction.md)
72
+ - [EncodedSubsig](interfaces/EncodedSubsig.md)
73
+ - [EncodedTransaction](interfaces/EncodedTransaction.md)
74
+ - [IndexerTokenHeader](interfaces/IndexerTokenHeader.md)
75
+ - [KMDTokenHeader](interfaces/KMDTokenHeader.md)
76
+ - [MultisigMetadata](interfaces/MultisigMetadata.md)
77
+ - [SignedTransaction](interfaces/SignedTransaction.md)
78
+ - [SuggestedParams](interfaces/SuggestedParams.md)
79
+ - [TransactionParams](interfaces/TransactionParams.md)
80
+ - [TransactionWithSigner](interfaces/TransactionWithSigner.md)
81
+
82
+ ### Type Aliases
83
+
84
+ - [ABIArgument](modules.md#abiargument)
85
+ - [ABIArgumentType](modules.md#abiargumenttype)
86
+ - [ABIReturnType](modules.md#abireturntype)
87
+ - [ABIValue](modules.md#abivalue)
88
+ - [AppClearStateTxn](modules.md#appclearstatetxn)
89
+ - [AppCloseOutTxn](modules.md#appcloseouttxn)
90
+ - [AppCreateTxn](modules.md#appcreatetxn)
91
+ - [AppDeleteTxn](modules.md#appdeletetxn)
92
+ - [AppNoOpTxn](modules.md#appnooptxn)
93
+ - [AppOptInTxn](modules.md#appoptintxn)
94
+ - [AppUpdateTxn](modules.md#appupdatetxn)
95
+ - [AssetConfigTxn](modules.md#assetconfigtxn)
96
+ - [AssetCreateTxn](modules.md#assetcreatetxn)
97
+ - [AssetDestroyTxn](modules.md#assetdestroytxn)
98
+ - [AssetFreezeTxn](modules.md#assetfreezetxn)
99
+ - [AssetTransferTxn](modules.md#assettransfertxn)
100
+ - [KeyRegistrationTxn](modules.md#keyregistrationtxn)
101
+ - [MustHaveSuggestedParams](modules.md#musthavesuggestedparams)
102
+ - [MustHaveSuggestedParamsInline](modules.md#musthavesuggestedparamsinline)
103
+ - [PaymentTxn](modules.md#paymenttxn)
104
+ - [StateProofTxn](modules.md#stateprooftxn)
105
+ - [TokenHeader](modules.md#tokenheader)
106
+ - [TransactionLike](modules.md#transactionlike)
107
+ - [TransactionSigner](modules.md#transactionsigner)
108
+
109
+ ### Variables
110
+
111
+ - [ADDR\_BYTE\_SIZE](modules.md#addr_byte_size)
112
+ - [ALGORAND\_MIN\_TX\_FEE](modules.md#algorand_min_tx_fee)
113
+ - [ERROR\_INVALID\_MICROALGOS](modules.md#error_invalid_microalgos)
114
+ - [ERROR\_MULTISIG\_BAD\_SENDER](modules.md#error_multisig_bad_sender)
115
+ - [INVALID\_MICROALGOS\_ERROR\_MSG](modules.md#invalid_microalgos_error_msg)
116
+ - [LENGTH\_ENCODE\_BYTE\_SIZE](modules.md#length_encode_byte_size)
117
+ - [MAX\_LEN](modules.md#max_len)
118
+ - [MULTISIG\_BAD\_SENDER\_ERROR\_MSG](modules.md#multisig_bad_sender_error_msg)
119
+ - [SINGLE\_BOOL\_SIZE](modules.md#single_bool_size)
120
+ - [SINGLE\_BYTE\_SIZE](modules.md#single_byte_size)
121
+
122
+ ### Functions
123
+
124
+ - [abiCheckTransactionType](modules.md#abichecktransactiontype)
125
+ - [abiTypeIsReference](modules.md#abitypeisreference)
126
+ - [abiTypeIsTransaction](modules.md#abitypeistransaction)
127
+ - [algosToMicroalgos](modules.md#algostomicroalgos)
128
+ - [appendSignMultisigTransaction](modules.md#appendsignmultisigtransaction)
129
+ - [appendSignRawMultisigSignature](modules.md#appendsignrawmultisigsignature)
130
+ - [assignGroupID](modules.md#assigngroupid)
131
+ - [bigIntToBytes](modules.md#biginttobytes)
132
+ - [bytesToBigInt](modules.md#bytestobigint)
133
+ - [computeGroupID](modules.md#computegroupid)
134
+ - [createDryrun](modules.md#createdryrun)
135
+ - [createMultisigTransaction](modules.md#createmultisigtransaction)
136
+ - [decodeAddress](modules.md#decodeaddress)
137
+ - [decodeObj](modules.md#decodeobj)
138
+ - [decodeSignedTransaction](modules.md#decodesignedtransaction)
139
+ - [decodeUint64](modules.md#decodeuint64)
140
+ - [decodeUnsignedTransaction](modules.md#decodeunsignedtransaction)
141
+ - [encodeAddress](modules.md#encodeaddress)
142
+ - [encodeObj](modules.md#encodeobj)
143
+ - [encodeUint64](modules.md#encodeuint64)
144
+ - [encodeUnsignedSimulateTransaction](modules.md#encodeunsignedsimulatetransaction)
145
+ - [encodeUnsignedTransaction](modules.md#encodeunsignedtransaction)
146
+ - [generateAccount](modules.md#generateaccount)
147
+ - [getApplicationAddress](modules.md#getapplicationaddress)
148
+ - [getMethodByName](modules.md#getmethodbyname)
149
+ - [instantiateTxnIfNeeded](modules.md#instantiatetxnifneeded)
150
+ - [isTransactionWithSigner](modules.md#istransactionwithsigner)
151
+ - [isValidAddress](modules.md#isvalidaddress)
152
+ - [logicSigFromByte](modules.md#logicsigfrombyte)
153
+ - [makeApplicationCallTxnFromObject](modules.md#makeapplicationcalltxnfromobject)
154
+ - [makeApplicationClearStateTxn](modules.md#makeapplicationclearstatetxn)
155
+ - [makeApplicationClearStateTxnFromObject](modules.md#makeapplicationclearstatetxnfromobject)
156
+ - [makeApplicationCloseOutTxn](modules.md#makeapplicationcloseouttxn)
157
+ - [makeApplicationCloseOutTxnFromObject](modules.md#makeapplicationcloseouttxnfromobject)
158
+ - [makeApplicationCreateTxn](modules.md#makeapplicationcreatetxn)
159
+ - [makeApplicationCreateTxnFromObject](modules.md#makeapplicationcreatetxnfromobject)
160
+ - [makeApplicationDeleteTxn](modules.md#makeapplicationdeletetxn)
161
+ - [makeApplicationDeleteTxnFromObject](modules.md#makeapplicationdeletetxnfromobject)
162
+ - [makeApplicationNoOpTxn](modules.md#makeapplicationnooptxn)
163
+ - [makeApplicationNoOpTxnFromObject](modules.md#makeapplicationnooptxnfromobject)
164
+ - [makeApplicationOptInTxn](modules.md#makeapplicationoptintxn)
165
+ - [makeApplicationOptInTxnFromObject](modules.md#makeapplicationoptintxnfromobject)
166
+ - [makeApplicationUpdateTxn](modules.md#makeapplicationupdatetxn)
167
+ - [makeApplicationUpdateTxnFromObject](modules.md#makeapplicationupdatetxnfromobject)
168
+ - [makeAssetConfigTxnWithSuggestedParams](modules.md#makeassetconfigtxnwithsuggestedparams)
169
+ - [makeAssetConfigTxnWithSuggestedParamsFromObject](modules.md#makeassetconfigtxnwithsuggestedparamsfromobject)
170
+ - [makeAssetCreateTxnWithSuggestedParams](modules.md#makeassetcreatetxnwithsuggestedparams)
171
+ - [makeAssetCreateTxnWithSuggestedParamsFromObject](modules.md#makeassetcreatetxnwithsuggestedparamsfromobject)
172
+ - [makeAssetDestroyTxnWithSuggestedParams](modules.md#makeassetdestroytxnwithsuggestedparams)
173
+ - [makeAssetDestroyTxnWithSuggestedParamsFromObject](modules.md#makeassetdestroytxnwithsuggestedparamsfromobject)
174
+ - [makeAssetFreezeTxnWithSuggestedParams](modules.md#makeassetfreezetxnwithsuggestedparams)
175
+ - [makeAssetFreezeTxnWithSuggestedParamsFromObject](modules.md#makeassetfreezetxnwithsuggestedparamsfromobject)
176
+ - [makeAssetTransferTxnWithSuggestedParams](modules.md#makeassettransfertxnwithsuggestedparams)
177
+ - [makeAssetTransferTxnWithSuggestedParamsFromObject](modules.md#makeassettransfertxnwithsuggestedparamsfromobject)
178
+ - [makeBasicAccountTransactionSigner](modules.md#makebasicaccounttransactionsigner)
179
+ - [makeEmptyTransactionSigner](modules.md#makeemptytransactionsigner)
180
+ - [makeKeyRegistrationTxnWithSuggestedParams](modules.md#makekeyregistrationtxnwithsuggestedparams)
181
+ - [makeKeyRegistrationTxnWithSuggestedParamsFromObject](modules.md#makekeyregistrationtxnwithsuggestedparamsfromobject)
182
+ - [makeLogicSigAccountTransactionSigner](modules.md#makelogicsigaccounttransactionsigner)
183
+ - [makeMultiSigAccountTransactionSigner](modules.md#makemultisigaccounttransactionsigner)
184
+ - [makePaymentTxnWithSuggestedParams](modules.md#makepaymenttxnwithsuggestedparams)
185
+ - [makePaymentTxnWithSuggestedParamsFromObject](modules.md#makepaymenttxnwithsuggestedparamsfromobject)
186
+ - [masterDerivationKeyToMnemonic](modules.md#masterderivationkeytomnemonic)
187
+ - [mergeMultisigTransactions](modules.md#mergemultisigtransactions)
188
+ - [microalgosToAlgos](modules.md#microalgostoalgos)
189
+ - [mnemonicFromSeed](modules.md#mnemonicfromseed)
190
+ - [mnemonicToMasterDerivationKey](modules.md#mnemonictomasterderivationkey)
191
+ - [mnemonicToSecretKey](modules.md#mnemonictosecretkey)
192
+ - [multisigAddress](modules.md#multisigaddress)
193
+ - [secretKeyToMnemonic](modules.md#secretkeytomnemonic)
194
+ - [seedFromMnemonic](modules.md#seedfrommnemonic)
195
+ - [signBid](modules.md#signbid)
196
+ - [signBytes](modules.md#signbytes)
197
+ - [signLogicSigTransaction](modules.md#signlogicsigtransaction)
198
+ - [signLogicSigTransactionObject](modules.md#signlogicsigtransactionobject)
199
+ - [signMultisigTransaction](modules.md#signmultisigtransaction)
200
+ - [signTransaction](modules.md#signtransaction)
201
+ - [tealSign](modules.md#tealsign)
202
+ - [tealSignFromProgram](modules.md#tealsignfromprogram)
203
+ - [verifyBytes](modules.md#verifybytes)
204
+ - [verifyMultisig](modules.md#verifymultisig)
205
+ - [verifyTealSign](modules.md#verifytealsign)
206
+ - [waitForConfirmation](modules.md#waitforconfirmation)
207
+
208
+ ## Type Aliases
209
+
210
+ ### ABIArgument
211
+
212
+ Ƭ **ABIArgument**: [`ABIValue`](modules.md#abivalue) \| [`TransactionWithSigner`](interfaces/TransactionWithSigner.md)
213
+
214
+ #### Defined in
215
+
216
+ composer.ts:43
217
+
218
+ ___
219
+
220
+ ### ABIArgumentType
221
+
222
+ Ƭ **ABIArgumentType**: [`ABIType`](classes/ABIType.md) \| [`ABITransactionType`](enums/ABITransactionType.md) \| [`ABIReferenceType`](enums/ABIReferenceType.md)
223
+
224
+ #### Defined in
225
+
226
+ abi/method.ts:71
227
+
228
+ ___
229
+
230
+ ### ABIReturnType
231
+
232
+ Ƭ **ABIReturnType**: [`ABIType`](classes/ABIType.md) \| ``"void"``
233
+
234
+ #### Defined in
235
+
236
+ abi/method.ts:73
237
+
238
+ ___
239
+
240
+ ### ABIValue
241
+
242
+ Ƭ **ABIValue**: `boolean` \| `number` \| `bigint` \| `string` \| `Uint8Array` \| [`ABIValue`](modules.md#abivalue)[]
243
+
244
+ #### Defined in
245
+
246
+ abi/abi_type.ts:35
247
+
248
+ ___
249
+
250
+ ### AppClearStateTxn
251
+
252
+ Ƭ **AppClearStateTxn**: [`AppDeleteTxn`](modules.md#appdeletetxn)
253
+
254
+ #### Defined in
255
+
256
+ types/transactions/application.ts:104
257
+
258
+ ___
259
+
260
+ ### AppCloseOutTxn
261
+
262
+ Ƭ **AppCloseOutTxn**: [`AppDeleteTxn`](modules.md#appdeletetxn)
263
+
264
+ #### Defined in
265
+
266
+ types/transactions/application.ts:97
267
+
268
+ ___
269
+
270
+ ### AppCreateTxn
271
+
272
+ Ƭ **AppCreateTxn**: `ConstructTransaction`\<`SpecificParametersForCreate`, `OverwritesForCreate`\>
273
+
274
+ #### Defined in
275
+
276
+ types/transactions/application.ts:30
277
+
278
+ ___
279
+
280
+ ### AppDeleteTxn
281
+
282
+ Ƭ **AppDeleteTxn**: `ConstructTransaction`\<`SpecificParametersForDelete`, `OverwritesForDelete`\>
283
+
284
+ #### Defined in
285
+
286
+ types/transactions/application.ts:80
287
+
288
+ ___
289
+
290
+ ### AppNoOpTxn
291
+
292
+ Ƭ **AppNoOpTxn**: [`AppDeleteTxn`](modules.md#appdeletetxn)
293
+
294
+ #### Defined in
295
+
296
+ types/transactions/application.ts:111
297
+
298
+ ___
299
+
300
+ ### AppOptInTxn
301
+
302
+ Ƭ **AppOptInTxn**: [`AppDeleteTxn`](modules.md#appdeletetxn)
303
+
304
+ #### Defined in
305
+
306
+ types/transactions/application.ts:90
307
+
308
+ ___
309
+
310
+ ### AppUpdateTxn
311
+
312
+ Ƭ **AppUpdateTxn**: `ConstructTransaction`\<`SpecificParametersForUpdate`, `OverwritesForUpdate`\>
313
+
314
+ #### Defined in
315
+
316
+ types/transactions/application.ts:56
317
+
318
+ ___
319
+
320
+ ### AssetConfigTxn
321
+
322
+ Ƭ **AssetConfigTxn**: `ConstructTransaction`\<`SpecificParametersForConfig`, `OverwritesForConfig`\>
323
+
324
+ #### Defined in
325
+
326
+ types/transactions/asset.ts:49
327
+
328
+ ___
329
+
330
+ ### AssetCreateTxn
331
+
332
+ Ƭ **AssetCreateTxn**: `ConstructTransaction`\<`SpecificParametersForCreate`, `OverwritesForCreate`\>
333
+
334
+ #### Defined in
335
+
336
+ types/transactions/asset.ts:27
337
+
338
+ ___
339
+
340
+ ### AssetDestroyTxn
341
+
342
+ Ƭ **AssetDestroyTxn**: `ConstructTransaction`\<`SpecificParametersForDestroy`, `OverwritesForDestroy`\>
343
+
344
+ #### Defined in
345
+
346
+ types/transactions/asset.ts:64
347
+
348
+ ___
349
+
350
+ ### AssetFreezeTxn
351
+
352
+ Ƭ **AssetFreezeTxn**: `ConstructTransaction`\<`SpecificParametersForFreeze`, `OverwritesForFreeze`\>
353
+
354
+ #### Defined in
355
+
356
+ types/transactions/asset.ts:82
357
+
358
+ ___
359
+
360
+ ### AssetTransferTxn
361
+
362
+ Ƭ **AssetTransferTxn**: `ConstructTransaction`\<`SpecificParametersForTransfer`, `OverwritesForTransfer`\>
363
+
364
+ #### Defined in
365
+
366
+ types/transactions/asset.ts:105
367
+
368
+ ___
369
+
370
+ ### KeyRegistrationTxn
371
+
372
+ Ƭ **KeyRegistrationTxn**: `ConstructTransaction`\<`SpecificParameters`, `Overwrites`\>
373
+
374
+ #### Defined in
375
+
376
+ types/transactions/keyreg.ts:19
377
+
378
+ ___
379
+
380
+ ### MustHaveSuggestedParams
381
+
382
+ Ƭ **MustHaveSuggestedParams**\<`T`\>: `Extract`\<`T`, \{ `suggestedParams`: [`SuggestedParams`](interfaces/SuggestedParams.md) }\>
383
+
384
+ Only accept transaction objects that include suggestedParams as an object
385
+
386
+ #### Type parameters
387
+
388
+ | Name | Type |
389
+ | :------ | :------ |
390
+ | `T` | extends `ConstructTransaction` |
391
+
392
+ #### Defined in
393
+
394
+ types/transactions/builder.ts:56
395
+
396
+ ___
397
+
398
+ ### MustHaveSuggestedParamsInline
399
+
400
+ Ƭ **MustHaveSuggestedParamsInline**\<`T`\>: `Extract`\<`T`, [`SuggestedParams`](interfaces/SuggestedParams.md)\>
401
+
402
+ Only accept transaction objects that include suggestedParams inline instead of being
403
+ enclosed in its own property
404
+
405
+ #### Type parameters
406
+
407
+ | Name | Type |
408
+ | :------ | :------ |
409
+ | `T` | extends `ConstructTransaction` |
410
+
411
+ #### Defined in
412
+
413
+ types/transactions/builder.ts:65
414
+
415
+ ___
416
+
417
+ ### PaymentTxn
418
+
419
+ Ƭ **PaymentTxn**: `ConstructTransaction`\<`SpecificParameters`, `Overwrites`\>
420
+
421
+ #### Defined in
422
+
423
+ types/transactions/payment.ts:13
424
+
425
+ ___
426
+
427
+ ### StateProofTxn
428
+
429
+ Ƭ **StateProofTxn**: `ConstructTransaction`\<`SpecificParameters`, `Overwrites`\>
430
+
431
+ #### Defined in
432
+
433
+ types/transactions/stateproof.ts:13
434
+
435
+ ___
436
+
437
+ ### TokenHeader
438
+
439
+ Ƭ **TokenHeader**: [`AlgodTokenHeader`](interfaces/AlgodTokenHeader.md) \| [`IndexerTokenHeader`](interfaces/IndexerTokenHeader.md) \| [`KMDTokenHeader`](interfaces/KMDTokenHeader.md) \| [`CustomTokenHeader`](interfaces/CustomTokenHeader.md)
440
+
441
+ #### Defined in
442
+
443
+ client/urlTokenBaseHTTPClient.ts:33
444
+
445
+ ___
446
+
447
+ ### TransactionLike
448
+
449
+ Ƭ **TransactionLike**: `AnyTransaction` \| [`Transaction`](classes/Transaction.md)
450
+
451
+ Either a valid transaction object or an instance of the Transaction class
452
+
453
+ #### Defined in
454
+
455
+ transaction.ts:1373
456
+
457
+ ___
458
+
459
+ ### TransactionSigner
460
+
461
+ Ƭ **TransactionSigner**: (`txnGroup`: [`Transaction`](classes/Transaction.md)[], `indexesToSign`: `number`[]) => `Promise`\<`Uint8Array`[]\>
462
+
463
+ #### Type declaration
464
+
465
+ ▸ (`txnGroup`, `indexesToSign`): `Promise`\<`Uint8Array`[]\>
466
+
467
+ This type represents a function which can sign transactions from an atomic transaction group.
468
+
469
+ ##### Parameters
470
+
471
+ | Name | Type | Description |
472
+ | :------ | :------ | :------ |
473
+ | `txnGroup` | [`Transaction`](classes/Transaction.md)[] | The atomic group containing transactions to be signed |
474
+ | `indexesToSign` | `number`[] | An array of indexes in the atomic transaction group that should be signed |
475
+
476
+ ##### Returns
477
+
478
+ `Promise`\<`Uint8Array`[]\>
479
+
480
+ A promise which resolves an array of encoded signed transactions. The length of the
481
+ array will be the same as the length of indexesToSign, and each index i in the array
482
+ corresponds to the signed transaction from txnGroup[indexesToSign[i]]
483
+
484
+ #### Defined in
485
+
486
+ signer.ts:15
487
+
488
+ ## Variables
489
+
490
+ ### ADDR\_BYTE\_SIZE
491
+
492
+ • `Const` **ADDR\_BYTE\_SIZE**: ``32``
493
+
494
+ #### Defined in
495
+
496
+ abi/abi_type.ts:22
497
+
498
+ ___
499
+
500
+ ### ALGORAND\_MIN\_TX\_FEE
501
+
502
+ • `Const` **ALGORAND\_MIN\_TX\_FEE**: ``1000``
503
+
504
+ #### Defined in
505
+
506
+ transaction.ts:26
507
+
508
+ ___
509
+
510
+ ### ERROR\_INVALID\_MICROALGOS
511
+
512
+ • `Const` **ERROR\_INVALID\_MICROALGOS**: `Error`
513
+
514
+ #### Defined in
515
+
516
+ main.ts:116
517
+
518
+ ___
519
+
520
+ ### ERROR\_MULTISIG\_BAD\_SENDER
521
+
522
+ • `Const` **ERROR\_MULTISIG\_BAD\_SENDER**: `Error`
523
+
524
+ #### Defined in
525
+
526
+ main.ts:113
527
+
528
+ ___
529
+
530
+ ### INVALID\_MICROALGOS\_ERROR\_MSG
531
+
532
+ • `Const` **INVALID\_MICROALGOS\_ERROR\_MSG**: ``"Microalgos should be positive and less than 2^53 - 1."``
533
+
534
+ #### Defined in
535
+
536
+ convert.ts:2
537
+
538
+ ___
539
+
540
+ ### LENGTH\_ENCODE\_BYTE\_SIZE
541
+
542
+ • `Const` **LENGTH\_ENCODE\_BYTE\_SIZE**: ``2``
543
+
544
+ #### Defined in
545
+
546
+ abi/abi_type.ts:25
547
+
548
+ ___
549
+
550
+ ### MAX\_LEN
551
+
552
+ • `Const` **MAX\_LEN**: `number`
553
+
554
+ #### Defined in
555
+
556
+ abi/abi_type.ts:21
557
+
558
+ ___
559
+
560
+ ### MULTISIG\_BAD\_SENDER\_ERROR\_MSG
561
+
562
+ • `Const` **MULTISIG\_BAD\_SENDER\_ERROR\_MSG**: ``"The transaction sender address and multisig preimage do not match."``
563
+
564
+ #### Defined in
565
+
566
+ main.ts:13
567
+
568
+ ___
569
+
570
+ ### SINGLE\_BOOL\_SIZE
571
+
572
+ • `Const` **SINGLE\_BOOL\_SIZE**: ``1``
573
+
574
+ #### Defined in
575
+
576
+ abi/abi_type.ts:24
577
+
578
+ ___
579
+
580
+ ### SINGLE\_BYTE\_SIZE
581
+
582
+ • `Const` **SINGLE\_BYTE\_SIZE**: ``1``
583
+
584
+ #### Defined in
585
+
586
+ abi/abi_type.ts:23
587
+
588
+ ## Functions
589
+
590
+ ### abiCheckTransactionType
591
+
592
+ ▸ **abiCheckTransactionType**(`type`, `txn`): `boolean`
593
+
594
+ #### Parameters
595
+
596
+ | Name | Type |
597
+ | :------ | :------ |
598
+ | `type` | [`ABITransactionType`](enums/ABITransactionType.md) |
599
+ | `txn` | [`Transaction`](classes/Transaction.md) |
600
+
601
+ #### Returns
602
+
603
+ `boolean`
604
+
605
+ #### Defined in
606
+
607
+ abi/transaction.ts:52
608
+
609
+ ___
610
+
611
+ ### abiTypeIsReference
612
+
613
+ ▸ **abiTypeIsReference**(`type`): type is ABIReferenceType
614
+
615
+ #### Parameters
616
+
617
+ | Name | Type |
618
+ | :------ | :------ |
619
+ | `type` | `any` |
620
+
621
+ #### Returns
622
+
623
+ type is ABIReferenceType
624
+
625
+ #### Defined in
626
+
627
+ abi/reference.ts:18
628
+
629
+ ___
630
+
631
+ ### abiTypeIsTransaction
632
+
633
+ ▸ **abiTypeIsTransaction**(`type`): type is ABITransactionType
634
+
635
+ #### Parameters
636
+
637
+ | Name | Type |
638
+ | :------ | :------ |
639
+ | `type` | `any` |
640
+
641
+ #### Returns
642
+
643
+ type is ABITransactionType
644
+
645
+ #### Defined in
646
+
647
+ abi/transaction.ts:40
648
+
649
+ ___
650
+
651
+ ### algosToMicroalgos
652
+
653
+ ▸ **algosToMicroalgos**(`algos`): `number`
654
+
655
+ algosToMicroalgos converts algos to microalgos
656
+
657
+ #### Parameters
658
+
659
+ | Name | Type | Description |
660
+ | :------ | :------ | :------ |
661
+ | `algos` | `number` | number |
662
+
663
+ #### Returns
664
+
665
+ `number`
666
+
667
+ number
668
+
669
+ #### Defined in
670
+
671
+ convert.ts:22
672
+
673
+ ___
674
+
675
+ ### appendSignMultisigTransaction
676
+
677
+ ▸ **appendSignMultisigTransaction**(`multisigTxnBlob`, `«destructured»`, `sk`): `Object`
678
+
679
+ appendSignMultisigTransaction takes a multisig transaction blob, and appends our signature to it.
680
+ While we could derive public key preimagery from the partially-signed multisig transaction,
681
+ we ask the caller to pass it back in, to ensure they know what they are signing.
682
+
683
+ #### Parameters
684
+
685
+ | Name | Type | Description |
686
+ | :------ | :------ | :------ |
687
+ | `multisigTxnBlob` | `Uint8Array` | an encoded multisig txn. Supports non-payment txn types. |
688
+ | `«destructured»` | [`MultisigMetadata`](interfaces/MultisigMetadata.md) | - |
689
+ | `sk` | `Uint8Array` | Algorand secret key |
690
+
691
+ #### Returns
692
+
693
+ `Object`
694
+
695
+ object containing txID, and blob representing encoded multisig txn
696
+
697
+ | Name | Type |
698
+ | :------ | :------ |
699
+ | `blob` | `Uint8Array` |
700
+ | `txID` | `string` |
701
+
702
+ #### Defined in
703
+
704
+ multisig.ts:429
705
+
706
+ ___
707
+
708
+ ### appendSignRawMultisigSignature
709
+
710
+ ▸ **appendSignRawMultisigSignature**(`multisigTxnBlob`, `«destructured»`, `signerAddr`, `signature`): `Object`
711
+
712
+ appendMultisigTransactionSignature takes a multisig transaction blob, and appends a given raw signature to it.
713
+ This makes it possible to compile a multisig signature using only raw signatures from external methods.
714
+
715
+ #### Parameters
716
+
717
+ | Name | Type | Description |
718
+ | :------ | :------ | :------ |
719
+ | `multisigTxnBlob` | `Uint8Array` | an encoded multisig txn. Supports non-payment txn types. |
720
+ | `«destructured»` | [`MultisigMetadata`](interfaces/MultisigMetadata.md) | - |
721
+ | `signerAddr` | `string` | address of the signer |
722
+ | `signature` | `Uint8Array` | raw multisig signature |
723
+
724
+ #### Returns
725
+
726
+ `Object`
727
+
728
+ object containing txID, and blob representing encoded multisig txn
729
+
730
+ | Name | Type |
731
+ | :------ | :------ |
732
+ | `blob` | `Uint8Array` |
733
+ | `txID` | `string` |
734
+
735
+ #### Defined in
736
+
737
+ multisig.ts:461
738
+
739
+ ___
740
+
741
+ ### assignGroupID
742
+
743
+ ▸ **assignGroupID**(`txns`, `from?`): [`Transaction`](classes/Transaction.md)[]
744
+
745
+ assignGroupID assigns group id to a given list of unsigned transactions
746
+
747
+ #### Parameters
748
+
749
+ | Name | Type | Description |
750
+ | :------ | :------ | :------ |
751
+ | `txns` | [`TransactionLike`](modules.md#transactionlike)[] | array of transactions (every element is a dict or Transaction) |
752
+ | `from?` | `string` | optional sender address specifying which transaction return |
753
+
754
+ #### Returns
755
+
756
+ [`Transaction`](classes/Transaction.md)[]
757
+
758
+ possible list of matching transactions
759
+
760
+ #### Defined in
761
+
762
+ group.ts:82
763
+
764
+ ___
765
+
766
+ ### bigIntToBytes
767
+
768
+ ▸ **bigIntToBytes**(`bi`, `size`): `Uint8Array`
769
+
770
+ bigIntToBytes converts a BigInt to a big-endian Uint8Array for encoding.
771
+
772
+ #### Parameters
773
+
774
+ | Name | Type | Description |
775
+ | :------ | :------ | :------ |
776
+ | `bi` | `number` \| `bigint` | The bigint to convert. |
777
+ | `size` | `number` | The size of the resulting byte array. |
778
+
779
+ #### Returns
780
+
781
+ `Uint8Array`
782
+
783
+ A byte array containing the big-endian encoding of the input bigint
784
+
785
+ #### Defined in
786
+
787
+ encoding/bigint.ts:9
788
+
789
+ ___
790
+
791
+ ### bytesToBigInt
792
+
793
+ ▸ **bytesToBigInt**(`bytes`): `bigint`
794
+
795
+ bytesToBigInt produces a bigint from a binary representation.
796
+
797
+ #### Parameters
798
+
799
+ | Name | Type | Description |
800
+ | :------ | :------ | :------ |
801
+ | `bytes` | `Uint8Array` | The Uint8Array to convert. |
802
+
803
+ #### Returns
804
+
805
+ `bigint`
806
+
807
+ The bigint that was encoded in the input data.
808
+
809
+ #### Defined in
810
+
811
+ encoding/bigint.ts:28
812
+
813
+ ___
814
+
815
+ ### computeGroupID
816
+
817
+ ▸ **computeGroupID**(`txns`): `Buffer`
818
+
819
+ computeGroupID returns group ID for a group of transactions
820
+
821
+ #### Parameters
822
+
823
+ | Name | Type | Description |
824
+ | :------ | :------ | :------ |
825
+ | `txns` | [`TransactionLike`](modules.md#transactionlike)[] | array of transactions (every element is a dict or Transaction) |
826
+
827
+ #### Returns
828
+
829
+ `Buffer`
830
+
831
+ Buffer
832
+
833
+ #### Defined in
834
+
835
+ group.ts:61
836
+
837
+ ___
838
+
839
+ ### createDryrun
840
+
841
+ ▸ **createDryrun**(`«destructured»`): `Promise`\<[`DryrunRequest`](classes/modelsv2.DryrunRequest.md)\>
842
+
843
+ createDryrun takes an Algod Client (from algod.AlgodV2Client) and an array of Signed Transactions
844
+ from (transaction.SignedTransaction) and creates a DryrunRequest object with relevant balances
845
+
846
+ #### Parameters
847
+
848
+ | Name | Type |
849
+ | :------ | :------ |
850
+ | `«destructured»` | `Object` |
851
+ | › `client` | [`Algodv2`](classes/Algodv2.md) |
852
+ | › `latestTimestamp?` | `number` \| `bigint` |
853
+ | › `protocolVersion?` | `string` |
854
+ | › `round?` | `number` \| `bigint` |
855
+ | › `sources?` | [`DryrunSource`](classes/modelsv2.DryrunSource.md)[] |
856
+ | › `txns` | [`SignedTransaction`](interfaces/SignedTransaction.md)[] |
857
+
858
+ #### Returns
859
+
860
+ `Promise`\<[`DryrunRequest`](classes/modelsv2.DryrunRequest.md)\>
861
+
862
+ the DryrunRequest object constructed from the SignedTransactions passed
863
+
864
+ #### Defined in
865
+
866
+ dryrun.ts:55
867
+
868
+ ___
869
+
870
+ ### createMultisigTransaction
871
+
872
+ ▸ **createMultisigTransaction**(`txn`, `«destructured»`): `Uint8Array`
873
+
874
+ createMultisigTransaction creates a raw, unsigned multisig transaction blob.
875
+
876
+ #### Parameters
877
+
878
+ | Name | Type | Description |
879
+ | :------ | :------ | :------ |
880
+ | `txn` | [`Transaction`](classes/Transaction.md) | the actual transaction. |
881
+ | `«destructured»` | [`MultisigMetadata`](interfaces/MultisigMetadata.md) | - |
882
+
883
+ #### Returns
884
+
885
+ `Uint8Array`
886
+
887
+ encoded multisig blob
888
+
889
+ #### Defined in
890
+
891
+ multisig.ts:53
892
+
893
+ ___
894
+
895
+ ### decodeAddress
896
+
897
+ ▸ **decodeAddress**(`address`): [`Address`](interfaces/Address.md)
898
+
899
+ decodeAddress takes an Algorand address in string form and decodes it into a Uint8Array.
900
+
901
+ #### Parameters
902
+
903
+ | Name | Type | Description |
904
+ | :------ | :------ | :------ |
905
+ | `address` | `string` | an Algorand address with checksum. |
906
+
907
+ #### Returns
908
+
909
+ [`Address`](interfaces/Address.md)
910
+
911
+ the decoded form of the address's public key and checksum
912
+
913
+ #### Defined in
914
+
915
+ encoding/address.ts:47
916
+
917
+ ___
918
+
919
+ ### decodeObj
920
+
921
+ ▸ **decodeObj**(`o`): `unknown`
922
+
923
+ decodeObj takes a Uint8Array and returns its javascript obj
924
+
925
+ #### Parameters
926
+
927
+ | Name | Type | Description |
928
+ | :------ | :------ | :------ |
929
+ | `o` | `ArrayLike`\<`number`\> | Uint8Array to decode |
930
+
931
+ #### Returns
932
+
933
+ `unknown`
934
+
935
+ object
936
+
937
+ #### Defined in
938
+
939
+ main.ts:109
940
+
941
+ ___
942
+
943
+ ### decodeSignedTransaction
944
+
945
+ ▸ **decodeSignedTransaction**(`transactionBuffer`): [`SignedTransaction`](interfaces/SignedTransaction.md)
946
+
947
+ decodeSignedTransaction takes a Buffer (from transaction.signTxn) and converts it to an object
948
+ containing the Transaction (txn), the signature (sig), and the auth-addr field if applicable (sgnr)
949
+
950
+ #### Parameters
951
+
952
+ | Name | Type | Description |
953
+ | :------ | :------ | :------ |
954
+ | `transactionBuffer` | `Uint8Array` | the Uint8Array containing a transaction |
955
+
956
+ #### Returns
957
+
958
+ [`SignedTransaction`](interfaces/SignedTransaction.md)
959
+
960
+ containing a Transaction, the signature, and possibly an auth-addr field
961
+
962
+ #### Defined in
963
+
964
+ transaction.ts:1357
965
+
966
+ ___
967
+
968
+ ### decodeUint64
969
+
970
+ ▸ **decodeUint64**(`data`, `decodingMode`): `number`
971
+
972
+ decodeUint64 produces an integer from a binary representation.
973
+
974
+ #### Parameters
975
+
976
+ | Name | Type | Description |
977
+ | :------ | :------ | :------ |
978
+ | `data` | `Uint8Array` | An typed array containing the big-endian encoding of an unsigned integer less than 2^64. This array must be at most 8 bytes long. |
979
+ | `decodingMode` | ``"safe"`` | Configure how the integer will be decoded. The options are: * "safe": The integer will be decoded as a Number, but if it is greater than Number.MAX_SAFE_INTEGER an error will be thrown. * "mixed": The integer will be decoded as a Number if it is less than or equal to Number.MAX_SAFE_INTEGER, otherwise it will be decoded as a BigInt. * "bigint": The integer will always be decoded as a BigInt. Defaults to "safe" if not included. |
980
+
981
+ #### Returns
982
+
983
+ `number`
984
+
985
+ The integer that was encoded in the input data. The return type will
986
+ be determined by the parameter decodingMode.
987
+
988
+ #### Defined in
989
+
990
+ encoding/uint64.ts:47
991
+
992
+ ▸ **decodeUint64**(`data`, `decodingMode`): `number` \| `bigint`
993
+
994
+ #### Parameters
995
+
996
+ | Name | Type |
997
+ | :------ | :------ |
998
+ | `data` | `Uint8Array` |
999
+ | `decodingMode` | ``"mixed"`` |
1000
+
1001
+ #### Returns
1002
+
1003
+ `number` \| `bigint`
1004
+
1005
+ #### Defined in
1006
+
1007
+ encoding/uint64.ts:48
1008
+
1009
+ ▸ **decodeUint64**(`data`, `decodingMode`): `bigint`
1010
+
1011
+ #### Parameters
1012
+
1013
+ | Name | Type |
1014
+ | :------ | :------ |
1015
+ | `data` | `Uint8Array` |
1016
+ | `decodingMode` | ``"bigint"`` |
1017
+
1018
+ #### Returns
1019
+
1020
+ `bigint`
1021
+
1022
+ #### Defined in
1023
+
1024
+ encoding/uint64.ts:52
1025
+
1026
+ ___
1027
+
1028
+ ### decodeUnsignedTransaction
1029
+
1030
+ ▸ **decodeUnsignedTransaction**(`transactionBuffer`): [`Transaction`](classes/Transaction.md)
1031
+
1032
+ decodeUnsignedTransaction takes a Buffer (as if from encodeUnsignedTransaction) and converts it to a txnBuilder.Transaction object
1033
+
1034
+ #### Parameters
1035
+
1036
+ | Name | Type | Description |
1037
+ | :------ | :------ | :------ |
1038
+ | `transactionBuffer` | `ArrayLike`\<`number`\> | the Uint8Array containing a transaction |
1039
+
1040
+ #### Returns
1041
+
1042
+ [`Transaction`](classes/Transaction.md)
1043
+
1044
+ #### Defined in
1045
+
1046
+ transaction.ts:1312
1047
+
1048
+ ___
1049
+
1050
+ ### encodeAddress
1051
+
1052
+ ▸ **encodeAddress**(`address`): `string`
1053
+
1054
+ encodeAddress takes an Algorand address as a Uint8Array and encodes it into a string with checksum.
1055
+
1056
+ #### Parameters
1057
+
1058
+ | Name | Type | Description |
1059
+ | :------ | :------ | :------ |
1060
+ | `address` | `Uint8Array` | a raw Algorand address |
1061
+
1062
+ #### Returns
1063
+
1064
+ `string`
1065
+
1066
+ the address and checksum encoded as a string.
1067
+
1068
+ #### Defined in
1069
+
1070
+ encoding/address.ts:103
1071
+
1072
+ ___
1073
+
1074
+ ### encodeObj
1075
+
1076
+ ▸ **encodeObj**(`o`): `Uint8Array`
1077
+
1078
+ encodeObj takes a javascript object and returns its msgpack encoding
1079
+ Note that the encoding sorts the fields alphabetically
1080
+
1081
+ #### Parameters
1082
+
1083
+ | Name | Type | Description |
1084
+ | :------ | :------ | :------ |
1085
+ | `o` | `Record`\<`string` \| `number` \| `symbol`, `any`\> | js obj |
1086
+
1087
+ #### Returns
1088
+
1089
+ `Uint8Array`
1090
+
1091
+ Uint8Array binary representation
1092
+
1093
+ #### Defined in
1094
+
1095
+ main.ts:100
1096
+
1097
+ ___
1098
+
1099
+ ### encodeUint64
1100
+
1101
+ ▸ **encodeUint64**(`num`): `Uint8Array`
1102
+
1103
+ encodeUint64 converts an integer to its binary representation.
1104
+
1105
+ #### Parameters
1106
+
1107
+ | Name | Type | Description |
1108
+ | :------ | :------ | :------ |
1109
+ | `num` | `number` \| `bigint` | The number to convert. This must be an unsigned integer less than 2^64. |
1110
+
1111
+ #### Returns
1112
+
1113
+ `Uint8Array`
1114
+
1115
+ An 8-byte typed array containing the big-endian encoding of the input
1116
+ integer.
1117
+
1118
+ #### Defined in
1119
+
1120
+ encoding/uint64.ts:15
1121
+
1122
+ ___
1123
+
1124
+ ### encodeUnsignedSimulateTransaction
1125
+
1126
+ ▸ **encodeUnsignedSimulateTransaction**(`transactionObject`): `Uint8Array`
1127
+
1128
+ encodeUnsignedSimulateTransaction takes a txnBuilder.Transaction object,
1129
+ converts it into a SignedTransaction-like object, and converts it to a Buffer.
1130
+
1131
+ Note: this function should only be used to simulate unsigned transactions.
1132
+
1133
+ #### Parameters
1134
+
1135
+ | Name | Type | Description |
1136
+ | :------ | :------ | :------ |
1137
+ | `transactionObject` | [`Transaction`](classes/Transaction.md) | Transaction object to simulate. |
1138
+
1139
+ #### Returns
1140
+
1141
+ `Uint8Array`
1142
+
1143
+ #### Defined in
1144
+
1145
+ transaction.ts:1289
1146
+
1147
+ ___
1148
+
1149
+ ### encodeUnsignedTransaction
1150
+
1151
+ ▸ **encodeUnsignedTransaction**(`transactionObject`): `Uint8Array`
1152
+
1153
+ encodeUnsignedTransaction takes a completed txnBuilder.Transaction object, such as from the makeFoo
1154
+ family of transactions, and converts it to a Buffer
1155
+
1156
+ #### Parameters
1157
+
1158
+ | Name | Type | Description |
1159
+ | :------ | :------ | :------ |
1160
+ | `transactionObject` | [`Transaction`](classes/Transaction.md) | the completed Transaction object |
1161
+
1162
+ #### Returns
1163
+
1164
+ `Uint8Array`
1165
+
1166
+ #### Defined in
1167
+
1168
+ transaction.ts:1303
1169
+
1170
+ ___
1171
+
1172
+ ### generateAccount
1173
+
1174
+ ▸ **generateAccount**(): [`Account`](interfaces/Account.md)
1175
+
1176
+ generateAccount returns a new Algorand address and its corresponding secret key
1177
+
1178
+ #### Returns
1179
+
1180
+ [`Account`](interfaces/Account.md)
1181
+
1182
+ #### Defined in
1183
+
1184
+ account.ts:8
1185
+
1186
+ ___
1187
+
1188
+ ### getApplicationAddress
1189
+
1190
+ ▸ **getApplicationAddress**(`appID`): `string`
1191
+
1192
+ Get the escrow address of an application.
1193
+
1194
+ #### Parameters
1195
+
1196
+ | Name | Type | Description |
1197
+ | :------ | :------ | :------ |
1198
+ | `appID` | `number` \| `bigint` | The ID of the application. |
1199
+
1200
+ #### Returns
1201
+
1202
+ `string`
1203
+
1204
+ The address corresponding to that application's escrow account.
1205
+
1206
+ #### Defined in
1207
+
1208
+ encoding/address.ts:188
1209
+
1210
+ ___
1211
+
1212
+ ### getMethodByName
1213
+
1214
+ ▸ **getMethodByName**(`methods`, `name`): [`ABIMethod`](classes/ABIMethod.md)
1215
+
1216
+ #### Parameters
1217
+
1218
+ | Name | Type |
1219
+ | :------ | :------ |
1220
+ | `methods` | [`ABIMethod`](classes/ABIMethod.md)[] |
1221
+ | `name` | `string` |
1222
+
1223
+ #### Returns
1224
+
1225
+ [`ABIMethod`](classes/ABIMethod.md)
1226
+
1227
+ #### Defined in
1228
+
1229
+ abi/method.ts:176
1230
+
1231
+ ___
1232
+
1233
+ ### instantiateTxnIfNeeded
1234
+
1235
+ ▸ **instantiateTxnIfNeeded**(`transactionLike`): [`Transaction`](classes/Transaction.md)
1236
+
1237
+ #### Parameters
1238
+
1239
+ | Name | Type |
1240
+ | :------ | :------ |
1241
+ | `transactionLike` | [`TransactionLike`](modules.md#transactionlike) |
1242
+
1243
+ #### Returns
1244
+
1245
+ [`Transaction`](classes/Transaction.md)
1246
+
1247
+ #### Defined in
1248
+
1249
+ transaction.ts:1375
1250
+
1251
+ ___
1252
+
1253
+ ### isTransactionWithSigner
1254
+
1255
+ ▸ **isTransactionWithSigner**(`value`): value is TransactionWithSigner
1256
+
1257
+ Check if a value conforms to the TransactionWithSigner structure.
1258
+
1259
+ #### Parameters
1260
+
1261
+ | Name | Type | Description |
1262
+ | :------ | :------ | :------ |
1263
+ | `value` | `any` | The value to check. |
1264
+
1265
+ #### Returns
1266
+
1267
+ value is TransactionWithSigner
1268
+
1269
+ True if an only if the value has the structure of a TransactionWithSigner.
1270
+
1271
+ #### Defined in
1272
+
1273
+ signer.ts:117
1274
+
1275
+ ___
1276
+
1277
+ ### isValidAddress
1278
+
1279
+ ▸ **isValidAddress**(`address`): `boolean`
1280
+
1281
+ isValidAddress checks if a string is a valid Algorand address.
1282
+
1283
+ #### Parameters
1284
+
1285
+ | Name | Type | Description |
1286
+ | :------ | :------ | :------ |
1287
+ | `address` | `string` | an Algorand address with checksum. |
1288
+
1289
+ #### Returns
1290
+
1291
+ `boolean`
1292
+
1293
+ true if valid, false otherwise
1294
+
1295
+ #### Defined in
1296
+
1297
+ encoding/address.ts:88
1298
+
1299
+ ___
1300
+
1301
+ ### logicSigFromByte
1302
+
1303
+ ▸ **logicSigFromByte**(`encoded`): [`LogicSig`](classes/LogicSig.md)
1304
+
1305
+ logicSigFromByte accepts encoded logic sig bytes and attempts to call logicsig.fromByte on it,
1306
+ returning the result
1307
+
1308
+ #### Parameters
1309
+
1310
+ | Name | Type |
1311
+ | :------ | :------ |
1312
+ | `encoded` | `Uint8Array` |
1313
+
1314
+ #### Returns
1315
+
1316
+ [`LogicSig`](classes/LogicSig.md)
1317
+
1318
+ #### Defined in
1319
+
1320
+ logicsig.ts:472
1321
+
1322
+ ___
1323
+
1324
+ ### makeApplicationCallTxnFromObject
1325
+
1326
+ ▸ **makeApplicationCallTxnFromObject**(`options`): [`Transaction`](classes/Transaction.md)
1327
+
1328
+ Generic function for creating any application call transaction.
1329
+
1330
+ #### Parameters
1331
+
1332
+ | Name | Type |
1333
+ | :------ | :------ |
1334
+ | `options` | `Object` |
1335
+ | `options.accounts` | `string`[] |
1336
+ | `options.appArgs` | `Uint8Array`[] |
1337
+ | `options.appIndex` | `number` |
1338
+ | `options.approvalProgram` | `Uint8Array` |
1339
+ | `options.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1340
+ | `options.clearProgram` | `Uint8Array` |
1341
+ | `options.extraPages` | `number` |
1342
+ | `options.foreignApps` | `number`[] |
1343
+ | `options.foreignAssets` | `number`[] |
1344
+ | `options.from` | `string` |
1345
+ | `options.lease` | `Uint8Array` |
1346
+ | `options.note` | `Uint8Array` |
1347
+ | `options.numGlobalByteSlices` | `number` |
1348
+ | `options.numGlobalInts` | `number` |
1349
+ | `options.numLocalByteSlices` | `number` |
1350
+ | `options.numLocalInts` | `number` |
1351
+ | `options.onComplete` | [`OnApplicationComplete`](enums/OnApplicationComplete.md) |
1352
+ | `options.rekeyTo` | `string` |
1353
+ | `options.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1354
+
1355
+ #### Returns
1356
+
1357
+ [`Transaction`](classes/Transaction.md)
1358
+
1359
+ #### Defined in
1360
+
1361
+ makeTxn.ts:1403
1362
+
1363
+ ___
1364
+
1365
+ ### makeApplicationClearStateTxn
1366
+
1367
+ ▸ **makeApplicationClearStateTxn**(`from`, `suggestedParams`, `appIndex`, `appArgs?`, `accounts?`, `foreignApps?`, `foreignAssets?`, `note?`, `lease?`, `rekeyTo?`, `boxes?`): [`Transaction`](classes/Transaction.md)
1368
+
1369
+ Make a transaction that clears a user's state in an application
1370
+
1371
+ #### Parameters
1372
+
1373
+ | Name | Type | Description |
1374
+ | :------ | :------ | :------ |
1375
+ | `from` | `string` | address of sender |
1376
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1377
+ | `appIndex` | `number` | the ID of the app to use |
1378
+ | `appArgs?` | `Uint8Array`[] | Array of Uint8Array, any additional arguments to the application |
1379
+ | `accounts?` | `string`[] | Array of Address strings, any additional accounts to supply to the application |
1380
+ | `foreignApps?` | `number`[] | Array of int, any other apps used by the application, identified by index |
1381
+ | `foreignAssets?` | `number`[] | Array of int, any assets used by the application, identified by index |
1382
+ | `note?` | `Uint8Array` | Arbitrary data for sender to store |
1383
+ | `lease?` | `Uint8Array` | Lease a transaction |
1384
+ | `rekeyTo?` | `string` | String representation of the Algorand address that will be used to authorize all future transactions |
1385
+ | `boxes?` | [`BoxReference`](interfaces/BoxReference.md)[] | Array of BoxReference, app ID and name of box to be accessed |
1386
+
1387
+ #### Returns
1388
+
1389
+ [`Transaction`](classes/Transaction.md)
1390
+
1391
+ **`Deprecated`**
1392
+
1393
+ This function will be removed in v3 in favor of [makeApplicationClearStateTxnFromObject](modules.md#makeapplicationclearstatetxnfromobject)
1394
+
1395
+ #### Defined in
1396
+
1397
+ makeTxn.ts:1229
1398
+
1399
+ ___
1400
+
1401
+ ### makeApplicationClearStateTxnFromObject
1402
+
1403
+ ▸ **makeApplicationClearStateTxnFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1404
+
1405
+ #### Parameters
1406
+
1407
+ | Name | Type |
1408
+ | :------ | :------ |
1409
+ | `o` | `Object` |
1410
+ | `o.accounts` | `string`[] |
1411
+ | `o.appArgs` | `Uint8Array`[] |
1412
+ | `o.appIndex` | `number` |
1413
+ | `o.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1414
+ | `o.foreignApps` | `number`[] |
1415
+ | `o.foreignAssets` | `number`[] |
1416
+ | `o.from` | `string` |
1417
+ | `o.lease` | `Uint8Array` |
1418
+ | `o.note` | `Uint8Array` |
1419
+ | `o.rekeyTo` | `string` |
1420
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1421
+
1422
+ #### Returns
1423
+
1424
+ [`Transaction`](classes/Transaction.md)
1425
+
1426
+ #### Defined in
1427
+
1428
+ makeTxn.ts:1261
1429
+
1430
+ ___
1431
+
1432
+ ### makeApplicationCloseOutTxn
1433
+
1434
+ ▸ **makeApplicationCloseOutTxn**(`from`, `suggestedParams`, `appIndex`, `appArgs?`, `accounts?`, `foreignApps?`, `foreignAssets?`, `note?`, `lease?`, `rekeyTo?`, `boxes?`): [`Transaction`](classes/Transaction.md)
1435
+
1436
+ Make a transaction that closes out a user's state in an application
1437
+
1438
+ #### Parameters
1439
+
1440
+ | Name | Type | Description |
1441
+ | :------ | :------ | :------ |
1442
+ | `from` | `string` | address of sender |
1443
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1444
+ | `appIndex` | `number` | the ID of the app to use |
1445
+ | `appArgs?` | `Uint8Array`[] | Array of Uint8Array, any additional arguments to the application |
1446
+ | `accounts?` | `string`[] | Array of Address strings, any additional accounts to supply to the application |
1447
+ | `foreignApps?` | `number`[] | Array of int, any other apps used by the application, identified by index |
1448
+ | `foreignAssets?` | `number`[] | Array of int, any assets used by the application, identified by index |
1449
+ | `note?` | `Uint8Array` | Arbitrary data for sender to store |
1450
+ | `lease?` | `Uint8Array` | Lease a transaction |
1451
+ | `rekeyTo?` | `string` | String representation of the Algorand address that will be used to authorize all future transactions |
1452
+ | `boxes?` | [`BoxReference`](interfaces/BoxReference.md)[] | Array of BoxReference, app ID and name of box to be accessed |
1453
+
1454
+ #### Returns
1455
+
1456
+ [`Transaction`](classes/Transaction.md)
1457
+
1458
+ **`Deprecated`**
1459
+
1460
+ This function will be removed in v3 in favor of [makeApplicationCloseOutTxnFromObject](modules.md#makeapplicationcloseouttxnfromobject)
1461
+
1462
+ #### Defined in
1463
+
1464
+ makeTxn.ts:1133
1465
+
1466
+ ___
1467
+
1468
+ ### makeApplicationCloseOutTxnFromObject
1469
+
1470
+ ▸ **makeApplicationCloseOutTxnFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1471
+
1472
+ #### Parameters
1473
+
1474
+ | Name | Type |
1475
+ | :------ | :------ |
1476
+ | `o` | `Object` |
1477
+ | `o.accounts` | `string`[] |
1478
+ | `o.appArgs` | `Uint8Array`[] |
1479
+ | `o.appIndex` | `number` |
1480
+ | `o.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1481
+ | `o.foreignApps` | `number`[] |
1482
+ | `o.foreignAssets` | `number`[] |
1483
+ | `o.from` | `string` |
1484
+ | `o.lease` | `Uint8Array` |
1485
+ | `o.note` | `Uint8Array` |
1486
+ | `o.rekeyTo` | `string` |
1487
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1488
+
1489
+ #### Returns
1490
+
1491
+ [`Transaction`](classes/Transaction.md)
1492
+
1493
+ #### Defined in
1494
+
1495
+ makeTxn.ts:1165
1496
+
1497
+ ___
1498
+
1499
+ ### makeApplicationCreateTxn
1500
+
1501
+ ▸ **makeApplicationCreateTxn**(`from`, `suggestedParams`, `onComplete`, `approvalProgram`, `clearProgram`, `numLocalInts`, `numLocalByteSlices`, `numGlobalInts`, `numGlobalByteSlices`, `appArgs?`, `accounts?`, `foreignApps?`, `foreignAssets?`, `note?`, `lease?`, `rekeyTo?`, `extraPages?`, `boxes?`): [`Transaction`](classes/Transaction.md)
1502
+
1503
+ Make a transaction that will create an application.
1504
+
1505
+ #### Parameters
1506
+
1507
+ | Name | Type | Description |
1508
+ | :------ | :------ | :------ |
1509
+ | `from` | `string` | address of sender |
1510
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1511
+ | `onComplete` | [`OnApplicationComplete`](enums/OnApplicationComplete.md) | algosdk.OnApplicationComplete, what application should do once the program is done being run |
1512
+ | `approvalProgram` | `Uint8Array` | Uint8Array, the compiled TEAL that approves a transaction |
1513
+ | `clearProgram` | `Uint8Array` | Uint8Array, the compiled TEAL that runs when clearing state |
1514
+ | `numLocalInts` | `number` | restricts number of ints in per-user local state |
1515
+ | `numLocalByteSlices` | `number` | restricts number of byte slices in per-user local state |
1516
+ | `numGlobalInts` | `number` | restricts number of ints in global state |
1517
+ | `numGlobalByteSlices` | `number` | restricts number of byte slices in global state |
1518
+ | `appArgs?` | `Uint8Array`[] | Array of Uint8Array, any additional arguments to the application |
1519
+ | `accounts?` | `string`[] | Array of Address strings, any additional accounts to supply to the application |
1520
+ | `foreignApps?` | `number`[] | Array of int, any other apps used by the application, identified by index |
1521
+ | `foreignAssets?` | `number`[] | Array of int, any assets used by the application, identified by index |
1522
+ | `note?` | `Uint8Array` | Arbitrary data for sender to store |
1523
+ | `lease?` | `Uint8Array` | Lease a transaction |
1524
+ | `rekeyTo?` | `string` | String representation of the Algorand address that will be used to authorize all future transactions |
1525
+ | `extraPages?` | `number` | integer extra pages of memory to rent on creation of application |
1526
+ | `boxes?` | [`BoxReference`](interfaces/BoxReference.md)[] | Array of BoxReference, app ID and name of box to be accessed |
1527
+
1528
+ #### Returns
1529
+
1530
+ [`Transaction`](classes/Transaction.md)
1531
+
1532
+ **`Deprecated`**
1533
+
1534
+ This function will be removed in v3 in favor of [makeApplicationCreateTxnFromObject](modules.md#makeapplicationcreatetxnfromobject)
1535
+
1536
+ #### Defined in
1537
+
1538
+ makeTxn.ts:702
1539
+
1540
+ ___
1541
+
1542
+ ### makeApplicationCreateTxnFromObject
1543
+
1544
+ ▸ **makeApplicationCreateTxnFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1545
+
1546
+ #### Parameters
1547
+
1548
+ | Name | Type |
1549
+ | :------ | :------ |
1550
+ | `o` | `Object` |
1551
+ | `o.accounts` | `string`[] |
1552
+ | `o.appArgs` | `Uint8Array`[] |
1553
+ | `o.approvalProgram` | `Uint8Array` |
1554
+ | `o.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1555
+ | `o.clearProgram` | `Uint8Array` |
1556
+ | `o.extraPages` | `number` |
1557
+ | `o.foreignApps` | `number`[] |
1558
+ | `o.foreignAssets` | `number`[] |
1559
+ | `o.from` | `string` |
1560
+ | `o.lease` | `Uint8Array` |
1561
+ | `o.note` | `Uint8Array` |
1562
+ | `o.numGlobalByteSlices` | `number` |
1563
+ | `o.numGlobalInts` | `number` |
1564
+ | `o.numLocalByteSlices` | `number` |
1565
+ | `o.numLocalInts` | `number` |
1566
+ | `o.onComplete` | [`OnApplicationComplete`](enums/OnApplicationComplete.md) |
1567
+ | `o.rekeyTo` | `string` |
1568
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1569
+
1570
+ #### Returns
1571
+
1572
+ [`Transaction`](classes/Transaction.md)
1573
+
1574
+ #### Defined in
1575
+
1576
+ makeTxn.ts:748
1577
+
1578
+ ___
1579
+
1580
+ ### makeApplicationDeleteTxn
1581
+
1582
+ ▸ **makeApplicationDeleteTxn**(`from`, `suggestedParams`, `appIndex`, `appArgs?`, `accounts?`, `foreignApps?`, `foreignAssets?`, `note?`, `lease?`, `rekeyTo?`, `boxes?`): [`Transaction`](classes/Transaction.md)
1583
+
1584
+ Make a transaction that deletes an application
1585
+
1586
+ #### Parameters
1587
+
1588
+ | Name | Type | Description |
1589
+ | :------ | :------ | :------ |
1590
+ | `from` | `string` | address of sender |
1591
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1592
+ | `appIndex` | `number` | the ID of the app to be deleted |
1593
+ | `appArgs?` | `Uint8Array`[] | Array of Uint8Array, any additional arguments to the application |
1594
+ | `accounts?` | `string`[] | Array of Address strings, any additional accounts to supply to the application |
1595
+ | `foreignApps?` | `number`[] | Array of int, any other apps used by the application, identified by index |
1596
+ | `foreignAssets?` | `number`[] | Array of int, any assets used by the application, identified by index |
1597
+ | `note?` | `Uint8Array` | Arbitrary data for sender to store |
1598
+ | `lease?` | `Uint8Array` | Lease a transaction |
1599
+ | `rekeyTo?` | `string` | String representation of the Algorand address that will be used to authorize all future transactions |
1600
+ | `boxes?` | [`BoxReference`](interfaces/BoxReference.md)[] | Array of BoxReference, app ID and name of box to be accessed |
1601
+
1602
+ #### Returns
1603
+
1604
+ [`Transaction`](classes/Transaction.md)
1605
+
1606
+ **`Deprecated`**
1607
+
1608
+ This function will be removed in v3 in favor of [makeApplicationDeleteTxnFromObject](modules.md#makeapplicationdeletetxnfromobject)
1609
+
1610
+ #### Defined in
1611
+
1612
+ makeTxn.ts:941
1613
+
1614
+ ___
1615
+
1616
+ ### makeApplicationDeleteTxnFromObject
1617
+
1618
+ ▸ **makeApplicationDeleteTxnFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1619
+
1620
+ #### Parameters
1621
+
1622
+ | Name | Type |
1623
+ | :------ | :------ |
1624
+ | `o` | `Object` |
1625
+ | `o.accounts` | `string`[] |
1626
+ | `o.appArgs` | `Uint8Array`[] |
1627
+ | `o.appIndex` | `number` |
1628
+ | `o.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1629
+ | `o.foreignApps` | `number`[] |
1630
+ | `o.foreignAssets` | `number`[] |
1631
+ | `o.from` | `string` |
1632
+ | `o.lease` | `Uint8Array` |
1633
+ | `o.note` | `Uint8Array` |
1634
+ | `o.rekeyTo` | `string` |
1635
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1636
+
1637
+ #### Returns
1638
+
1639
+ [`Transaction`](classes/Transaction.md)
1640
+
1641
+ #### Defined in
1642
+
1643
+ makeTxn.ts:973
1644
+
1645
+ ___
1646
+
1647
+ ### makeApplicationNoOpTxn
1648
+
1649
+ ▸ **makeApplicationNoOpTxn**(`from`, `suggestedParams`, `appIndex`, `appArgs?`, `accounts?`, `foreignApps?`, `foreignAssets?`, `note?`, `lease?`, `rekeyTo?`, `boxes?`): [`Transaction`](classes/Transaction.md)
1650
+
1651
+ Make a transaction that just calls an application, doing nothing on completion
1652
+
1653
+ #### Parameters
1654
+
1655
+ | Name | Type | Description |
1656
+ | :------ | :------ | :------ |
1657
+ | `from` | `string` | address of sender |
1658
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1659
+ | `appIndex` | `number` | the ID of the app to use |
1660
+ | `appArgs?` | `Uint8Array`[] | Array of Uint8Array, any additional arguments to the application |
1661
+ | `accounts?` | `string`[] | Array of Address strings, any additional accounts to supply to the application |
1662
+ | `foreignApps?` | `number`[] | Array of int, any other apps used by the application, identified by index |
1663
+ | `foreignAssets?` | `number`[] | Array of int, any assets used by the application, identified by index |
1664
+ | `note?` | `Uint8Array` | Arbitrary data for sender to store |
1665
+ | `lease?` | `Uint8Array` | Lease a transaction |
1666
+ | `rekeyTo?` | `string` | String representation of the Algorand address that will be used to authorize all future transactions |
1667
+ | `boxes?` | [`BoxReference`](interfaces/BoxReference.md)[] | Array of BoxReference, app ID and name of box to be accessed |
1668
+
1669
+ #### Returns
1670
+
1671
+ [`Transaction`](classes/Transaction.md)
1672
+
1673
+ **`Deprecated`**
1674
+
1675
+ This function will be removed in v3 in favor of [makeApplicationNoOpTxnFromObject](modules.md#makeapplicationnooptxnfromobject)
1676
+
1677
+ #### Defined in
1678
+
1679
+ makeTxn.ts:1325
1680
+
1681
+ ___
1682
+
1683
+ ### makeApplicationNoOpTxnFromObject
1684
+
1685
+ ▸ **makeApplicationNoOpTxnFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1686
+
1687
+ #### Parameters
1688
+
1689
+ | Name | Type |
1690
+ | :------ | :------ |
1691
+ | `o` | `Object` |
1692
+ | `o.accounts` | `string`[] |
1693
+ | `o.appArgs` | `Uint8Array`[] |
1694
+ | `o.appIndex` | `number` |
1695
+ | `o.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1696
+ | `o.foreignApps` | `number`[] |
1697
+ | `o.foreignAssets` | `number`[] |
1698
+ | `o.from` | `string` |
1699
+ | `o.lease` | `Uint8Array` |
1700
+ | `o.note` | `Uint8Array` |
1701
+ | `o.rekeyTo` | `string` |
1702
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1703
+
1704
+ #### Returns
1705
+
1706
+ [`Transaction`](classes/Transaction.md)
1707
+
1708
+ #### Defined in
1709
+
1710
+ makeTxn.ts:1357
1711
+
1712
+ ___
1713
+
1714
+ ### makeApplicationOptInTxn
1715
+
1716
+ ▸ **makeApplicationOptInTxn**(`from`, `suggestedParams`, `appIndex`, `appArgs?`, `accounts?`, `foreignApps?`, `foreignAssets?`, `note?`, `lease?`, `rekeyTo?`, `boxes?`): [`Transaction`](classes/Transaction.md)
1717
+
1718
+ Make a transaction that opts in to use an application
1719
+
1720
+ #### Parameters
1721
+
1722
+ | Name | Type | Description |
1723
+ | :------ | :------ | :------ |
1724
+ | `from` | `string` | address of sender |
1725
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1726
+ | `appIndex` | `number` | the ID of the app to join |
1727
+ | `appArgs?` | `Uint8Array`[] | Array of Uint8Array, any additional arguments to the application |
1728
+ | `accounts?` | `string`[] | Array of Address strings, any additional accounts to supply to the application |
1729
+ | `foreignApps?` | `number`[] | Array of int, any other apps used by the application, identified by index |
1730
+ | `foreignAssets?` | `number`[] | Array of int, any assets used by the application, identified by index |
1731
+ | `note?` | `Uint8Array` | Arbitrary data for sender to store |
1732
+ | `lease?` | `Uint8Array` | Lease a transaction |
1733
+ | `rekeyTo?` | `string` | String representation of the Algorand address that will be used to authorize all future transactions |
1734
+ | `boxes?` | [`BoxReference`](interfaces/BoxReference.md)[] | Array of BoxReference, app ID and name of box to be accessed |
1735
+
1736
+ #### Returns
1737
+
1738
+ [`Transaction`](classes/Transaction.md)
1739
+
1740
+ **`Deprecated`**
1741
+
1742
+ This function will be removed in v3 in favor of [makeApplicationOptInTxnFromObject](modules.md#makeapplicationoptintxnfromobject)
1743
+
1744
+ #### Defined in
1745
+
1746
+ makeTxn.ts:1037
1747
+
1748
+ ___
1749
+
1750
+ ### makeApplicationOptInTxnFromObject
1751
+
1752
+ ▸ **makeApplicationOptInTxnFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1753
+
1754
+ #### Parameters
1755
+
1756
+ | Name | Type |
1757
+ | :------ | :------ |
1758
+ | `o` | `Object` |
1759
+ | `o.accounts` | `string`[] |
1760
+ | `o.appArgs` | `Uint8Array`[] |
1761
+ | `o.appIndex` | `number` |
1762
+ | `o.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1763
+ | `o.foreignApps` | `number`[] |
1764
+ | `o.foreignAssets` | `number`[] |
1765
+ | `o.from` | `string` |
1766
+ | `o.lease` | `Uint8Array` |
1767
+ | `o.note` | `Uint8Array` |
1768
+ | `o.rekeyTo` | `string` |
1769
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1770
+
1771
+ #### Returns
1772
+
1773
+ [`Transaction`](classes/Transaction.md)
1774
+
1775
+ #### Defined in
1776
+
1777
+ makeTxn.ts:1069
1778
+
1779
+ ___
1780
+
1781
+ ### makeApplicationUpdateTxn
1782
+
1783
+ ▸ **makeApplicationUpdateTxn**(`from`, `suggestedParams`, `appIndex`, `approvalProgram`, `clearProgram`, `appArgs?`, `accounts?`, `foreignApps?`, `foreignAssets?`, `note?`, `lease?`, `rekeyTo?`, `boxes?`): [`Transaction`](classes/Transaction.md)
1784
+
1785
+ Make a transaction that changes an application's approval and clear programs
1786
+
1787
+ #### Parameters
1788
+
1789
+ | Name | Type | Description |
1790
+ | :------ | :------ | :------ |
1791
+ | `from` | `string` | address of sender |
1792
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1793
+ | `appIndex` | `number` | the ID of the app to be updated |
1794
+ | `approvalProgram` | `Uint8Array` | Uint8Array, the compiled TEAL that approves a transaction |
1795
+ | `clearProgram` | `Uint8Array` | Uint8Array, the compiled TEAL that runs when clearing state |
1796
+ | `appArgs?` | `Uint8Array`[] | Array of Uint8Array, any additional arguments to the application |
1797
+ | `accounts?` | `string`[] | Array of Address strings, any additional accounts to supply to the application |
1798
+ | `foreignApps?` | `number`[] | Array of int, any other apps used by the application, identified by index |
1799
+ | `foreignAssets?` | `number`[] | Array of int, any assets used by the application, identified by index |
1800
+ | `note?` | `Uint8Array` | Arbitrary data for sender to store |
1801
+ | `lease?` | `Uint8Array` | Lease a transaction |
1802
+ | `rekeyTo?` | `string` | String representation of the Algorand address that will be used to authorize all future transactions |
1803
+ | `boxes?` | [`BoxReference`](interfaces/BoxReference.md)[] | Array of BoxReference, app ID and name of box to be accessed |
1804
+
1805
+ #### Returns
1806
+
1807
+ [`Transaction`](classes/Transaction.md)
1808
+
1809
+ **`Deprecated`**
1810
+
1811
+ This function will be removed in v3 in favor of [makeApplicationUpdateTxnFromObject](modules.md#makeapplicationupdatetxnfromobject)
1812
+
1813
+ #### Defined in
1814
+
1815
+ makeTxn.ts:835
1816
+
1817
+ ___
1818
+
1819
+ ### makeApplicationUpdateTxnFromObject
1820
+
1821
+ ▸ **makeApplicationUpdateTxnFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1822
+
1823
+ #### Parameters
1824
+
1825
+ | Name | Type |
1826
+ | :------ | :------ |
1827
+ | `o` | `Object` |
1828
+ | `o.accounts` | `string`[] |
1829
+ | `o.appArgs` | `Uint8Array`[] |
1830
+ | `o.appIndex` | `number` |
1831
+ | `o.approvalProgram` | `Uint8Array` |
1832
+ | `o.boxes` | [`BoxReference`](interfaces/BoxReference.md)[] |
1833
+ | `o.clearProgram` | `Uint8Array` |
1834
+ | `o.foreignApps` | `number`[] |
1835
+ | `o.foreignAssets` | `number`[] |
1836
+ | `o.from` | `string` |
1837
+ | `o.lease` | `Uint8Array` |
1838
+ | `o.note` | `Uint8Array` |
1839
+ | `o.rekeyTo` | `string` |
1840
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1841
+
1842
+ #### Returns
1843
+
1844
+ [`Transaction`](classes/Transaction.md)
1845
+
1846
+ #### Defined in
1847
+
1848
+ makeTxn.ts:871
1849
+
1850
+ ___
1851
+
1852
+ ### makeAssetConfigTxnWithSuggestedParams
1853
+
1854
+ ▸ **makeAssetConfigTxnWithSuggestedParams**(`from`, `note`, `assetIndex`, `manager`, `reserve`, `freeze`, `clawback`, `suggestedParams`, `strictEmptyAddressChecking?`, `rekeyTo?`): [`Transaction`](classes/Transaction.md)
1855
+
1856
+ makeAssetConfigTxnWithSuggestedParams can be issued by the asset manager to change the manager, reserve, freeze, or clawback
1857
+ you must respecify existing addresses to keep them the same; leaving a field blank is the same as turning
1858
+ that feature off for this asset
1859
+
1860
+ #### Parameters
1861
+
1862
+ | Name | Type | Default value | Description |
1863
+ | :------ | :------ | :------ | :------ |
1864
+ | `from` | `string` | `undefined` | string representation of Algorand address of sender |
1865
+ | `note` | `Uint8Array` | `undefined` | uint8array of arbitrary data for sender to store |
1866
+ | `assetIndex` | `number` | `undefined` | int asset index uniquely specifying the asset |
1867
+ | `manager` | `string` | `undefined` | string representation of new asset manager Algorand address |
1868
+ | `reserve` | `string` | `undefined` | string representation of new reserve Algorand address |
1869
+ | `freeze` | `string` | `undefined` | string representation of new freeze manager Algorand address |
1870
+ | `clawback` | `string` | `undefined` | string representation of new revocation manager Algorand address |
1871
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | `undefined` | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1872
+ | `strictEmptyAddressChecking` | `boolean` | `true` | boolean - throw an error if any of manager, reserve, freeze, or clawback are undefined. optional, defaults to true. |
1873
+ | `rekeyTo?` | `string` | `undefined` | rekeyTo address, optional |
1874
+
1875
+ #### Returns
1876
+
1877
+ [`Transaction`](classes/Transaction.md)
1878
+
1879
+ **`Deprecated`**
1880
+
1881
+ This function will be removed in v3 in favor of [makeAssetConfigTxnWithSuggestedParamsFromObject](modules.md#makeassetconfigtxnwithsuggestedparamsfromobject)
1882
+
1883
+ #### Defined in
1884
+
1885
+ makeTxn.ts:372
1886
+
1887
+ ___
1888
+
1889
+ ### makeAssetConfigTxnWithSuggestedParamsFromObject
1890
+
1891
+ ▸ **makeAssetConfigTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1892
+
1893
+ #### Parameters
1894
+
1895
+ | Name | Type |
1896
+ | :------ | :------ |
1897
+ | `o` | `Object` |
1898
+ | `o.assetIndex` | `number` |
1899
+ | `o.clawback` | `string` |
1900
+ | `o.freeze` | `string` |
1901
+ | `o.from` | `string` |
1902
+ | `o.manager` | `string` |
1903
+ | `o.note` | `Uint8Array` |
1904
+ | `o.rekeyTo` | `string` |
1905
+ | `o.reserve` | `string` |
1906
+ | `o.strictEmptyAddressChecking` | `boolean` |
1907
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1908
+
1909
+ #### Returns
1910
+
1911
+ [`Transaction`](classes/Transaction.md)
1912
+
1913
+ #### Defined in
1914
+
1915
+ makeTxn.ts:411
1916
+
1917
+ ___
1918
+
1919
+ ### makeAssetCreateTxnWithSuggestedParams
1920
+
1921
+ ▸ **makeAssetCreateTxnWithSuggestedParams**(`from`, `note`, `total`, `decimals`, `defaultFrozen`, `manager`, `reserve`, `freeze`, `clawback`, `unitName`, `assetName`, `assetURL`, `assetMetadataHash`, `suggestedParams`, `rekeyTo?`): [`Transaction`](classes/Transaction.md)
1922
+
1923
+ makeAssetCreateTxnWithSuggestedParams takes asset creation arguments and returns a Transaction object
1924
+ for creating that asset
1925
+
1926
+ #### Parameters
1927
+
1928
+ | Name | Type | Description |
1929
+ | :------ | :------ | :------ |
1930
+ | `from` | `string` | string representation of Algorand address of sender |
1931
+ | `note` | `Uint8Array` | uint8array of arbitrary data for sender to store |
1932
+ | `total` | `number` \| `bigint` | integer total supply of the asset |
1933
+ | `decimals` | `number` | integer number of decimals for asset unit calculation |
1934
+ | `defaultFrozen` | `boolean` | boolean whether asset accounts should default to being frozen |
1935
+ | `manager` | `string` | string representation of Algorand address in charge of reserve, freeze, clawback, destruction, etc |
1936
+ | `reserve` | `string` | string representation of Algorand address representing asset reserve |
1937
+ | `freeze` | `string` | string representation of Algorand address with power to freeze/unfreeze asset holdings |
1938
+ | `clawback` | `string` | string representation of Algorand address with power to revoke asset holdings |
1939
+ | `unitName` | `string` | string units name for this asset |
1940
+ | `assetName` | `string` | string name for this asset |
1941
+ | `assetURL` | `string` | string URL relating to this asset |
1942
+ | `assetMetadataHash` | `string` \| `Uint8Array` | Uint8Array or UTF-8 string representation of a hash commitment with respect to the asset. Must be exactly 32 bytes long. |
1943
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
1944
+ | `rekeyTo?` | `string` | rekeyTo address, optional |
1945
+
1946
+ #### Returns
1947
+
1948
+ [`Transaction`](classes/Transaction.md)
1949
+
1950
+ **`Deprecated`**
1951
+
1952
+ This function will be removed in v3 in favor of [makeAssetCreateTxnWithSuggestedParamsFromObject](modules.md#makeassetcreatetxnwithsuggestedparamsfromobject)
1953
+
1954
+ #### Defined in
1955
+
1956
+ makeTxn.ts:255
1957
+
1958
+ ___
1959
+
1960
+ ### makeAssetCreateTxnWithSuggestedParamsFromObject
1961
+
1962
+ ▸ **makeAssetCreateTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
1963
+
1964
+ #### Parameters
1965
+
1966
+ | Name | Type |
1967
+ | :------ | :------ |
1968
+ | `o` | `Object` |
1969
+ | `o.assetMetadataHash` | `string` \| `Uint8Array` |
1970
+ | `o.assetName` | `string` |
1971
+ | `o.assetURL` | `string` |
1972
+ | `o.clawback` | `string` |
1973
+ | `o.decimals` | `number` |
1974
+ | `o.defaultFrozen` | `boolean` |
1975
+ | `o.freeze` | `string` |
1976
+ | `o.from` | `string` |
1977
+ | `o.manager` | `string` |
1978
+ | `o.note` | `Uint8Array` |
1979
+ | `o.rekeyTo` | `string` |
1980
+ | `o.reserve` | `string` |
1981
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
1982
+ | `o.total` | `number` \| `bigint` |
1983
+ | `o.unitName` | `string` |
1984
+
1985
+ #### Returns
1986
+
1987
+ [`Transaction`](classes/Transaction.md)
1988
+
1989
+ #### Defined in
1990
+
1991
+ makeTxn.ts:294
1992
+
1993
+ ___
1994
+
1995
+ ### makeAssetDestroyTxnWithSuggestedParams
1996
+
1997
+ ▸ **makeAssetDestroyTxnWithSuggestedParams**(`from`, `note`, `assetIndex`, `suggestedParams`, `rekeyTo?`): [`Transaction`](classes/Transaction.md)
1998
+
1999
+ makeAssetDestroyTxnWithSuggestedParams will allow the asset's manager to remove this asset from the ledger, so long
2000
+ as all outstanding assets are held by the creator.
2001
+
2002
+ #### Parameters
2003
+
2004
+ | Name | Type | Description |
2005
+ | :------ | :------ | :------ |
2006
+ | `from` | `string` | string representation of Algorand address of sender |
2007
+ | `note` | `Uint8Array` | uint8array of arbitrary data for sender to store |
2008
+ | `assetIndex` | `number` | int asset index uniquely specifying the asset |
2009
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
2010
+ | `rekeyTo?` | `string` | rekeyTo address, optional |
2011
+
2012
+ #### Returns
2013
+
2014
+ [`Transaction`](classes/Transaction.md)
2015
+
2016
+ **`Deprecated`**
2017
+
2018
+ This function will be removed in v3 in favor of [makeAssetDestroyTxnWithSuggestedParamsFromObject](modules.md#makeassetdestroytxnwithsuggestedparamsfromobject)
2019
+
2020
+ #### Defined in
2021
+
2022
+ makeTxn.ts:470
2023
+
2024
+ ___
2025
+
2026
+ ### makeAssetDestroyTxnWithSuggestedParamsFromObject
2027
+
2028
+ ▸ **makeAssetDestroyTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
2029
+
2030
+ #### Parameters
2031
+
2032
+ | Name | Type |
2033
+ | :------ | :------ |
2034
+ | `o` | `Object` |
2035
+ | `o.assetIndex` | `number` |
2036
+ | `o.from` | `string` |
2037
+ | `o.note` | `Uint8Array` |
2038
+ | `o.rekeyTo` | `string` |
2039
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
2040
+
2041
+ #### Returns
2042
+
2043
+ [`Transaction`](classes/Transaction.md)
2044
+
2045
+ #### Defined in
2046
+
2047
+ makeTxn.ts:489
2048
+
2049
+ ___
2050
+
2051
+ ### makeAssetFreezeTxnWithSuggestedParams
2052
+
2053
+ ▸ **makeAssetFreezeTxnWithSuggestedParams**(`from`, `note`, `assetIndex`, `freezeTarget`, `freezeState`, `suggestedParams`, `rekeyTo?`): [`Transaction`](classes/Transaction.md)
2054
+
2055
+ makeAssetFreezeTxnWithSuggestedParams will allow the asset's freeze manager to freeze or un-freeze an account,
2056
+ blocking or allowing asset transfers to and from the targeted account.
2057
+
2058
+ #### Parameters
2059
+
2060
+ | Name | Type | Description |
2061
+ | :------ | :------ | :------ |
2062
+ | `from` | `string` | string representation of Algorand address of sender |
2063
+ | `note` | `Uint8Array` | uint8array of arbitrary data for sender to store |
2064
+ | `assetIndex` | `number` | int asset index uniquely specifying the asset |
2065
+ | `freezeTarget` | `string` | string representation of Algorand address being frozen or unfrozen |
2066
+ | `freezeState` | `boolean` | true if freezeTarget should be frozen, false if freezeTarget should be allowed to transact |
2067
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
2068
+ | `rekeyTo?` | `string` | rekeyTo address, optional |
2069
+
2070
+ #### Returns
2071
+
2072
+ [`Transaction`](classes/Transaction.md)
2073
+
2074
+ **`Deprecated`**
2075
+
2076
+ This function will be removed in v3 in favor of [makeAssetFreezeTxnWithSuggestedParamsFromObject](modules.md#makeassetfreezetxnwithsuggestedparamsfromobject)
2077
+
2078
+ #### Defined in
2079
+
2080
+ makeTxn.ts:530
2081
+
2082
+ ___
2083
+
2084
+ ### makeAssetFreezeTxnWithSuggestedParamsFromObject
2085
+
2086
+ ▸ **makeAssetFreezeTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
2087
+
2088
+ #### Parameters
2089
+
2090
+ | Name | Type |
2091
+ | :------ | :------ |
2092
+ | `o` | `Object` |
2093
+ | `o.assetIndex` | `number` |
2094
+ | `o.freezeState` | `boolean` |
2095
+ | `o.freezeTarget` | `string` |
2096
+ | `o.from` | `string` |
2097
+ | `o.note` | `Uint8Array` |
2098
+ | `o.rekeyTo` | `string` |
2099
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
2100
+
2101
+ #### Returns
2102
+
2103
+ [`Transaction`](classes/Transaction.md)
2104
+
2105
+ #### Defined in
2106
+
2107
+ makeTxn.ts:553
2108
+
2109
+ ___
2110
+
2111
+ ### makeAssetTransferTxnWithSuggestedParams
2112
+
2113
+ ▸ **makeAssetTransferTxnWithSuggestedParams**(`from`, `to`, `closeRemainderTo`, `revocationTarget`, `amount`, `note`, `assetIndex`, `suggestedParams`, `rekeyTo?`): [`Transaction`](classes/Transaction.md)
2114
+
2115
+ makeAssetTransferTxnWithSuggestedParams allows for the creation of an asset transfer transaction.
2116
+ Special case: to begin accepting assets, set amount=0 and from=to.
2117
+
2118
+ #### Parameters
2119
+
2120
+ | Name | Type | Description |
2121
+ | :------ | :------ | :------ |
2122
+ | `from` | `string` | string representation of Algorand address of sender |
2123
+ | `to` | `string` | string representation of Algorand address of asset recipient |
2124
+ | `closeRemainderTo` | `string` | optional - string representation of Algorand address - if provided, send all remaining assets after transfer to the "closeRemainderTo" address and close "from"'s asset holdings |
2125
+ | `revocationTarget` | `string` | optional - string representation of Algorand address - if provided, and if "from" is the asset's revocation manager, then deduct from "revocationTarget" rather than "from" |
2126
+ | `amount` | `number` \| `bigint` | integer amount of assets to send |
2127
+ | `note` | `Uint8Array` | uint8array of arbitrary data for sender to store |
2128
+ | `assetIndex` | `number` | int asset index uniquely specifying the asset |
2129
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE * flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
2130
+ | `rekeyTo?` | `string` | rekeyTo address, optional |
2131
+
2132
+ #### Returns
2133
+
2134
+ [`Transaction`](classes/Transaction.md)
2135
+
2136
+ **`Deprecated`**
2137
+
2138
+ This function will be removed in v3 in favor of [makeAssetTransferTxnWithSuggestedParamsFromObject](modules.md#makeassettransfertxnwithsuggestedparamsfromobject)
2139
+
2140
+ #### Defined in
2141
+
2142
+ makeTxn.ts:610
2143
+
2144
+ ___
2145
+
2146
+ ### makeAssetTransferTxnWithSuggestedParamsFromObject
2147
+
2148
+ ▸ **makeAssetTransferTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
2149
+
2150
+ #### Parameters
2151
+
2152
+ | Name | Type |
2153
+ | :------ | :------ |
2154
+ | `o` | `Object` |
2155
+ | `o.amount` | `number` \| `bigint` |
2156
+ | `o.assetIndex` | `number` |
2157
+ | `o.closeRemainderTo` | `string` |
2158
+ | `o.from` | `string` |
2159
+ | `o.note` | `Uint8Array` |
2160
+ | `o.rekeyTo` | `string` |
2161
+ | `o.revocationTarget` | `string` |
2162
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
2163
+ | `o.to` | `string` |
2164
+
2165
+ #### Returns
2166
+
2167
+ [`Transaction`](classes/Transaction.md)
2168
+
2169
+ #### Defined in
2170
+
2171
+ makeTxn.ts:637
2172
+
2173
+ ___
2174
+
2175
+ ### makeBasicAccountTransactionSigner
2176
+
2177
+ ▸ **makeBasicAccountTransactionSigner**(`account`): [`TransactionSigner`](modules.md#transactionsigner)
2178
+
2179
+ Create a TransactionSigner that can sign transactions for the provided basic Account.
2180
+
2181
+ #### Parameters
2182
+
2183
+ | Name | Type |
2184
+ | :------ | :------ |
2185
+ | `account` | [`Account`](interfaces/Account.md) |
2186
+
2187
+ #### Returns
2188
+
2189
+ [`TransactionSigner`](modules.md#transactionsigner)
2190
+
2191
+ #### Defined in
2192
+
2193
+ signer.ts:23
2194
+
2195
+ ___
2196
+
2197
+ ### makeEmptyTransactionSigner
2198
+
2199
+ ▸ **makeEmptyTransactionSigner**(): [`TransactionSigner`](modules.md#transactionsigner)
2200
+
2201
+ Create a makeEmptyTransactionSigner that does not specify any signer or
2202
+ signing capabilities. This should only be used to simulate transactions.
2203
+
2204
+ #### Returns
2205
+
2206
+ [`TransactionSigner`](modules.md#transactionsigner)
2207
+
2208
+ #### Defined in
2209
+
2210
+ signer.ts:91
2211
+
2212
+ ___
2213
+
2214
+ ### makeKeyRegistrationTxnWithSuggestedParams
2215
+
2216
+ ▸ **makeKeyRegistrationTxnWithSuggestedParams**(`from`, `note`, `voteKey`, `selectionKey`, `voteFirst`, `voteLast`, `voteKeyDilution`, `suggestedParams`, `rekeyTo?`, `nonParticipation?`, `stateProofKey?`): [`Transaction`](classes/Transaction.md)
2217
+
2218
+ makeKeyRegistrationTxnWithSuggestedParams takes key registration arguments and returns a Transaction object for
2219
+ that key registration operation
2220
+
2221
+ #### Parameters
2222
+
2223
+ | Name | Type | Description |
2224
+ | :------ | :------ | :------ |
2225
+ | `from` | `string` | string representation of Algorand address of sender |
2226
+ | `note` | `Uint8Array` | uint8array of arbitrary data for sender to store |
2227
+ | `voteKey` | `string` \| `Uint8Array` | voting key. for key deregistration, leave undefined |
2228
+ | `selectionKey` | `string` \| `Uint8Array` | selection key. for key deregistration, leave undefined |
2229
+ | `voteFirst` | `number` | first round on which voteKey is valid |
2230
+ | `voteLast` | `number` | last round on which voteKey is valid |
2231
+ | `voteKeyDilution` | `number` | integer |
2232
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
2233
+ | `rekeyTo?` | `string` | rekeyTo address, optional |
2234
+ | `nonParticipation?` | ``false`` | configure whether the address wants to stop participating. If true, voteKey, selectionKey, voteFirst, voteLast, and voteKeyDilution must be undefined. |
2235
+ | `stateProofKey?` | `string` \| `Uint8Array` | state proof key. for key deregistration, leave undefined |
2236
+
2237
+ #### Returns
2238
+
2239
+ [`Transaction`](classes/Transaction.md)
2240
+
2241
+ **`Deprecated`**
2242
+
2243
+ This function will be removed in v3 in favor of [makeKeyRegistrationTxnWithSuggestedParamsFromObject](modules.md#makekeyregistrationtxnwithsuggestedparamsfromobject)
2244
+
2245
+ #### Defined in
2246
+
2247
+ makeTxn.ts:119
2248
+
2249
+ ▸ **makeKeyRegistrationTxnWithSuggestedParams**(`from`, `note`, `voteKey`, `selectionKey`, `voteFirst`, `voteLast`, `voteKeyDilution`, `suggestedParams`, `rekeyTo?`, `nonParticipation?`, `stateProofKey?`): [`Transaction`](classes/Transaction.md)
2250
+
2251
+ #### Parameters
2252
+
2253
+ | Name | Type |
2254
+ | :------ | :------ |
2255
+ | `from` | `string` |
2256
+ | `note` | `Uint8Array` |
2257
+ | `voteKey` | `undefined` |
2258
+ | `selectionKey` | `undefined` |
2259
+ | `voteFirst` | `undefined` |
2260
+ | `voteLast` | `undefined` |
2261
+ | `voteKeyDilution` | `undefined` |
2262
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
2263
+ | `rekeyTo?` | `string` |
2264
+ | `nonParticipation?` | `boolean` |
2265
+ | `stateProofKey?` | `undefined` |
2266
+
2267
+ #### Returns
2268
+
2269
+ [`Transaction`](classes/Transaction.md)
2270
+
2271
+ #### Defined in
2272
+
2273
+ makeTxn.ts:132
2274
+
2275
+ ___
2276
+
2277
+ ### makeKeyRegistrationTxnWithSuggestedParamsFromObject
2278
+
2279
+ ▸ **makeKeyRegistrationTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
2280
+
2281
+ #### Parameters
2282
+
2283
+ | Name | Type |
2284
+ | :------ | :------ |
2285
+ | `o` | `Object` |
2286
+ | `o.from` | `string` |
2287
+ | `o.nonParticipation?` | ``false`` |
2288
+ | `o.note` | `Uint8Array` |
2289
+ | `o.rekeyTo` | `string` |
2290
+ | `o.selectionKey` | `string` \| `Uint8Array` |
2291
+ | `o.stateProofKey` | `string` \| `Uint8Array` |
2292
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
2293
+ | `o.voteFirst` | `number` |
2294
+ | `o.voteKey` | `string` \| `Uint8Array` |
2295
+ | `o.voteKeyDilution` | `number` |
2296
+ | `o.voteLast` | `number` |
2297
+
2298
+ #### Returns
2299
+
2300
+ [`Transaction`](classes/Transaction.md)
2301
+
2302
+ #### Defined in
2303
+
2304
+ makeTxn.ts:176
2305
+
2306
+ ▸ **makeKeyRegistrationTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
2307
+
2308
+ #### Parameters
2309
+
2310
+ | Name | Type |
2311
+ | :------ | :------ |
2312
+ | `o` | `Object` |
2313
+ | `o.from` | `string` |
2314
+ | `o.nonParticipation` | `boolean` |
2315
+ | `o.note` | `Uint8Array` |
2316
+ | `o.rekeyTo` | `string` |
2317
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
2318
+
2319
+ #### Returns
2320
+
2321
+ [`Transaction`](classes/Transaction.md)
2322
+
2323
+ #### Defined in
2324
+
2325
+ makeTxn.ts:199
2326
+
2327
+ ___
2328
+
2329
+ ### makeLogicSigAccountTransactionSigner
2330
+
2331
+ ▸ **makeLogicSigAccountTransactionSigner**(`account`): [`TransactionSigner`](modules.md#transactionsigner)
2332
+
2333
+ Create a TransactionSigner that can sign transactions for the provided LogicSigAccount.
2334
+
2335
+ #### Parameters
2336
+
2337
+ | Name | Type |
2338
+ | :------ | :------ |
2339
+ | `account` | [`LogicSigAccount`](classes/LogicSigAccount.md) |
2340
+
2341
+ #### Returns
2342
+
2343
+ [`TransactionSigner`](modules.md#transactionsigner)
2344
+
2345
+ #### Defined in
2346
+
2347
+ signer.ts:40
2348
+
2349
+ ___
2350
+
2351
+ ### makeMultiSigAccountTransactionSigner
2352
+
2353
+ ▸ **makeMultiSigAccountTransactionSigner**(`msig`, `sks`): [`TransactionSigner`](modules.md#transactionsigner)
2354
+
2355
+ Create a TransactionSigner that can sign transactions for the provided Multisig account.
2356
+
2357
+ #### Parameters
2358
+
2359
+ | Name | Type | Description |
2360
+ | :------ | :------ | :------ |
2361
+ | `msig` | [`MultisigMetadata`](interfaces/MultisigMetadata.md) | The Multisig account metadata |
2362
+ | `sks` | `Uint8Array`[] | An array of private keys belonging to the msig which should sign the transactions. |
2363
+
2364
+ #### Returns
2365
+
2366
+ [`TransactionSigner`](modules.md#transactionsigner)
2367
+
2368
+ #### Defined in
2369
+
2370
+ signer.ts:60
2371
+
2372
+ ___
2373
+
2374
+ ### makePaymentTxnWithSuggestedParams
2375
+
2376
+ ▸ **makePaymentTxnWithSuggestedParams**(`from`, `to`, `amount`, `closeRemainderTo`, `note`, `suggestedParams`, `rekeyTo?`): [`Transaction`](classes/Transaction.md)
2377
+
2378
+ makePaymentTxnWithSuggestedParams takes payment arguments and returns a Transaction object
2379
+
2380
+ #### Parameters
2381
+
2382
+ | Name | Type | Description |
2383
+ | :------ | :------ | :------ |
2384
+ | `from` | `string` | string representation of Algorand address of sender |
2385
+ | `to` | `string` | string representation of Algorand address of recipient |
2386
+ | `amount` | `number` \| `bigint` | integer amount to send, in microAlgos |
2387
+ | `closeRemainderTo` | `string` | optionally close out remaining account balance to this account, represented as string rep of Algorand address |
2388
+ | `note` | `Uint8Array` | uint8array of arbitrary data for sender to store |
2389
+ | `suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) | a dict holding common-to-all-txns args: fee - integer fee per byte, in microAlgos. for a flat fee, set flatFee to true flatFee - bool optionally set this to true to specify fee as microalgos-per-txn If true, txn fee may fall below the ALGORAND_MIN_TX_FEE firstRound - integer first protocol round on which this txn is valid lastRound - integer last protocol round on which this txn is valid genesisHash - string specifies hash genesis block of network in use genesisID - string specifies genesis ID of network in use |
2390
+ | `rekeyTo?` | `string` | rekeyTo address, optional |
2391
+
2392
+ #### Returns
2393
+
2394
+ [`Transaction`](classes/Transaction.md)
2395
+
2396
+ **`Deprecated`**
2397
+
2398
+ This function will be removed in v3 in favor of [makePaymentTxnWithSuggestedParamsFromObject](modules.md#makepaymenttxnwithsuggestedparamsfromobject)
2399
+
2400
+ #### Defined in
2401
+
2402
+ makeTxn.ts:45
2403
+
2404
+ ___
2405
+
2406
+ ### makePaymentTxnWithSuggestedParamsFromObject
2407
+
2408
+ ▸ **makePaymentTxnWithSuggestedParamsFromObject**(`o`): [`Transaction`](classes/Transaction.md)
2409
+
2410
+ #### Parameters
2411
+
2412
+ | Name | Type |
2413
+ | :------ | :------ |
2414
+ | `o` | `Object` |
2415
+ | `o.amount` | `number` \| `bigint` |
2416
+ | `o.closeRemainderTo` | `string` |
2417
+ | `o.from` | `string` |
2418
+ | `o.note` | `Uint8Array` |
2419
+ | `o.rekeyTo` | `string` |
2420
+ | `o.suggestedParams` | [`SuggestedParams`](interfaces/SuggestedParams.md) |
2421
+ | `o.to` | `string` |
2422
+
2423
+ #### Returns
2424
+
2425
+ [`Transaction`](classes/Transaction.md)
2426
+
2427
+ #### Defined in
2428
+
2429
+ makeTxn.ts:68
2430
+
2431
+ ___
2432
+
2433
+ ### masterDerivationKeyToMnemonic
2434
+
2435
+ ▸ **masterDerivationKeyToMnemonic**(`mdk`): `string`
2436
+
2437
+ masterDerivationKeyToMnemonic takes a master derivation key and returns the corresponding mnemonic.
2438
+
2439
+ #### Parameters
2440
+
2441
+ | Name | Type | Description |
2442
+ | :------ | :------ | :------ |
2443
+ | `mdk` | `Uint8Array` | Uint8Array |
2444
+
2445
+ #### Returns
2446
+
2447
+ `string`
2448
+
2449
+ string mnemonic
2450
+
2451
+ #### Defined in
2452
+
2453
+ mnemonic/mnemonic.ts:179
2454
+
2455
+ ___
2456
+
2457
+ ### mergeMultisigTransactions
2458
+
2459
+ ▸ **mergeMultisigTransactions**(`multisigTxnBlobs`): `Uint8Array`
2460
+
2461
+ mergeMultisigTransactions takes a list of multisig transaction blobs, and merges them.
2462
+
2463
+ #### Parameters
2464
+
2465
+ | Name | Type | Description |
2466
+ | :------ | :------ | :------ |
2467
+ | `multisigTxnBlobs` | `Uint8Array`[] | a list of blobs representing encoded multisig txns |
2468
+
2469
+ #### Returns
2470
+
2471
+ `Uint8Array`
2472
+
2473
+ typed array msg-pack encoded multisig txn
2474
+
2475
+ #### Defined in
2476
+
2477
+ multisig.ts:230
2478
+
2479
+ ___
2480
+
2481
+ ### microalgosToAlgos
2482
+
2483
+ ▸ **microalgosToAlgos**(`microalgos`): `number`
2484
+
2485
+ microalgosToAlgos converts microalgos to algos
2486
+
2487
+ #### Parameters
2488
+
2489
+ | Name | Type | Description |
2490
+ | :------ | :------ | :------ |
2491
+ | `microalgos` | `number` | number |
2492
+
2493
+ #### Returns
2494
+
2495
+ `number`
2496
+
2497
+ number
2498
+
2499
+ #### Defined in
2500
+
2501
+ convert.ts:10
2502
+
2503
+ ___
2504
+
2505
+ ### mnemonicFromSeed
2506
+
2507
+ ▸ **mnemonicFromSeed**(`seed`): `string`
2508
+
2509
+ mnemonicFromSeed converts a 32-byte key into a 25 word mnemonic. The generated mnemonic includes a checksum.
2510
+ Each word in the mnemonic represents 11 bits of data, and the last 11 bits are reserved for the checksum.
2511
+
2512
+ #### Parameters
2513
+
2514
+ | Name | Type | Description |
2515
+ | :------ | :------ | :------ |
2516
+ | `seed` | `Uint8Array` | 32 bytes long seed |
2517
+
2518
+ #### Returns
2519
+
2520
+ `string`
2521
+
2522
+ 25 words mnemonic
2523
+
2524
+ #### Defined in
2525
+
2526
+ mnemonic/mnemonic.ts:54
2527
+
2528
+ ___
2529
+
2530
+ ### mnemonicToMasterDerivationKey
2531
+
2532
+ ▸ **mnemonicToMasterDerivationKey**(`mn`): `Uint8Array`
2533
+
2534
+ mnemonicToMasterDerivationKey takes a mnemonic string and returns the corresponding master derivation key.
2535
+
2536
+ #### Parameters
2537
+
2538
+ | Name | Type | Description |
2539
+ | :------ | :------ | :------ |
2540
+ | `mn` | `string` | 25 words Algorand mnemonic |
2541
+
2542
+ #### Returns
2543
+
2544
+ `Uint8Array`
2545
+
2546
+ Uint8Array
2547
+
2548
+ **`Throws`**
2549
+
2550
+ error if fails to decode the mnemonic
2551
+
2552
+ #### Defined in
2553
+
2554
+ mnemonic/mnemonic.ts:170
2555
+
2556
+ ___
2557
+
2558
+ ### mnemonicToSecretKey
2559
+
2560
+ ▸ **mnemonicToSecretKey**(`mn`): [`Account`](interfaces/Account.md)
2561
+
2562
+ mnemonicToSecretKey takes a mnemonic string and returns the corresponding Algorand address and its secret key.
2563
+
2564
+ #### Parameters
2565
+
2566
+ | Name | Type | Description |
2567
+ | :------ | :------ | :------ |
2568
+ | `mn` | `string` | 25 words Algorand mnemonic |
2569
+
2570
+ #### Returns
2571
+
2572
+ [`Account`](interfaces/Account.md)
2573
+
2574
+ **`Throws`**
2575
+
2576
+ error if fails to decode the mnemonic
2577
+
2578
+ #### Defined in
2579
+
2580
+ mnemonic/mnemonic.ts:146
2581
+
2582
+ ___
2583
+
2584
+ ### multisigAddress
2585
+
2586
+ ▸ **multisigAddress**(`«destructured»`): `string`
2587
+
2588
+ multisigAddress takes multisig metadata (preimage) and returns the corresponding human readable Algorand address.
2589
+
2590
+ #### Parameters
2591
+
2592
+ | Name | Type |
2593
+ | :------ | :------ |
2594
+ | `«destructured»` | [`MultisigMetadata`](interfaces/MultisigMetadata.md) |
2595
+
2596
+ #### Returns
2597
+
2598
+ `string`
2599
+
2600
+ #### Defined in
2601
+
2602
+ multisig.ts:490
2603
+
2604
+ ___
2605
+
2606
+ ### secretKeyToMnemonic
2607
+
2608
+ ▸ **secretKeyToMnemonic**(`sk`): `string`
2609
+
2610
+ secretKeyToMnemonic takes an Algorand secret key and returns the corresponding mnemonic.
2611
+
2612
+ #### Parameters
2613
+
2614
+ | Name | Type | Description |
2615
+ | :------ | :------ | :------ |
2616
+ | `sk` | `Uint8Array` | Algorand secret key |
2617
+
2618
+ #### Returns
2619
+
2620
+ `string`
2621
+
2622
+ Secret key's associated mnemonic
2623
+
2624
+ #### Defined in
2625
+
2626
+ mnemonic/mnemonic.ts:158
2627
+
2628
+ ___
2629
+
2630
+ ### seedFromMnemonic
2631
+
2632
+ ▸ **seedFromMnemonic**(`mnemonic`): `Uint8Array`
2633
+
2634
+ seedFromMnemonic converts a mnemonic generated using this library into the source key used to create it.
2635
+ It returns an error if the passed mnemonic has an incorrect checksum, if the number of words is unexpected, or if one
2636
+ of the passed words is not found in the words list.
2637
+
2638
+ #### Parameters
2639
+
2640
+ | Name | Type | Description |
2641
+ | :------ | :------ | :------ |
2642
+ | `mnemonic` | `string` | 25 words mnemonic |
2643
+
2644
+ #### Returns
2645
+
2646
+ `Uint8Array`
2647
+
2648
+ 32 bytes long seed
2649
+
2650
+ #### Defined in
2651
+
2652
+ mnemonic/mnemonic.ts:100
2653
+
2654
+ ___
2655
+
2656
+ ### signBid
2657
+
2658
+ ▸ **signBid**(`bid`, `sk`): `Uint8Array`
2659
+
2660
+ signBid takes an object with the following fields: bidder key, bid amount, max price, bid ID, auctionKey, auction ID,
2661
+ and a secret key and returns a signed blob to be inserted into a transaction Algorand note field.
2662
+
2663
+ #### Parameters
2664
+
2665
+ | Name | Type | Description |
2666
+ | :------ | :------ | :------ |
2667
+ | `bid` | `BidOptions` | Algorand Bid |
2668
+ | `sk` | `Uint8Array` | Algorand secret key |
2669
+
2670
+ #### Returns
2671
+
2672
+ `Uint8Array`
2673
+
2674
+ Uint8Array binary signed bid
2675
+
2676
+ #### Defined in
2677
+
2678
+ main.ts:56
2679
+
2680
+ ___
2681
+
2682
+ ### signBytes
2683
+
2684
+ ▸ **signBytes**(`bytes`, `sk`): `Uint8Array`
2685
+
2686
+ signBytes takes arbitrary bytes and a secret key, prepends the bytes with "MX" for domain separation, signs the bytes
2687
+ with the private key, and returns the signature.
2688
+
2689
+ #### Parameters
2690
+
2691
+ | Name | Type | Description |
2692
+ | :------ | :------ | :------ |
2693
+ | `bytes` | `Uint8Array` | Uint8array |
2694
+ | `sk` | `Uint8Array` | Algorand secret key |
2695
+
2696
+ #### Returns
2697
+
2698
+ `Uint8Array`
2699
+
2700
+ binary signature
2701
+
2702
+ #### Defined in
2703
+
2704
+ main.ts:68
2705
+
2706
+ ___
2707
+
2708
+ ### signLogicSigTransaction
2709
+
2710
+ ▸ **signLogicSigTransaction**(`txn`, `lsigObject`): `Object`
2711
+
2712
+ signLogicSigTransaction takes a transaction and a LogicSig object and returns
2713
+ a signed transaction.
2714
+
2715
+ #### Parameters
2716
+
2717
+ | Name | Type | Description |
2718
+ | :------ | :------ | :------ |
2719
+ | `txn` | [`TransactionLike`](modules.md#transactionlike) | The transaction to sign. |
2720
+ | `lsigObject` | [`LogicSig`](classes/LogicSig.md) \| [`LogicSigAccount`](classes/LogicSigAccount.md) | The LogicSig object that will sign the transaction. |
2721
+
2722
+ #### Returns
2723
+
2724
+ `Object`
2725
+
2726
+ Object containing txID and blob representing signed transaction.
2727
+
2728
+ | Name | Type |
2729
+ | :------ | :------ |
2730
+ | `blob` | `Uint8Array` |
2731
+ | `txID` | `string` |
2732
+
2733
+ **`Throws`**
2734
+
2735
+ error on failure
2736
+
2737
+ #### Defined in
2738
+
2739
+ logicsig.ts:460
2740
+
2741
+ ___
2742
+
2743
+ ### signLogicSigTransactionObject
2744
+
2745
+ ▸ **signLogicSigTransactionObject**(`txn`, `lsigObject`): `Object`
2746
+
2747
+ signLogicSigTransactionObject takes a transaction and a LogicSig object and
2748
+ returns a signed transaction.
2749
+
2750
+ #### Parameters
2751
+
2752
+ | Name | Type | Description |
2753
+ | :------ | :------ | :------ |
2754
+ | `txn` | [`Transaction`](classes/Transaction.md) | The transaction to sign. |
2755
+ | `lsigObject` | [`LogicSig`](classes/LogicSig.md) \| [`LogicSigAccount`](classes/LogicSigAccount.md) | The LogicSig object that will sign the transaction. |
2756
+
2757
+ #### Returns
2758
+
2759
+ `Object`
2760
+
2761
+ Object containing txID and blob representing signed transaction.
2762
+
2763
+ | Name | Type |
2764
+ | :------ | :------ |
2765
+ | `blob` | `Uint8Array` |
2766
+ | `txID` | `string` |
2767
+
2768
+ #### Defined in
2769
+
2770
+ logicsig.ts:416
2771
+
2772
+ ___
2773
+
2774
+ ### signMultisigTransaction
2775
+
2776
+ ▸ **signMultisigTransaction**(`txn`, `«destructured»`, `sk`): `Object`
2777
+
2778
+ signMultisigTransaction takes a raw transaction (see signTransaction), a multisig preimage, a secret key, and returns
2779
+ a multisig transaction, which is a blob representing a transaction and multisignature account preimage. The returned
2780
+ multisig txn can accumulate additional signatures through mergeMultisigTransactions or appendSignMultisigTransaction.
2781
+
2782
+ #### Parameters
2783
+
2784
+ | Name | Type | Description |
2785
+ | :------ | :------ | :------ |
2786
+ | `txn` | [`TransactionLike`](modules.md#transactionlike) | object with either payment or key registration fields |
2787
+ | `«destructured»` | [`MultisigMetadata`](interfaces/MultisigMetadata.md) | - |
2788
+ | `sk` | `Uint8Array` | Algorand secret key. The corresponding pk should be in the pre image. |
2789
+
2790
+ #### Returns
2791
+
2792
+ `Object`
2793
+
2794
+ object containing txID, and blob of partially signed multisig transaction (with multisig preimage information)
2795
+ If the final calculated fee is lower than the protocol minimum fee, the fee will be increased to match the minimum.
2796
+
2797
+ | Name | Type |
2798
+ | :------ | :------ |
2799
+ | `blob` | `Uint8Array` |
2800
+ | `txID` | `string` |
2801
+
2802
+ #### Defined in
2803
+
2804
+ multisig.ts:380
2805
+
2806
+ ___
2807
+
2808
+ ### signTransaction
2809
+
2810
+ ▸ **signTransaction**(`txn`, `sk`): `Object`
2811
+
2812
+ signTransaction takes an object with either payment or key registration fields and
2813
+ a secret key and returns a signed blob.
2814
+
2815
+ Payment transaction fields: from, to, amount, fee, firstRound, lastRound, genesisHash,
2816
+ note(optional), GenesisID(optional), closeRemainderTo(optional)
2817
+
2818
+ Key registration fields: fee, firstRound, lastRound, voteKey, selectionKey, voteFirst,
2819
+ voteLast, voteKeyDilution, genesisHash, note(optional), GenesisID(optional)
2820
+
2821
+ If flatFee is not set and the final calculated fee is lower than the protocol minimum fee, the fee will be increased to match the minimum.
2822
+
2823
+ #### Parameters
2824
+
2825
+ | Name | Type | Description |
2826
+ | :------ | :------ | :------ |
2827
+ | `txn` | [`TransactionLike`](modules.md#transactionlike) | object with either payment or key registration fields |
2828
+ | `sk` | `Uint8Array` | Algorand Secret Key |
2829
+
2830
+ #### Returns
2831
+
2832
+ `Object`
2833
+
2834
+ object contains the binary signed transaction and its txID
2835
+
2836
+ | Name | Type |
2837
+ | :------ | :------ |
2838
+ | `blob` | `Uint8Array` |
2839
+ | `txID` | `string` |
2840
+
2841
+ #### Defined in
2842
+
2843
+ main.ts:31
2844
+
2845
+ ___
2846
+
2847
+ ### tealSign
2848
+
2849
+ ▸ **tealSign**(`sk`, `data`, `programHash`): `Uint8Array`
2850
+
2851
+ tealSign creates a signature compatible with ed25519verify opcode from program hash
2852
+
2853
+ #### Parameters
2854
+
2855
+ | Name | Type | Description |
2856
+ | :------ | :------ | :------ |
2857
+ | `sk` | `Uint8Array` | uint8array with secret key |
2858
+ | `data` | `Uint8Array` \| `Buffer` | buffer with data to sign |
2859
+ | `programHash` | `string` | string representation of teal program hash (= contract address for LogicSigs) |
2860
+
2861
+ #### Returns
2862
+
2863
+ `Uint8Array`
2864
+
2865
+ #### Defined in
2866
+
2867
+ logicsig.ts:484
2868
+
2869
+ ___
2870
+
2871
+ ### tealSignFromProgram
2872
+
2873
+ ▸ **tealSignFromProgram**(`sk`, `data`, `program`): `Uint8Array`
2874
+
2875
+ tealSignFromProgram creates a signature compatible with ed25519verify opcode from raw program bytes
2876
+
2877
+ #### Parameters
2878
+
2879
+ | Name | Type | Description |
2880
+ | :------ | :------ | :------ |
2881
+ | `sk` | `Uint8Array` | uint8array with secret key |
2882
+ | `data` | `Uint8Array` \| `Buffer` | buffer with data to sign |
2883
+ | `program` | `Uint8Array` | buffer with teal program |
2884
+
2885
+ #### Returns
2886
+
2887
+ `Uint8Array`
2888
+
2889
+ #### Defined in
2890
+
2891
+ logicsig.ts:528
2892
+
2893
+ ___
2894
+
2895
+ ### verifyBytes
2896
+
2897
+ ▸ **verifyBytes**(`bytes`, `signature`, `addr`): `boolean`
2898
+
2899
+ verifyBytes takes array of bytes, an address, and a signature and verifies if the signature is correct for the public
2900
+ key and the bytes (the bytes should have been signed with "MX" prepended for domain separation).
2901
+
2902
+ #### Parameters
2903
+
2904
+ | Name | Type | Description |
2905
+ | :------ | :------ | :------ |
2906
+ | `bytes` | `Uint8Array` | Uint8Array |
2907
+ | `signature` | `Uint8Array` | binary signature |
2908
+ | `addr` | `string` | string address |
2909
+
2910
+ #### Returns
2911
+
2912
+ `boolean`
2913
+
2914
+ bool
2915
+
2916
+ #### Defined in
2917
+
2918
+ main.ts:82
2919
+
2920
+ ___
2921
+
2922
+ ### verifyMultisig
2923
+
2924
+ ▸ **verifyMultisig**(`toBeVerified`, `msig`, `publicKey`): `boolean`
2925
+
2926
+ #### Parameters
2927
+
2928
+ | Name | Type |
2929
+ | :------ | :------ |
2930
+ | `toBeVerified` | `Uint8Array` |
2931
+ | `msig` | [`EncodedMultisig`](interfaces/EncodedMultisig.md) |
2932
+ | `publicKey` | `Uint8Array` |
2933
+
2934
+ #### Returns
2935
+
2936
+ `boolean`
2937
+
2938
+ #### Defined in
2939
+
2940
+ multisig.ts:317
2941
+
2942
+ ___
2943
+
2944
+ ### verifyTealSign
2945
+
2946
+ ▸ **verifyTealSign**(`data`, `programHash`, `sig`, `pk`): `boolean`
2947
+
2948
+ verifyTealSign verifies a signature as would the ed25519verify opcode
2949
+
2950
+ #### Parameters
2951
+
2952
+ | Name | Type | Description |
2953
+ | :------ | :------ | :------ |
2954
+ | `data` | `Uint8Array` \| `Buffer` | buffer with original signed data |
2955
+ | `programHash` | `string` | string representation of teal program hash (= contract address for LogicSigs) |
2956
+ | `sig` | `Uint8Array` | uint8array with the signature to verify (produced by tealSign/tealSignFromProgram) |
2957
+ | `pk` | `Uint8Array` | uint8array with public key to verify against |
2958
+
2959
+ #### Returns
2960
+
2961
+ `boolean`
2962
+
2963
+ #### Defined in
2964
+
2965
+ logicsig.ts:506
2966
+
2967
+ ___
2968
+
2969
+ ### waitForConfirmation
2970
+
2971
+ ▸ **waitForConfirmation**(`client`, `txid`, `waitRounds`): `Promise`\<`Record`\<`string`, `any`\>\>
2972
+
2973
+ Wait until a transaction has been confirmed or rejected by the network, or
2974
+ until 'waitRounds' number of rounds have passed.
2975
+
2976
+ #### Parameters
2977
+
2978
+ | Name | Type | Description |
2979
+ | :------ | :------ | :------ |
2980
+ | `client` | [`Algodv2`](classes/Algodv2.md) | An Algodv2 client |
2981
+ | `txid` | `string` | The ID of the transaction to wait for. |
2982
+ | `waitRounds` | `number` | The maximum number of rounds to wait for. |
2983
+
2984
+ #### Returns
2985
+
2986
+ `Promise`\<`Record`\<`string`, `any`\>\>
2987
+
2988
+ A promise that, upon success, will resolve to the output of the
2989
+ `pendingTransactionInformation` call for the confirmed transaction.
2990
+
2991
+ #### Defined in
2992
+
2993
+ wait.ts:12