This is page 76 of 93. Use http://codebase.md/goplausible/algorand-mcp?lines=true&page={x} to view the full context. # Directory Structure ``` ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── llms-install.md ├── llms.txt ├── package.json ├── packages │ ├── client │ │ ├── .env.example │ │ ├── package.json │ │ ├── README.md │ │ ├── src │ │ │ ├── env.ts │ │ │ ├── index.ts │ │ │ └── LocalWallet.ts │ │ └── tsconfig.json │ └── server │ ├── .env.example │ ├── API specs │ │ ├── algod_api.json │ │ ├── indexer_api.json │ │ ├── mcp.json │ │ ├── nfd_api.json │ │ ├── ultrade_api.json │ │ ├── vestige_api.json │ │ └── vestige_free_api.json │ ├── Dockerfile │ ├── jest.config.js │ ├── package.json │ ├── README.md │ ├── smithery.yaml │ ├── src │ │ ├── algorand-client.ts │ │ ├── env.ts │ │ ├── index.ts │ │ ├── resources │ │ │ ├── index.ts │ │ │ ├── knowledge │ │ │ │ ├── ARCs.txt │ │ │ │ ├── developers-algokit-architecture-decisions.txt │ │ │ │ ├── developers-algokit-cli.txt │ │ │ │ ├── developers-algokit-utils-python.txt │ │ │ │ ├── developers-algokit-utils-typescript.txt │ │ │ │ ├── developers-clis.txt │ │ │ │ ├── developers-details.txt │ │ │ │ ├── developers-liquid-auth.txt │ │ │ │ ├── developers-nodes.txt │ │ │ │ ├── developers-puya.txt │ │ │ │ ├── developers-python.txt │ │ │ │ ├── developers-sdks-js.txt │ │ │ │ ├── developers-sdks-python.txt │ │ │ │ ├── developers-tealscript.txt │ │ │ │ ├── developers.txt │ │ │ │ ├── index.ts │ │ │ │ ├── taxonomy │ │ │ │ │ ├── algokit-cli:README.md │ │ │ │ │ ├── algokit:cli:algokit.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2022-11-14_sandbox-approach.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2022-11-22_beaker-testing-strategy.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2023-01-11_beaker_productionisation_review.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2023-01-11_brew_install.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2023-01-12_smart-contract-deployment.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2023-06-06_frontend-templates.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2023-07-19_advanced_generate_command.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2024-01-13_native_binaries.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2024-01-23_init-wizard-v2.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2024-01-31_binary_distribution.md │ │ │ │ │ ├── algokit:cli:architecture-decisions:2024-03-06_local_dev_ui_packaging.md │ │ │ │ │ ├── algokit:cli:articles:output_stability.md │ │ │ │ │ ├── algokit:cli:cli:index.md │ │ │ │ │ ├── algokit:cli:features:compile.md │ │ │ │ │ ├── algokit:cli:features:completions.md │ │ │ │ │ ├── algokit:cli:features:config.md │ │ │ │ │ ├── algokit:cli:features:dispenser.md │ │ │ │ │ ├── algokit:cli:features:doctor.md │ │ │ │ │ ├── algokit:cli:features:explore.md │ │ │ │ │ ├── algokit:cli:features:generate.md │ │ │ │ │ ├── algokit:cli:features:goal.md │ │ │ │ │ ├── algokit:cli:features:init.md │ │ │ │ │ ├── algokit:cli:features:localnet.md │ │ │ │ │ ├── algokit:cli:features:project:bootstrap.md │ │ │ │ │ ├── algokit:cli:features:project:deploy.md │ │ │ │ │ ├── algokit:cli:features:project:link.md │ │ │ │ │ ├── algokit:cli:features:project:list.md │ │ │ │ │ ├── algokit:cli:features:project:run.md │ │ │ │ │ ├── algokit:cli:features:project.md │ │ │ │ │ ├── algokit:cli:features:tasks:analyze.md │ │ │ │ │ ├── algokit:cli:features:tasks:ipfs.md │ │ │ │ │ ├── algokit:cli:features:tasks:mint.md │ │ │ │ │ ├── algokit:cli:features:tasks:nfd.md │ │ │ │ │ ├── algokit:cli:features:tasks:opt.md │ │ │ │ │ ├── algokit:cli:features:tasks:send.md │ │ │ │ │ ├── algokit:cli:features:tasks:sign.md │ │ │ │ │ ├── algokit:cli:features:tasks:transfer.md │ │ │ │ │ ├── algokit:cli:features:tasks:vanity_address.md │ │ │ │ │ ├── algokit:cli:features:tasks:wallet.md │ │ │ │ │ ├── algokit:cli:features:tasks.md │ │ │ │ │ ├── algokit:cli:tutorials:algokit-template.md │ │ │ │ │ ├── algokit:cli:tutorials:intro.md │ │ │ │ │ ├── algokit:cli:tutorials:smart-contracts.md │ │ │ │ │ ├── algokit:docs:testnet_api.md │ │ │ │ │ ├── algokit:lora:README.md │ │ │ │ │ ├── algokit:README.md │ │ │ │ │ ├── algokit:utils:python:markdown:apidocs:algokit_utils:algokit_utils.md │ │ │ │ │ ├── algokit:utils:python:markdown:capabilities:account.md │ │ │ │ │ ├── algokit:utils:python:markdown:capabilities:app-client.md │ │ │ │ │ ├── algokit:utils:python:markdown:capabilities:app-deploy.md │ │ │ │ │ ├── algokit:utils:python:markdown:capabilities:client.md │ │ │ │ │ ├── algokit:utils:python:markdown:capabilities:debugger.md │ │ │ │ │ ├── algokit:utils:python:markdown:capabilities:dispenser-client.md │ │ │ │ │ ├── algokit:utils:python:markdown:capabilities:transfer.md │ │ │ │ │ ├── algokit:utils:python:markdown:index.md │ │ │ │ │ ├── algokit:utils:python:README.md │ │ │ │ │ ├── algokit:utils:python:source:capabilities:account.md │ │ │ │ │ ├── algokit:utils:python:source:capabilities:app-client.md │ │ │ │ │ ├── algokit:utils:python:source:capabilities:app-deploy.md │ │ │ │ │ ├── algokit:utils:python:source:capabilities:client.md │ │ │ │ │ ├── algokit:utils:python:source:capabilities:debugger.md │ │ │ │ │ ├── algokit:utils:python:source:capabilities:dispenser-client.md │ │ │ │ │ ├── algokit:utils:python:source:capabilities:transfer.md │ │ │ │ │ ├── algokit:utils:python:source:index.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:account.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:algorand-client.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:amount.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:app-client.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:app-deploy.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:app.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:asset.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:client.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:debugging.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:dispenser-client.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:event-emitter.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:indexer.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:testing.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:transaction-composer.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:transaction.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:transfer.md │ │ │ │ │ ├── algokit:utils:typescript:capabilities:typed-app-clients.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:testing.TestLogger.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:testing.TransactionLogger.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_account_manager.AccountManager.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_account.MultisigAccount.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_account.SigningAccount.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_algo_http_client_with_retry.AlgoHttpClientWithRetry.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_algorand_client_transaction_creator.AlgorandClientTransactionCreator.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_algorand_client_transaction_sender.AlgorandClientTransactionSender.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_algorand_client.AlgorandClient.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_amount.AlgoAmount.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_app_arc56.Arc56Method.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_app_client.AppClient.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_app_client.ApplicationClient.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_app_deployer.AppDeployer.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_app_factory.AppFactory.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_app_manager.AppManager.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_asset_manager.AssetManager.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_async_event_emitter.AsyncEventEmitter.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_client_manager.ClientManager.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_composer.TransactionComposer.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_config.UpdatableConfig.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_dispenser_client.TestNetDispenserApiClient.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_kmd_account_manager.KmdAccountManager.md │ │ │ │ │ ├── algokit:utils:typescript:code:classes:types_logic_error.LogicError.md │ │ │ │ │ ├── algokit:utils:typescript:code:enums:types_app.OnSchemaBreak.md │ │ │ │ │ ├── algokit:utils:typescript:code:enums:types_app.OnUpdate.md │ │ │ │ │ ├── algokit:utils:typescript:code:enums:types_indexer.AccountStatus.md │ │ │ │ │ ├── algokit:utils:typescript:code:enums:types_indexer.ApplicationOnComplete.md │ │ │ │ │ ├── algokit:utils:typescript:code:enums:types_indexer.SignatureType.md │ │ │ │ │ ├── algokit:utils:typescript:code:enums:types_lifecycle_events.EventType.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_account_manager.EnsureFundedResult.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_account.AccountConfig.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_account.TransactionSignerAccount.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_algorand_client_interface.AlgorandClientInterface.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_arc56.Arc56Contract.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_arc56.Event.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_arc56.Method.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_arc56.ProgramSourceInfo.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_arc56.StorageKey.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_arc56.StorageMap.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_arc56.StructField.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientCallABIArgs.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientCallCoreParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientCompilationParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientCompilationResult.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientDeployCallInterfaceParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientDeployCoreParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientDeployParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppClientParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.AppSourceMaps.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.FundAppAccountParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.ResolveAppById.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.ResolveAppByIdBase.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_client.SourceMapExport.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_deployer.AppLookup.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_deployer.AppMetadata.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_factory.AppFactoryParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_manager.AppInformation.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_manager.BoxReference.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_manager.BoxValueRequestParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_manager.BoxValuesRequestParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.AppSources.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.AppSpec.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.CallConfig.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.DeclaredSchemaValueSpec.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.Hint.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.ReservedSchemaValueSpec.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.Schema.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.SchemaSpec.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.StateSchemaSpec.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app_spec.Struct.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppCallParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppCallTransactionResultOfType.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppCompilationResult.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppDeploymentParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppDeployMetadata.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppLookup.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppMetadata.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppReference.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppState.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.AppStorageSchema.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.BoxName.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.BoxReference.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.BoxValueRequestParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.BoxValuesRequestParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.CompiledTeal.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.CoreAppCallArgs.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.CreateAppParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.RawAppCallArgs.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.TealTemplateParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_app.UpdateAppParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_asset_manager.AssetInformation.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_asset_manager.BulkAssetOptInOutResult.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_asset.AssetBulkOptInOutParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_asset.AssetOptInParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_asset.AssetOptOutParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_asset.CreateAssetParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_client_manager.AlgoSdkClients.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_client_manager.TypedAppClient.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_client_manager.TypedAppFactory.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_composer.BuiltTransactions.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_config.Config.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_debugging.AVMTracesEventData.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_debugging.TealSourceDebugEventData.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_debugging.TealSourcesDebugEventData.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_dispenser_client.DispenserFundResponse.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_dispenser_client.DispenserLimitResponse.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_dispenser_client.TestNetDispenserApiClientParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_indexer.LookupAssetHoldingsOptions.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_logic_error.LogicErrorDetails.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_network_client.AlgoClientConfig.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_network_client.AlgoConfig.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_network_client.NetworkDetails.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_testing.AlgoKitLogCaptureFixture.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_testing.AlgorandFixture.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_testing.AlgorandFixtureConfig.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_testing.AlgorandTestAutomationContext.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_testing.GetTestAccountParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_testing.LogSnapshotConfig.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.AtomicTransactionComposerToSend.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.ConfirmedTransactionResult.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.ConfirmedTransactionResults.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.SendAtomicTransactionComposerResults.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.SendParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.SendTransactionParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.SendTransactionResult.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.SendTransactionResults.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.TransactionGroupToSend.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transaction.TransactionToSign.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transfer.AlgoRekeyParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transfer.AlgoTransferParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transfer.EnsureFundedParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transfer.EnsureFundedReturnType.md │ │ │ │ │ ├── algokit:utils:typescript:code:interfaces:types_transfer.TransferAssetParams.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:index.indexer.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:index.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:testing.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_account_manager_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_account_manager.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_account.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algo_http_client_with_retry.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algorand_client_asset_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algorand_client_interface.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algorand_client_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algorand_client_transaction_creator.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algorand_client_transaction_sender.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algorand_client_transfer_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_algorand_client.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_amount_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_amount.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_arc56.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_client_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_client.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_deployer.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_factory_and_client_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_factory.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_manager.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_app.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_asset_manager.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_asset.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_async_event_emitter_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_async_event_emitter.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_client_manager_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_client_manager.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_composer.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_config.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_debugging.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_dispenser_client_spec.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_dispenser_client.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_expand.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_indexer.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_kmd_account_manager.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_lifecycle_events.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_logging.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_logic_error.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_network_client.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_testing.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_transaction.md │ │ │ │ │ ├── algokit:utils:typescript:code:modules:types_transfer.md │ │ │ │ │ ├── algokit:utils:typescript:code:README.md │ │ │ │ │ ├── algokit:utils:typescript:README.md │ │ │ │ │ ├── algokit:utils:typescript:v7-migration.md │ │ │ │ │ ├── algokit:utils:typescript:v8-migration.md │ │ │ │ │ ├── ARCs:ARC-template.md │ │ │ │ │ ├── ARCs:assets:arc-0012:README.md │ │ │ │ │ ├── ARCs:assets:arc-0034:TemplateForm.md │ │ │ │ │ ├── ARCs:assets:arc-0062:README.md │ │ │ │ │ ├── ARCs:pages:nfts.md │ │ │ │ │ ├── ARCs:pages:wallets.md │ │ │ │ │ ├── ARCs:README.md │ │ │ │ │ ├── ARCs:specs:arc-0000.md │ │ │ │ │ ├── ARCs:specs:arc-0001.md │ │ │ │ │ ├── ARCs:specs:arc-0002.md │ │ │ │ │ ├── ARCs:specs:arc-0003.md │ │ │ │ │ ├── ARCs:specs:arc-0004.md │ │ │ │ │ ├── ARCs:specs:arc-0005.md │ │ │ │ │ ├── ARCs:specs:arc-0006.md │ │ │ │ │ ├── ARCs:specs:arc-0007.md │ │ │ │ │ ├── ARCs:specs:arc-0008.md │ │ │ │ │ ├── ARCs:specs:arc-0009.md │ │ │ │ │ ├── ARCs:specs:arc-0010.md │ │ │ │ │ ├── ARCs:specs:arc-0011.md │ │ │ │ │ ├── ARCs:specs:arc-0012.md │ │ │ │ │ ├── ARCs:specs:arc-0015.md │ │ │ │ │ ├── ARCs:specs:arc-0016.md │ │ │ │ │ ├── ARCs:specs:arc-0018.md │ │ │ │ │ ├── ARCs:specs:arc-0019.md │ │ │ │ │ ├── ARCs:specs:arc-0020.md │ │ │ │ │ ├── ARCs:specs:arc-0021.md │ │ │ │ │ ├── ARCs:specs:arc-0022.md │ │ │ │ │ ├── ARCs:specs:arc-0023.md │ │ │ │ │ ├── ARCs:specs:arc-0025.md │ │ │ │ │ ├── ARCs:specs:arc-0026.md │ │ │ │ │ ├── ARCs:specs:arc-0028.md │ │ │ │ │ ├── ARCs:specs:arc-0032.md │ │ │ │ │ ├── ARCs:specs:arc-0033.md │ │ │ │ │ ├── ARCs:specs:arc-0034.md │ │ │ │ │ ├── ARCs:specs:arc-0035.md │ │ │ │ │ ├── ARCs:specs:arc-0036.md │ │ │ │ │ ├── ARCs:specs:arc-0042.md │ │ │ │ │ ├── ARCs:specs:arc-0047.md │ │ │ │ │ ├── ARCs:specs:arc-0048.md │ │ │ │ │ ├── ARCs:specs:arc-0049.md │ │ │ │ │ ├── ARCs:specs:arc-0054.md │ │ │ │ │ ├── ARCs:specs:arc-0055.md │ │ │ │ │ ├── ARCs:specs:arc-0056.md │ │ │ │ │ ├── ARCs:specs:arc-0059.md │ │ │ │ │ ├── ARCs:specs:arc-0062.md │ │ │ │ │ ├── ARCs:specs:arc-0065.md │ │ │ │ │ ├── ARCs:specs:arc-0069.md │ │ │ │ │ ├── ARCs:specs:arc-0072.md │ │ │ │ │ ├── ARCs:specs:arc-0073.md │ │ │ │ │ ├── ARCs:specs:arc-0074.md │ │ │ │ │ ├── ARCs:specs:arc-0076.md │ │ │ │ │ ├── ARCs:specs:arc-0078.md │ │ │ │ │ ├── ARCs:specs:arc-0079.md │ │ │ │ │ ├── ARCs:specs:arc-0200.md │ │ │ │ │ ├── clis_index.md │ │ │ │ │ ├── developer:docs:about.md │ │ │ │ │ ├── developer:docs:clis:algokey:algokey.md │ │ │ │ │ ├── developer:docs:clis:algokey:generate.md │ │ │ │ │ ├── developer:docs:clis:algokey:import.md │ │ │ │ │ ├── developer:docs:clis:algokey:multisig:append-auth-addr.md │ │ │ │ │ ├── developer:docs:clis:algokey:multisig:multisig.md │ │ │ │ │ ├── developer:docs:clis:algokey:part:info.md │ │ │ │ │ ├── developer:docs:clis:algokey:part:part.md │ │ │ │ │ ├── developer:docs:clis:algokey:part:reparent.md │ │ │ │ │ ├── developer:docs:clis:algokey:sign.md │ │ │ │ │ ├── developer:docs:clis:conduit:conduit.md │ │ │ │ │ ├── developer:docs:clis:conduit:init.md │ │ │ │ │ ├── developer:docs:clis:conduit:list:exporters.md │ │ │ │ │ ├── developer:docs:clis:conduit:list:importers.md │ │ │ │ │ ├── developer:docs:clis:conduit:list:list.md │ │ │ │ │ ├── developer:docs:clis:conduit:list:processors.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:diagcfg.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:metric:disable.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:metric:enable.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:metric:metric.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:metric:status.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:telemetry:disable.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:telemetry:enable.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:telemetry:endpoint.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:telemetry:name.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:telemetry:status.md │ │ │ │ │ ├── developer:docs:clis:diagcfg:telemetry:telemetry.md │ │ │ │ │ ├── developer:docs:clis:goal:node:restart.md │ │ │ │ │ ├── developer:docs:clis:goal:node:start.md │ │ │ │ │ ├── developer:docs:clis:goal:node:status.md │ │ │ │ │ ├── developer:docs:clis:goal:node:stop.md │ │ │ │ │ ├── developer:docs:clis:goal:node:wait.md │ │ │ │ │ ├── developer:docs:clis:goal:protocols.md │ │ │ │ │ ├── developer:docs:clis:goal:report.md │ │ │ │ │ ├── developer:docs:clis:goal:version.md │ │ │ │ │ ├── developer:docs:clis:goal:wallet:list.md │ │ │ │ │ ├── developer:docs:clis:goal:wallet:new.md │ │ │ │ │ ├── developer:docs:clis:goal:wallet:wallet.md │ │ │ │ │ ├── developer:docs:clis:indexer:api-config.md │ │ │ │ │ ├── developer:docs:clis:indexer:daemon.md │ │ │ │ │ ├── developer:docs:clis:indexer:indexer.md │ │ │ │ │ ├── developer:docs:clis:indexer:util:util.md │ │ │ │ │ ├── developer:docs:clis:indexer:util:validator.md │ │ │ │ │ ├── developer:docs:clis:kmd.md │ │ │ │ │ ├── developer:docs:clis:tealdbg:debug.md │ │ │ │ │ ├── developer:docs:clis:tealdbg:remote.md │ │ │ │ │ ├── developer:docs:clis:tealdbg:tealdbg.md │ │ │ │ │ ├── developer:docs:details:accounts:create.md │ │ │ │ │ ├── developer:docs:details:accounts:index.md │ │ │ │ │ ├── developer:docs:details:accounts:rekey.md │ │ │ │ │ ├── developer:docs:details:algorand_consensus.md │ │ │ │ │ ├── developer:docs:details:algorand-networks:betanet.md │ │ │ │ │ ├── developer:docs:details:algorand-networks:index.md │ │ │ │ │ ├── developer:docs:details:algorand-networks:mainnet.md │ │ │ │ │ ├── developer:docs:details:algorand-networks:testnet.md │ │ │ │ │ ├── developer:docs:details:asa.md │ │ │ │ │ ├── developer:docs:details:atc.md │ │ │ │ │ ├── developer:docs:details:atomic_transfers.md │ │ │ │ │ ├── developer:docs:details:conduit.md │ │ │ │ │ ├── developer:docs:details:crust.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:index.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:guidelines.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:index.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:jsonspec.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:index.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v1.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v10.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v2.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v3.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v4.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v5.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v6.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v7.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v8.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:opcodes:v9.md │ │ │ │ │ ├── developer:docs:details:dapps:avm:teal:specification.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:ABI:index.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:apps:create.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:apps:index.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:apps:innertx.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:apps:state.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:apps:txs.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:debugging.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:frontend:apps.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:frontend:smartsigs.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:guidelines.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:index.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:smartsigs:index.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:smartsigs:modes.md │ │ │ │ │ ├── developer:docs:details:dapps:smart-contracts:smartsigs:walkthrough.md │ │ │ │ │ ├── developer:docs:details:dapps:writing-contracts:beaker.md │ │ │ │ │ ├── developer:docs:details:dapps:writing-contracts:pyteal.md │ │ │ │ │ ├── developer:docs:details:dapps:writing-contracts:python.md │ │ │ │ │ ├── developer:docs:details:encoding.md │ │ │ │ │ ├── developer:docs:details:ethereum_to_algorand.md │ │ │ │ │ ├── developer:docs:details:index.md │ │ │ │ │ ├── developer:docs:details:indexer.md │ │ │ │ │ ├── developer:docs:details:parameter_tables.md │ │ │ │ │ ├── developer:docs:details:stateproofs:index.md │ │ │ │ │ ├── developer:docs:details:stateproofs:light_client.md │ │ │ │ │ ├── developer:docs:details:technical_faq.md │ │ │ │ │ ├── developer:docs:details:transactions:index.md │ │ │ │ │ ├── developer:docs:details:transactions:offline_transactions.md │ │ │ │ │ ├── developer:docs:details:transactions:payment_prompts.md │ │ │ │ │ ├── developer:docs:details:transactions:signatures.md │ │ │ │ │ ├── developer:docs:details:transactions:transactions.md │ │ │ │ │ ├── developer:docs:details:useful_resources.md │ │ │ │ │ ├── developer:docs:get-started:algokit.md │ │ │ │ │ ├── developer:docs:get-started:basics:what_is_blockchain.md │ │ │ │ │ ├── developer:docs:get-started:basics:whats_a_dapp.md │ │ │ │ │ ├── developer:docs:get-started:basics:where_to_start.md │ │ │ │ │ ├── developer:docs:get-started:basics:why_algorand.md │ │ │ │ │ ├── developer:docs:get-started:tokenization:ft.md │ │ │ │ │ ├── developer:docs:get-started:tokenization:nft.md │ │ │ │ │ ├── developer:docs:index.md │ │ │ │ │ ├── developer:docs:rest-apis:algod.md │ │ │ │ │ ├── developer:docs:rest-apis:indexer.md │ │ │ │ │ ├── developer:docs:rest-apis:kmd.md │ │ │ │ │ ├── developer:docs:rest-apis:restendpoints.md │ │ │ │ │ ├── developer:docs:run-a-node:operations:catchup.md │ │ │ │ │ ├── developer:docs:run-a-node:operations:switch_networks.md │ │ │ │ │ ├── developer:docs:run-a-node:participate:generate_keys.md │ │ │ │ │ ├── developer:docs:run-a-node:participate:index.md │ │ │ │ │ ├── developer:docs:run-a-node:participate:offline.md │ │ │ │ │ ├── developer:docs:run-a-node:participate:online.md │ │ │ │ │ ├── developer:docs:run-a-node:participate:renew.md │ │ │ │ │ ├── developer:docs:run-a-node:reference:artifacts.md │ │ │ │ │ ├── developer:docs:run-a-node:reference:config.md │ │ │ │ │ ├── developer:docs:run-a-node:reference:relay.md │ │ │ │ │ ├── developer:docs:run-a-node:reference:telemetry-config.md │ │ │ │ │ ├── developer:docs:run-a-node:setup:indexer.md │ │ │ │ │ ├── developer:docs:run-a-node:setup:install.md │ │ │ │ │ ├── developer:docs:run-a-node:setup:node-troubleshooting.md │ │ │ │ │ ├── developer:docs:run-a-node:setup:types.md │ │ │ │ │ ├── developer:docs:sdks:go:index.md │ │ │ │ │ ├── developer:docs:sdks:index.md │ │ │ │ │ ├── developer:docs:sdks:java:index.md │ │ │ │ │ ├── developer:docs:sdks:javascript:index.md │ │ │ │ │ ├── developer:docs:sdks:python:index.md │ │ │ │ │ ├── developer:python:code:example:accounts.md │ │ │ │ │ ├── developer:python:code:example:arc4_types.md │ │ │ │ │ ├── developer:python:code:example:assets.md │ │ │ │ │ ├── developer:python:code:example:box_storage.md │ │ │ │ │ ├── developer:python:code:example:control_flow.md │ │ │ │ │ ├── developer:python:code:example:crypto:merkle_tree.md │ │ │ │ │ ├── developer:python:code:example:defi:amm.md │ │ │ │ │ ├── developer:python:code:example:defi:auction.md │ │ │ │ │ ├── developer:python:code:example:defi:htlc_logicsig.md │ │ │ │ │ ├── developer:python:code:example:defi:marketplace.md │ │ │ │ │ ├── developer:python:code:example:events:arc28_events.md │ │ │ │ │ ├── developer:python:code:example:global_storage.md │ │ │ │ │ ├── developer:python:code:example:governance:simple_voting.md │ │ │ │ │ ├── developer:python:code:example:hello_world.md │ │ │ │ │ ├── developer:python:code:example:inner_transactions.md │ │ │ │ │ ├── developer:python:code:example:local_storage.md │ │ │ │ │ ├── developer:python:code:example:nft:proof_of_attendance.md │ │ │ │ │ ├── developer:python:code:example:privacy:zk_whitelist.md │ │ │ │ │ ├── developer:python:code:example:scratch_storage.md │ │ │ │ │ ├── developer:python:code:example:self_payment.md │ │ │ │ │ ├── developer:python:code:example:struct_in_box.md │ │ │ │ │ ├── developer:python:code:example:subsidize_app_call.md │ │ │ │ │ ├── developer:python:code:example:transactions.md │ │ │ │ │ ├── developer:python:code:example:utility:calculator.md │ │ │ │ │ ├── devportal-code-examples:projects:python-contract-examples:README.md │ │ │ │ │ ├── devportal-code-examples:README.md │ │ │ │ │ ├── docs:.walletconnect:index.md │ │ │ │ │ ├── docs:.walletconnect:walletconnect-schema.md │ │ │ │ │ ├── docs:README.md │ │ │ │ │ ├── docs:scripts:example_tracker:example_list.md │ │ │ │ │ ├── docs:scripts:README.md │ │ │ │ │ ├── index.md │ │ │ │ │ ├── liquid_auth_index.md │ │ │ │ │ ├── liquid-auth:ARCHITECTURE.md │ │ │ │ │ ├── liquid-auth:decisions:1-Service-Authentication.md │ │ │ │ │ ├── liquid-auth:decisions:2-Bidirectional-Communication.md │ │ │ │ │ ├── liquid-auth:decisions:3-Peer-to-Peer-Signaling.md │ │ │ │ │ ├── liquid-auth:decisions:4-Fido-Extension.md │ │ │ │ │ ├── liquid-auth:decisions:README.md │ │ │ │ │ ├── liquid-auth:docs:architecture.md │ │ │ │ │ ├── liquid-auth:docs:clients:android:provider-service:authenticate.md │ │ │ │ │ ├── liquid-auth:docs:clients:android:provider-service:register.md │ │ │ │ │ ├── liquid-auth:docs:clients:browser:authentication.md │ │ │ │ │ ├── liquid-auth:docs:clients:browser:example.md │ │ │ │ │ ├── liquid-auth:docs:introduction.md │ │ │ │ │ ├── liquid-auth:docs:README.md │ │ │ │ │ ├── liquid-auth:docs:server:environment-variables.md │ │ │ │ │ ├── liquid-auth:docs:server:integrations.md │ │ │ │ │ ├── liquid-auth:docs:server:introduction.md │ │ │ │ │ ├── liquid-auth:docs:server:running-locally.md │ │ │ │ │ ├── liquid-auth:README.md │ │ │ │ │ ├── liquid-auth:SEQUENCE.md │ │ │ │ │ ├── liquid-auth:services:liquid-auth-api-js:src:assertion:assertion.controller.post.request.md │ │ │ │ │ ├── liquid-auth:services:liquid-auth-api-js:src:assertion:assertion.controller.post.response.md │ │ │ │ │ ├── liquid-auth:services:liquid-auth-api-js:src:attestation:attestation.controller.post.request.md │ │ │ │ │ ├── liquid-auth:services:liquid-auth-api-js:src:auth:auth.controller.get.user.md │ │ │ │ │ ├── liquid-auth:sites:express-dapp:README.md │ │ │ │ │ ├── liquid-auth:VISION.md │ │ │ │ │ ├── puya_index.md │ │ │ │ │ ├── puya:docs:algopy_testing:index.md │ │ │ │ │ ├── puya:docs:api-algopy.arc4.md │ │ │ │ │ ├── puya:docs:api-algopy.gtxn.md │ │ │ │ │ ├── puya:docs:api-algopy.itxn.md │ │ │ │ │ ├── puya:docs:api-algopy.md │ │ │ │ │ ├── puya:docs:api-algopy.op.md │ │ │ │ │ ├── puya:docs:api.md │ │ │ │ │ ├── puya:docs:compiler.md │ │ │ │ │ ├── puya:docs:index.md │ │ │ │ │ ├── puya:docs:language-guide.md │ │ │ │ │ ├── puya:docs:lg-arc28.md │ │ │ │ │ ├── puya:docs:lg-arc4.md │ │ │ │ │ ├── puya:docs:lg-builtins.md │ │ │ │ │ ├── puya:docs:lg-calling-apps.md │ │ │ │ │ ├── puya:docs:lg-compile.md │ │ │ │ │ ├── puya:docs:lg-control.md │ │ │ │ │ ├── puya:docs:lg-errors.md │ │ │ │ │ ├── puya:docs:lg-logs.md │ │ │ │ │ ├── puya:docs:lg-modules.md │ │ │ │ │ ├── puya:docs:lg-opcode-budget.md │ │ │ │ │ ├── puya:docs:lg-ops.md │ │ │ │ │ ├── puya:docs:lg-storage.md │ │ │ │ │ ├── puya:docs:lg-structure.md │ │ │ │ │ ├── puya:docs:lg-transactions.md │ │ │ │ │ ├── puya:docs:lg-types.md │ │ │ │ │ ├── puya:docs:lg-unsupported-python-features.md │ │ │ │ │ ├── puya:docs:principles.md │ │ │ │ │ ├── puya:examples:auction:README.md │ │ │ │ │ ├── puya:python:testing:docs:algopy.md │ │ │ │ │ ├── puya:python:testing:docs:api.md │ │ │ │ │ ├── puya:python:testing:docs:coverage.md │ │ │ │ │ ├── puya:python:testing:docs:examples.md │ │ │ │ │ ├── puya:python:testing:docs:faq.md │ │ │ │ │ ├── puya:python:testing:docs:index.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:arc4-types.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:avm-types.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:concepts.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:contract-testing.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:index.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:opcodes.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:signature-testing.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:state-management.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:subroutines.md │ │ │ │ │ ├── puya:python:testing:docs:testing-guide:transactions.md │ │ │ │ │ ├── puya:python:testing:examples:README.md │ │ │ │ │ ├── puya:python:testing:README.md │ │ │ │ │ ├── puya:README.md │ │ │ │ │ ├── puya:src:puya:ARCHITECTURE.md │ │ │ │ │ ├── puya:src:puyapy:_typeshed:README.md │ │ │ │ │ ├── puya:src:puyapy:_vendor:mypy:typeshed:stdlib:_typeshed:README.md │ │ │ │ │ ├── puya:src:puyapy:awst_build:README.md │ │ │ │ │ ├── puya:stubs:README.md │ │ │ │ │ ├── puya:tests:test_expected_output:README.md │ │ │ │ │ ├── puya:typescript:docs:architecture-decisions:2024-05-21_primitive-bytes-and-strings.md │ │ │ │ │ ├── puya:typescript:docs:architecture-decisions:2024-05-21_primitive-integer-types.md │ │ │ │ │ ├── puya:typescript:docs:README.md │ │ │ │ │ ├── puya:typescript:packages:algo-ts:readme.md │ │ │ │ │ ├── puya:typescript:README.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIAddressType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIArrayDynamicType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIArrayStaticType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIBoolType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIByteType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIContract.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIInterface.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIMethod.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIStringType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABITupleType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIUfixedType.md │ │ │ │ │ ├── SDKs:javascript:classes:ABIUintType.md │ │ │ │ │ ├── SDKs:javascript:classes:Algodv2.md │ │ │ │ │ ├── SDKs:javascript:classes:AtomicTransactionComposer.md │ │ │ │ │ ├── SDKs:javascript:classes:DryrunResult.md │ │ │ │ │ ├── SDKs:javascript:classes:Indexer.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.Account.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AccountParticipation.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AccountResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AccountsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AccountStateDelta.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.Application.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationLocalState.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationLocalStatesResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationLogData.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationLogsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationParams.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ApplicationStateSchema.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.Asset.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AssetBalancesResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AssetHolding.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AssetHoldingsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AssetParams.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AssetResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.AssetsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.Block.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.BlockRewards.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.BlockUpgradeState.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.BlockUpgradeVote.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.Box.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.BoxDescriptor.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.BoxesResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ErrorResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.EvalDelta.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.EvalDeltaKeyValue.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.HashFactory.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.HealthCheck.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.IndexerStateProofMessage.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.MerkleArrayProof.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.MiniAssetHolding.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.ParticipationUpdates.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateProofFields.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateProofParticipant.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateProofReveal.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateProofSignature.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateProofSigSlot.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateProofTracking.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateProofVerifier.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.StateSchema.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TealKeyValue.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TealValue.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.Transaction.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionApplication.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionAssetConfig.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionAssetFreeze.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionAssetTransfer.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionKeyreg.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionPayment.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionSignature.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionSignatureLogicsig.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionSignatureMultisig.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionSignatureMultisigSubsignature.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:indexerModels.TransactionStateProof.md │ │ │ │ │ ├── SDKs:javascript:classes:Kmd.md │ │ │ │ │ ├── SDKs:javascript:classes:LogicSig.md │ │ │ │ │ ├── SDKs:javascript:classes:LogicSigAccount.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.Account.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AccountApplicationResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AccountAssetHolding.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AccountAssetResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AccountAssetsInformationResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AccountParticipation.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AccountStateDelta.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AppCallLogs.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.Application.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ApplicationInitialStates.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ApplicationKVStorage.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ApplicationLocalReference.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ApplicationLocalState.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ApplicationParams.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ApplicationStateOperation.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ApplicationStateSchema.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.Asset.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AssetHolding.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AssetHoldingReference.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AssetParams.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AvmKeyValue.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.AvmValue.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BlockHashResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BlockLogsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BlockResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BlockTxidsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.Box.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BoxDescriptor.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BoxesResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BoxReference.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.BuildVersion.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.CompileResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.DisassembleResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.DryrunRequest.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.DryrunResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.DryrunSource.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.DryrunState.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.DryrunTxnResult.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ErrorResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.EvalDelta.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.EvalDeltaKeyValue.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.GetBlockTimeStampOffsetResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.GetSyncRoundResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.KvDelta.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.LedgerStateDeltaForTransactionGroup.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.LightBlockHeaderProof.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.NodeStatusResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.PendingTransactionResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.PendingTransactionsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.PostTransactionsResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.ScratchChange.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateInitialStates.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateRequest.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateRequestTransactionGroup.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateTraceConfig.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateTransactionGroupResult.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateTransactionResult.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulateUnnamedResourcesAccessed.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulationEvalOverrides.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulationOpcodeTraceUnit.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SimulationTransactionExecTrace.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.StateProof.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.StateProofMessage.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.SupplyResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.TealKeyValue.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.TealValue.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.TransactionGroupLedgerStateDeltasForRoundResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.TransactionParametersResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.TransactionProofResponse.md │ │ │ │ │ ├── SDKs:javascript:classes:modelsv2.Version.md │ │ │ │ │ ├── SDKs:javascript:classes:SourceMap.md │ │ │ │ │ ├── SDKs:javascript:classes:Transaction.md │ │ │ │ │ ├── SDKs:javascript:enums:ABIReferenceType.md │ │ │ │ │ ├── SDKs:javascript:enums:ABITransactionType.md │ │ │ │ │ ├── SDKs:javascript:enums:AtomicTransactionComposerStatus.md │ │ │ │ │ ├── SDKs:javascript:enums:IntDecoding.md │ │ │ │ │ ├── SDKs:javascript:enums:OnApplicationComplete.md │ │ │ │ │ ├── SDKs:javascript:enums:TransactionType.md │ │ │ │ │ ├── SDKs:javascript:examples:README.md │ │ │ │ │ ├── SDKs:javascript:FAQ.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIContractNetworkInfo.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIContractNetworks.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIContractParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIInterfaceParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIMethodArgParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIMethodParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIMethodReturnParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:ABIResult.md │ │ │ │ │ ├── SDKs:javascript:interfaces:Account.md │ │ │ │ │ ├── SDKs:javascript:interfaces:Address.md │ │ │ │ │ ├── SDKs:javascript:interfaces:AlgodTokenHeader.md │ │ │ │ │ ├── SDKs:javascript:interfaces:BaseHTTPClient.md │ │ │ │ │ ├── SDKs:javascript:interfaces:BaseHTTPClientError.md │ │ │ │ │ ├── SDKs:javascript:interfaces:BaseHTTPClientResponse.md │ │ │ │ │ ├── SDKs:javascript:interfaces:BoxReference.md │ │ │ │ │ ├── SDKs:javascript:interfaces:CustomTokenHeader.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedAssetParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedBoxReference.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedGlobalStateSchema.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedLocalStateSchema.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedLogicSig.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedLogicSigAccount.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedMultisig.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedSignedTransaction.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedSubsig.md │ │ │ │ │ ├── SDKs:javascript:interfaces:EncodedTransaction.md │ │ │ │ │ ├── SDKs:javascript:interfaces:IndexerTokenHeader.md │ │ │ │ │ ├── SDKs:javascript:interfaces:KMDTokenHeader.md │ │ │ │ │ ├── SDKs:javascript:interfaces:MultisigMetadata.md │ │ │ │ │ ├── SDKs:javascript:interfaces:SignedTransaction.md │ │ │ │ │ ├── SDKs:javascript:interfaces:SuggestedParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:TransactionParams.md │ │ │ │ │ ├── SDKs:javascript:interfaces:TransactionWithSigner.md │ │ │ │ │ ├── SDKs:javascript:modules:indexerModels.md │ │ │ │ │ ├── SDKs:javascript:modules:modelsv2.md │ │ │ │ │ ├── SDKs:javascript:modules.md │ │ │ │ │ ├── SDKs:javascript:README.md │ │ │ │ │ ├── SDKs:python:algosdk:v2client:harness:README.md │ │ │ │ │ ├── SDKs:python:examples:README.md │ │ │ │ │ ├── SDKs:python:README.md │ │ │ │ │ ├── tealscript:examples_amm_README.md │ │ │ │ │ ├── tealscript:examples_auction_README.md │ │ │ │ │ ├── tealscript:examples_big_box_README.md │ │ │ │ │ ├── tealscript:examples_itxns_README.md │ │ │ │ │ ├── tealscript:examples_lsig_with_app_README.md │ │ │ │ │ ├── tealscript:examples_reti_README.md │ │ │ │ │ ├── tealscript:FEATURES.md │ │ │ │ │ ├── tealscript:guides_atomic_txn.md │ │ │ │ │ ├── tealscript:guides_features.md │ │ │ │ │ ├── tealscript:guides_getting_started.md │ │ │ │ │ ├── tealscript:guides_inner_transactions.md │ │ │ │ │ ├── tealscript:guides_lifecycle.md │ │ │ │ │ ├── tealscript:guides_math.md │ │ │ │ │ ├── tealscript:guides_methods.md │ │ │ │ │ ├── tealscript:guides_multiple_contracts.md │ │ │ │ │ ├── tealscript:guides_pyteal.md │ │ │ │ │ ├── tealscript:guides_storage.md │ │ │ │ │ ├── tealscript:guides_Supported Types_arrays.md │ │ │ │ │ ├── tealscript:guides_Supported Types_numbers.md │ │ │ │ │ ├── TEALScript:README.md │ │ │ │ │ ├── tealscript:tests_test_package_README.md │ │ │ │ │ ├── tealscript:tutorials_Hello World_0001-intro.md │ │ │ │ │ ├── tealscript:tutorials_Hello World_0002-init.md │ │ │ │ │ ├── tealscript:tutorials_Hello World_0003-contract.md │ │ │ │ │ ├── tealscript:tutorials_Hello World_0004-artifacts.md │ │ │ │ │ ├── tealscript:tutorials_Hello World_0005-hello.md │ │ │ │ │ └── tealscript:tutorials_Hello World_0006-test.md │ │ │ │ └── taxonomy-categories │ │ │ │ ├── algokit-utils.json │ │ │ │ ├── algokit.json │ │ │ │ ├── arcs.json │ │ │ │ ├── clis.json │ │ │ │ ├── details.json │ │ │ │ ├── developers.json │ │ │ │ ├── liquid-auth.json │ │ │ │ ├── nodes.json │ │ │ │ ├── puya.json │ │ │ │ ├── python.json │ │ │ │ ├── sdks.json │ │ │ │ └── tealscript.json │ │ │ └── wallet │ │ │ └── index.ts │ │ ├── tools │ │ │ ├── accountManager.ts │ │ │ ├── algodManager.ts │ │ │ ├── apiManager │ │ │ │ ├── algod │ │ │ │ │ ├── account.ts │ │ │ │ │ ├── application.ts │ │ │ │ │ ├── asset.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── transaction.ts │ │ │ │ ├── example │ │ │ │ │ ├── get-balance.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── indexer │ │ │ │ │ ├── account.ts │ │ │ │ │ ├── application.ts │ │ │ │ │ ├── asset.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── transaction.ts │ │ │ │ ├── nfd │ │ │ │ │ └── index.ts │ │ │ │ ├── tinyman │ │ │ │ │ ├── analytics.ts │ │ │ │ │ ├── bootstrap.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── liquidity.ts │ │ │ │ │ ├── opt_in.ts │ │ │ │ │ ├── pool.ts │ │ │ │ │ ├── remove_liquidity.ts │ │ │ │ │ └── swap.ts │ │ │ │ ├── ultrade │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── market.ts │ │ │ │ │ ├── system.ts │ │ │ │ │ └── wallet.ts │ │ │ │ └── vestige │ │ │ │ ├── assets.ts │ │ │ │ ├── balances.ts │ │ │ │ ├── index.ts │ │ │ │ ├── networks.ts │ │ │ │ ├── notes.ts │ │ │ │ ├── pools.ts │ │ │ │ ├── protocols.ts │ │ │ │ ├── swaps.ts │ │ │ │ └── vaults.ts │ │ │ ├── arc26Manager.ts │ │ │ ├── index.ts │ │ │ ├── knowledgeManager.ts │ │ │ ├── transactionManager │ │ │ │ ├── accountTransactions.ts │ │ │ │ ├── appTransactions │ │ │ │ │ ├── callTxn.ts │ │ │ │ │ ├── clearTxn.ts │ │ │ │ │ ├── closeOutTxn.ts │ │ │ │ │ ├── createTxn.ts │ │ │ │ │ ├── deleteTxn.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── optInTxn.ts │ │ │ │ │ ├── test │ │ │ │ │ │ ├── counter_approval.teal │ │ │ │ │ │ ├── counter_clear.teal │ │ │ │ │ │ ├── storage_test_approval_v2.teal │ │ │ │ │ │ ├── storage_test_approval.teal │ │ │ │ │ │ └── storage_test_clear.teal │ │ │ │ │ ├── types.ts │ │ │ │ │ └── updateTxn.ts │ │ │ │ ├── assetTransactions.ts │ │ │ │ ├── generalTransaction.ts │ │ │ │ └── index.ts │ │ │ └── utilityManager.ts │ │ ├── types.ts │ │ └── utils │ │ └── responseProcessor.ts │ ├── tests │ │ ├── resources │ │ │ ├── algod │ │ │ │ ├── account.test.ts │ │ │ │ ├── application.test.ts │ │ │ │ ├── asset.test.ts │ │ │ │ └── transaction.test.ts │ │ │ └── indexer │ │ │ ├── account.test.ts │ │ │ ├── application.test.ts │ │ │ ├── asset.test.ts │ │ │ └── transaction.test.ts │ │ └── tools │ │ ├── accountManager.test.ts │ │ ├── algodManager.test.ts │ │ ├── apiManager │ │ │ └── example │ │ │ └── get-balance.test.ts │ │ ├── transactionManager │ │ │ ├── accountTransactionManager.test.ts │ │ │ ├── appTransactionManager.test.ts │ │ │ ├── assetTransactionManager.test.ts │ │ │ ├── generalTransactionManager.test.ts │ │ │ └── transactionManager.test.ts │ │ └── utilityManager.test.ts │ └── tsconfig.json ├── README.md ├── rename_files.sh └── tsconfig.json ``` # Files -------------------------------------------------------------------------------- /packages/server/src/resources/knowledge/taxonomy/developer:docs:rest-apis:indexer.md: -------------------------------------------------------------------------------- ```markdown 1 | title: indexer 2 | --- 3 | 4 | <a name="paths"></a> 5 | ## Paths 6 | 7 | <a name="makehealthcheck"></a> 8 | ### GET /health 9 | Returns 200 if healthy. 10 | ``` 11 | GET /health 12 | ``` 13 | 14 | 15 | **Responses** 16 | 17 | |HTTP Code|Description|Schema| 18 | |---|---|---| 19 | |**200**|(empty)|[HealthCheck](#healthcheck)| 20 | |**default**|Unknown Error|No Content| 21 | 22 | 23 | **Produces** 24 | 25 | * `application/json` 26 | 27 | 28 | **Tags** 29 | 30 | * common 31 | 32 | 33 | <a name="searchforaccounts"></a> 34 | ### GET /v2/accounts 35 | 36 | **Description** 37 | Search for accounts. 38 | 39 | 40 | **Parameters** 41 | 42 | |Type|Name|Description|Schema| 43 | |---|---|---|---| 44 | |**Query**|**application-id** <br>*optional*|Application ID|integer| 45 | |**Query**|**asset-id** <br>*optional*|Asset ID|integer| 46 | |**Query**|**auth-addr** <br>*optional*|Include accounts configured to use this spending key.|string| 47 | |**Query**|**currency-greater-than** <br>*optional*|Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 48 | |**Query**|**currency-less-than** <br>*optional*|Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 49 | |**Query**|**exclude** <br>*optional*|Exclude additional items such as asset holdings, application local data stored for this account, asset parameters created by this account, and application parameters created by this account.|< enum (all, assets, created-assets, apps-local-state, created-apps, none) > array| 50 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 51 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 52 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 53 | |**Query**|**round** <br>*optional*|Deprecated and disallowed. This parameter used to include results for a specified round. Requests with this parameter set are now rejected.|integer| 54 | 55 | 56 | **Responses** 57 | 58 | |HTTP Code|Description|Schema| 59 | |---|---|---| 60 | |**200**|(empty)|[Response 200](#searchforaccounts-response-200)| 61 | |**400**|Response for errors|[Response 400](#searchforaccounts-response-400)| 62 | |**500**|Response for errors|[Response 500](#searchforaccounts-response-500)| 63 | 64 | <a name="searchforaccounts-response-200"></a> 65 | **Response 200** 66 | 67 | |Name|Description|Schema| 68 | |---|---|---| 69 | |**accounts** <br>*required*||< [Account](#account) > array| 70 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 71 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 72 | 73 | <a name="searchforaccounts-response-400"></a> 74 | **Response 400** 75 | 76 | |Name|Schema| 77 | |---|---| 78 | |**data** <br>*optional*|object| 79 | |**message** <br>*required*|string| 80 | 81 | <a name="searchforaccounts-response-500"></a> 82 | **Response 500** 83 | 84 | |Name|Schema| 85 | |---|---| 86 | |**data** <br>*optional*|object| 87 | |**message** <br>*required*|string| 88 | 89 | 90 | **Consumes** 91 | 92 | * `application/json` 93 | 94 | 95 | **Produces** 96 | 97 | * `application/json` 98 | 99 | 100 | **Tags** 101 | 102 | * search 103 | 104 | 105 | <a name="lookupaccountbyid"></a> 106 | ### GET /v2/accounts/{account-id} 107 | 108 | **Description** 109 | Lookup account information. 110 | 111 | 112 | **Parameters** 113 | 114 | |Type|Name|Description|Schema| 115 | |---|---|---|---| 116 | |**Path**|**account-id** <br>*required*|account string|string| 117 | |**Query**|**exclude** <br>*optional*|Exclude additional items such as asset holdings, application local data stored for this account, asset parameters created by this account, and application parameters created by this account.|< enum (all, assets, created-assets, apps-local-state, created-apps, none) > array| 118 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 119 | |**Query**|**round** <br>*optional*|Deprecated and disallowed. This parameter used to include results for a specified round. Requests with this parameter set are now rejected.|integer| 120 | 121 | 122 | **Responses** 123 | 124 | |HTTP Code|Description|Schema| 125 | |---|---|---| 126 | |**200**|(empty)|[Response 200](#lookupaccountbyid-response-200)| 127 | |**400**|Response for errors|[Response 400](#lookupaccountbyid-response-400)| 128 | |**404**|Response for errors|[Response 404](#lookupaccountbyid-response-404)| 129 | |**500**|Response for errors|[Response 500](#lookupaccountbyid-response-500)| 130 | 131 | <a name="lookupaccountbyid-response-200"></a> 132 | **Response 200** 133 | 134 | |Name|Description|Schema| 135 | |---|---|---| 136 | |**account** <br>*required*||[Account](#account)| 137 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 138 | 139 | <a name="lookupaccountbyid-response-400"></a> 140 | **Response 400** 141 | 142 | |Name|Schema| 143 | |---|---| 144 | |**data** <br>*optional*|object| 145 | |**message** <br>*required*|string| 146 | 147 | <a name="lookupaccountbyid-response-404"></a> 148 | **Response 404** 149 | 150 | |Name|Schema| 151 | |---|---| 152 | |**data** <br>*optional*|object| 153 | |**message** <br>*required*|string| 154 | 155 | <a name="lookupaccountbyid-response-500"></a> 156 | **Response 500** 157 | 158 | |Name|Schema| 159 | |---|---| 160 | |**data** <br>*optional*|object| 161 | |**message** <br>*required*|string| 162 | 163 | 164 | **Consumes** 165 | 166 | * `application/json` 167 | 168 | 169 | **Produces** 170 | 171 | * `application/json` 172 | 173 | 174 | **Tags** 175 | 176 | * lookup 177 | 178 | 179 | <a name="lookupaccountapplocalstates"></a> 180 | ### GET /v2/accounts/{account-id}/apps-local-state 181 | 182 | **Description** 183 | Lookup an account's asset holdings, optionally for a specific ID. 184 | 185 | 186 | **Parameters** 187 | 188 | |Type|Name|Description|Schema| 189 | |---|---|---|---| 190 | |**Path**|**account-id** <br>*required*|account string|string| 191 | |**Query**|**application-id** <br>*optional*|Application ID|integer| 192 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 193 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 194 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 195 | 196 | 197 | **Responses** 198 | 199 | |HTTP Code|Description|Schema| 200 | |---|---|---| 201 | |**200**|(empty)|[Response 200](#lookupaccountapplocalstates-response-200)| 202 | |**400**|Response for errors|[Response 400](#lookupaccountapplocalstates-response-400)| 203 | |**404**|Response for errors|[Response 404](#lookupaccountapplocalstates-response-404)| 204 | |**500**|Response for errors|[Response 500](#lookupaccountapplocalstates-response-500)| 205 | 206 | <a name="lookupaccountapplocalstates-response-200"></a> 207 | **Response 200** 208 | 209 | |Name|Description|Schema| 210 | |---|---|---| 211 | |**apps-local-states** <br>*required*||< [ApplicationLocalState](#applicationlocalstate) > array| 212 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 213 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 214 | 215 | <a name="lookupaccountapplocalstates-response-400"></a> 216 | **Response 400** 217 | 218 | |Name|Schema| 219 | |---|---| 220 | |**data** <br>*optional*|object| 221 | |**message** <br>*required*|string| 222 | 223 | <a name="lookupaccountapplocalstates-response-404"></a> 224 | **Response 404** 225 | 226 | |Name|Schema| 227 | |---|---| 228 | |**data** <br>*optional*|object| 229 | |**message** <br>*required*|string| 230 | 231 | <a name="lookupaccountapplocalstates-response-500"></a> 232 | **Response 500** 233 | 234 | |Name|Schema| 235 | |---|---| 236 | |**data** <br>*optional*|object| 237 | |**message** <br>*required*|string| 238 | 239 | 240 | **Consumes** 241 | 242 | * `application/json` 243 | 244 | 245 | **Produces** 246 | 247 | * `application/json` 248 | 249 | 250 | **Tags** 251 | 252 | * lookup 253 | 254 | 255 | <a name="lookupaccountassets"></a> 256 | ### GET /v2/accounts/{account-id}/assets 257 | 258 | **Description** 259 | Lookup an account's asset holdings, optionally for a specific ID. 260 | 261 | 262 | **Parameters** 263 | 264 | |Type|Name|Description|Schema| 265 | |---|---|---|---| 266 | |**Path**|**account-id** <br>*required*|account string|string| 267 | |**Query**|**asset-id** <br>*optional*|Asset ID|integer| 268 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 269 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 270 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 271 | 272 | 273 | **Responses** 274 | 275 | |HTTP Code|Description|Schema| 276 | |---|---|---| 277 | |**200**|(empty)|[Response 200](#lookupaccountassets-response-200)| 278 | |**400**|Response for errors|[Response 400](#lookupaccountassets-response-400)| 279 | |**404**|Response for errors|[Response 404](#lookupaccountassets-response-404)| 280 | |**500**|Response for errors|[Response 500](#lookupaccountassets-response-500)| 281 | 282 | <a name="lookupaccountassets-response-200"></a> 283 | **Response 200** 284 | 285 | |Name|Description|Schema| 286 | |---|---|---| 287 | |**assets** <br>*required*||< [AssetHolding](#assetholding) > array| 288 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 289 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 290 | 291 | <a name="lookupaccountassets-response-400"></a> 292 | **Response 400** 293 | 294 | |Name|Schema| 295 | |---|---| 296 | |**data** <br>*optional*|object| 297 | |**message** <br>*required*|string| 298 | 299 | <a name="lookupaccountassets-response-404"></a> 300 | **Response 404** 301 | 302 | |Name|Schema| 303 | |---|---| 304 | |**data** <br>*optional*|object| 305 | |**message** <br>*required*|string| 306 | 307 | <a name="lookupaccountassets-response-500"></a> 308 | **Response 500** 309 | 310 | |Name|Schema| 311 | |---|---| 312 | |**data** <br>*optional*|object| 313 | |**message** <br>*required*|string| 314 | 315 | 316 | **Consumes** 317 | 318 | * `application/json` 319 | 320 | 321 | **Produces** 322 | 323 | * `application/json` 324 | 325 | 326 | **Tags** 327 | 328 | * lookup 329 | 330 | 331 | <a name="lookupaccountcreatedapplications"></a> 332 | ### GET /v2/accounts/{account-id}/created-applications 333 | 334 | **Description** 335 | Lookup an account's created application parameters, optionally for a specific ID. 336 | 337 | 338 | **Parameters** 339 | 340 | |Type|Name|Description|Schema| 341 | |---|---|---|---| 342 | |**Path**|**account-id** <br>*required*|account string|string| 343 | |**Query**|**application-id** <br>*optional*|Application ID|integer| 344 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 345 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 346 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 347 | 348 | 349 | **Responses** 350 | 351 | |HTTP Code|Description|Schema| 352 | |---|---|---| 353 | |**200**|(empty)|[Response 200](#lookupaccountcreatedapplications-response-200)| 354 | |**400**|Response for errors|[Response 400](#lookupaccountcreatedapplications-response-400)| 355 | |**404**|Response for errors|[Response 404](#lookupaccountcreatedapplications-response-404)| 356 | |**500**|Response for errors|[Response 500](#lookupaccountcreatedapplications-response-500)| 357 | 358 | <a name="lookupaccountcreatedapplications-response-200"></a> 359 | **Response 200** 360 | 361 | |Name|Description|Schema| 362 | |---|---|---| 363 | |**applications** <br>*required*||< [Application](#application) > array| 364 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 365 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 366 | 367 | <a name="lookupaccountcreatedapplications-response-400"></a> 368 | **Response 400** 369 | 370 | |Name|Schema| 371 | |---|---| 372 | |**data** <br>*optional*|object| 373 | |**message** <br>*required*|string| 374 | 375 | <a name="lookupaccountcreatedapplications-response-404"></a> 376 | **Response 404** 377 | 378 | |Name|Schema| 379 | |---|---| 380 | |**data** <br>*optional*|object| 381 | |**message** <br>*required*|string| 382 | 383 | <a name="lookupaccountcreatedapplications-response-500"></a> 384 | **Response 500** 385 | 386 | |Name|Schema| 387 | |---|---| 388 | |**data** <br>*optional*|object| 389 | |**message** <br>*required*|string| 390 | 391 | 392 | **Consumes** 393 | 394 | * `application/json` 395 | 396 | 397 | **Produces** 398 | 399 | * `application/json` 400 | 401 | 402 | **Tags** 403 | 404 | * lookup 405 | 406 | 407 | <a name="lookupaccountcreatedassets"></a> 408 | ### GET /v2/accounts/{account-id}/created-assets 409 | 410 | **Description** 411 | Lookup an account's created asset parameters, optionally for a specific ID. 412 | 413 | 414 | **Parameters** 415 | 416 | |Type|Name|Description|Schema| 417 | |---|---|---|---| 418 | |**Path**|**account-id** <br>*required*|account string|string| 419 | |**Query**|**asset-id** <br>*optional*|Asset ID|integer| 420 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 421 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 422 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 423 | 424 | 425 | **Responses** 426 | 427 | |HTTP Code|Description|Schema| 428 | |---|---|---| 429 | |**200**|(empty)|[Response 200](#lookupaccountcreatedassets-response-200)| 430 | |**400**|Response for errors|[Response 400](#lookupaccountcreatedassets-response-400)| 431 | |**404**|Response for errors|[Response 404](#lookupaccountcreatedassets-response-404)| 432 | |**500**|Response for errors|[Response 500](#lookupaccountcreatedassets-response-500)| 433 | 434 | <a name="lookupaccountcreatedassets-response-200"></a> 435 | **Response 200** 436 | 437 | |Name|Description|Schema| 438 | |---|---|---| 439 | |**assets** <br>*required*||< [Asset](#asset) > array| 440 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 441 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 442 | 443 | <a name="lookupaccountcreatedassets-response-400"></a> 444 | **Response 400** 445 | 446 | |Name|Schema| 447 | |---|---| 448 | |**data** <br>*optional*|object| 449 | |**message** <br>*required*|string| 450 | 451 | <a name="lookupaccountcreatedassets-response-404"></a> 452 | **Response 404** 453 | 454 | |Name|Schema| 455 | |---|---| 456 | |**data** <br>*optional*|object| 457 | |**message** <br>*required*|string| 458 | 459 | <a name="lookupaccountcreatedassets-response-500"></a> 460 | **Response 500** 461 | 462 | |Name|Schema| 463 | |---|---| 464 | |**data** <br>*optional*|object| 465 | |**message** <br>*required*|string| 466 | 467 | 468 | **Consumes** 469 | 470 | * `application/json` 471 | 472 | 473 | **Produces** 474 | 475 | * `application/json` 476 | 477 | 478 | **Tags** 479 | 480 | * lookup 481 | 482 | 483 | <a name="lookupaccounttransactions"></a> 484 | ### GET /v2/accounts/{account-id}/transactions 485 | 486 | **Description** 487 | Lookup account transactions. Transactions are returned newest to oldest. 488 | 489 | 490 | **Parameters** 491 | 492 | |Type|Name|Description|Schema| 493 | |---|---|---|---| 494 | |**Path**|**account-id** <br>*required*|account string|string| 495 | |**Query**|**after-time** <br>*optional*|Include results after the given time. Must be an RFC 3339 formatted string.|string (date-time)| 496 | |**Query**|**asset-id** <br>*optional*|Asset ID|integer| 497 | |**Query**|**before-time** <br>*optional*|Include results before the given time. Must be an RFC 3339 formatted string.|string (date-time)| 498 | |**Query**|**currency-greater-than** <br>*optional*|Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 499 | |**Query**|**currency-less-than** <br>*optional*|Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 500 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 501 | |**Query**|**max-round** <br>*optional*|Include results at or before the specified max-round.|integer| 502 | |**Query**|**min-round** <br>*optional*|Include results at or after the specified min-round.|integer| 503 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 504 | |**Query**|**note-prefix** <br>*optional*|Specifies a prefix which must be contained in the note field.|string| 505 | |**Query**|**rekey-to** <br>*optional*|Include results which include the rekey-to field.|boolean| 506 | |**Query**|**round** <br>*optional*|Include results for the specified round.|integer| 507 | |**Query**|**sig-type** <br>*optional*|SigType filters just results using the specified type of signature:<br>* sig - Standard<br>* msig - MultiSig<br>* lsig - LogicSig|enum (sig, msig, lsig)| 508 | |**Query**|**tx-type** <br>*optional*||enum (pay, keyreg, acfg, axfer, afrz, appl, stpf)| 509 | |**Query**|**txid** <br>*optional*|Lookup the specific transaction by ID.|string| 510 | 511 | 512 | **Responses** 513 | 514 | |HTTP Code|Description|Schema| 515 | |---|---|---| 516 | |**200**|(empty)|[Response 200](#lookupaccounttransactions-response-200)| 517 | |**400**|Response for errors|[Response 400](#lookupaccounttransactions-response-400)| 518 | |**500**|Response for errors|[Response 500](#lookupaccounttransactions-response-500)| 519 | 520 | <a name="lookupaccounttransactions-response-200"></a> 521 | **Response 200** 522 | 523 | |Name|Description|Schema| 524 | |---|---|---| 525 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 526 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 527 | |**transactions** <br>*required*||< [Transaction](#transaction) > array| 528 | 529 | <a name="lookupaccounttransactions-response-400"></a> 530 | **Response 400** 531 | 532 | |Name|Schema| 533 | |---|---| 534 | |**data** <br>*optional*|object| 535 | |**message** <br>*required*|string| 536 | 537 | <a name="lookupaccounttransactions-response-500"></a> 538 | **Response 500** 539 | 540 | |Name|Schema| 541 | |---|---| 542 | |**data** <br>*optional*|object| 543 | |**message** <br>*required*|string| 544 | 545 | 546 | **Consumes** 547 | 548 | * `application/json` 549 | 550 | 551 | **Produces** 552 | 553 | * `application/json` 554 | 555 | 556 | **Tags** 557 | 558 | * lookup 559 | 560 | 561 | <a name="searchforapplications"></a> 562 | ### GET /v2/applications 563 | 564 | **Description** 565 | Search for applications 566 | 567 | 568 | **Parameters** 569 | 570 | |Type|Name|Description|Schema| 571 | |---|---|---|---| 572 | |**Query**|**application-id** <br>*optional*|Application ID|integer| 573 | |**Query**|**creator** <br>*optional*|Filter just applications with the given creator address.|string| 574 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 575 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 576 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 577 | 578 | 579 | **Responses** 580 | 581 | |HTTP Code|Description|Schema| 582 | |---|---|---| 583 | |**200**|(empty)|[Response 200](#searchforapplications-response-200)| 584 | |**500**|Response for errors|[Response 500](#searchforapplications-response-500)| 585 | 586 | <a name="searchforapplications-response-200"></a> 587 | **Response 200** 588 | 589 | |Name|Description|Schema| 590 | |---|---|---| 591 | |**applications** <br>*required*||< [Application](#application) > array| 592 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 593 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 594 | 595 | <a name="searchforapplications-response-500"></a> 596 | **Response 500** 597 | 598 | |Name|Schema| 599 | |---|---| 600 | |**data** <br>*optional*|object| 601 | |**message** <br>*required*|string| 602 | 603 | 604 | **Consumes** 605 | 606 | * `application/json` 607 | 608 | 609 | **Produces** 610 | 611 | * `application/json` 612 | 613 | 614 | **Tags** 615 | 616 | * search 617 | 618 | 619 | <a name="lookupapplicationbyid"></a> 620 | ### GET /v2/applications/{application-id} 621 | 622 | **Description** 623 | Lookup application. 624 | 625 | 626 | **Parameters** 627 | 628 | |Type|Name|Description|Schema| 629 | |---|---|---|---| 630 | |**Path**|**application-id** <br>*required*||integer| 631 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 632 | 633 | 634 | **Responses** 635 | 636 | |HTTP Code|Description|Schema| 637 | |---|---|---| 638 | |**200**|(empty)|[Response 200](#lookupapplicationbyid-response-200)| 639 | |**404**|Response for errors|[Response 404](#lookupapplicationbyid-response-404)| 640 | |**500**|Response for errors|[Response 500](#lookupapplicationbyid-response-500)| 641 | 642 | <a name="lookupapplicationbyid-response-200"></a> 643 | **Response 200** 644 | 645 | |Name|Description|Schema| 646 | |---|---|---| 647 | |**application** <br>*optional*||[Application](#application)| 648 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 649 | 650 | <a name="lookupapplicationbyid-response-404"></a> 651 | **Response 404** 652 | 653 | |Name|Schema| 654 | |---|---| 655 | |**data** <br>*optional*|object| 656 | |**message** <br>*required*|string| 657 | 658 | <a name="lookupapplicationbyid-response-500"></a> 659 | **Response 500** 660 | 661 | |Name|Schema| 662 | |---|---| 663 | |**data** <br>*optional*|object| 664 | |**message** <br>*required*|string| 665 | 666 | 667 | **Consumes** 668 | 669 | * `application/json` 670 | 671 | 672 | **Produces** 673 | 674 | * `application/json` 675 | 676 | 677 | **Tags** 678 | 679 | * lookup 680 | 681 | 682 | <a name="lookupapplicationboxbyidandname"></a> 683 | ### GET /v2/applications/{application-id}/box 684 | Get box information for a given application. 685 | ``` 686 | GET /v2/applications/{application-id}/box 687 | ``` 688 | 689 | 690 | **Description** 691 | Given an application ID and box name, returns base64 encoded box name and value. Box names must be in the goal app call arg form 'encoding:value'. For ints, use the form 'int:1234'. For raw bytes, encode base 64 and use 'b64' prefix as in 'b64:A=='. For printable strings, use the form 'str:hello'. For addresses, use the form 'addr:XYZ...'. 692 | 693 | 694 | **Parameters** 695 | 696 | |Type|Name|Description|Schema| 697 | |---|---|---|---| 698 | |**Path**|**application-id** <br>*required*||integer| 699 | |**Query**|**name** <br>*required*|A box name in goal-arg form 'encoding:value'. For ints, use the form 'int:1234'. For raw bytes, use the form 'b64:A=='. For printable strings, use the form 'str:hello'. For addresses, use the form 'addr:XYZ...'.|string| 700 | 701 | 702 | **Responses** 703 | 704 | |HTTP Code|Description|Schema| 705 | |---|---|---| 706 | |**200**|Box information|[Box](#box)| 707 | |**400**|Response for errors|[Response 400](#lookupapplicationboxbyidandname-response-400)| 708 | |**404**|Response for errors|[Response 404](#lookupapplicationboxbyidandname-response-404)| 709 | |**500**|Response for errors|[Response 500](#lookupapplicationboxbyidandname-response-500)| 710 | 711 | <a name="lookupapplicationboxbyidandname-response-400"></a> 712 | **Response 400** 713 | 714 | |Name|Schema| 715 | |---|---| 716 | |**data** <br>*optional*|object| 717 | |**message** <br>*required*|string| 718 | 719 | <a name="lookupapplicationboxbyidandname-response-404"></a> 720 | **Response 404** 721 | 722 | |Name|Schema| 723 | |---|---| 724 | |**data** <br>*optional*|object| 725 | |**message** <br>*required*|string| 726 | 727 | <a name="lookupapplicationboxbyidandname-response-500"></a> 728 | **Response 500** 729 | 730 | |Name|Schema| 731 | |---|---| 732 | |**data** <br>*optional*|object| 733 | |**message** <br>*required*|string| 734 | 735 | 736 | **Consumes** 737 | 738 | * `application/json` 739 | 740 | 741 | **Produces** 742 | 743 | * `application/json` 744 | 745 | 746 | **Tags** 747 | 748 | * lookup 749 | 750 | 751 | <a name="searchforapplicationboxes"></a> 752 | ### GET /v2/applications/{application-id}/boxes 753 | Get box names for a given application. 754 | ``` 755 | GET /v2/applications/{application-id}/boxes 756 | ``` 757 | 758 | 759 | **Description** 760 | Given an application ID, returns the box names of that application sorted lexicographically. 761 | 762 | 763 | **Parameters** 764 | 765 | |Type|Name|Description|Schema| 766 | |---|---|---|---| 767 | |**Path**|**application-id** <br>*required*||integer| 768 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 769 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 770 | 771 | 772 | **Responses** 773 | 774 | |HTTP Code|Description|Schema| 775 | |---|---|---| 776 | |**200**|Box names of an application|[Response 200](#searchforapplicationboxes-response-200)| 777 | |**400**|Response for errors|[Response 400](#searchforapplicationboxes-response-400)| 778 | |**404**|Response for errors|[Response 404](#searchforapplicationboxes-response-404)| 779 | |**500**|Response for errors|[Response 500](#searchforapplicationboxes-response-500)| 780 | 781 | <a name="searchforapplicationboxes-response-200"></a> 782 | **Response 200** 783 | 784 | |Name|Description|Schema| 785 | |---|---|---| 786 | |**application-id** <br>*required*|\[appidx\] application index.|integer| 787 | |**boxes** <br>*required*||< [BoxDescriptor](#boxdescriptor) > array| 788 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 789 | 790 | <a name="searchforapplicationboxes-response-400"></a> 791 | **Response 400** 792 | 793 | |Name|Schema| 794 | |---|---| 795 | |**data** <br>*optional*|object| 796 | |**message** <br>*required*|string| 797 | 798 | <a name="searchforapplicationboxes-response-404"></a> 799 | **Response 404** 800 | 801 | |Name|Schema| 802 | |---|---| 803 | |**data** <br>*optional*|object| 804 | |**message** <br>*required*|string| 805 | 806 | <a name="searchforapplicationboxes-response-500"></a> 807 | **Response 500** 808 | 809 | |Name|Schema| 810 | |---|---| 811 | |**data** <br>*optional*|object| 812 | |**message** <br>*required*|string| 813 | 814 | 815 | **Consumes** 816 | 817 | * `application/json` 818 | 819 | 820 | **Produces** 821 | 822 | * `application/json` 823 | 824 | 825 | **Tags** 826 | 827 | * search 828 | 829 | 830 | <a name="lookupapplicationlogsbyid"></a> 831 | ### GET /v2/applications/{application-id}/logs 832 | 833 | **Description** 834 | Lookup application logs. 835 | 836 | 837 | **Parameters** 838 | 839 | |Type|Name|Description|Schema| 840 | |---|---|---|---| 841 | |**Path**|**application-id** <br>*required*||integer| 842 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 843 | |**Query**|**max-round** <br>*optional*|Include results at or before the specified max-round.|integer| 844 | |**Query**|**min-round** <br>*optional*|Include results at or after the specified min-round.|integer| 845 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 846 | |**Query**|**sender-address** <br>*optional*|Only include transactions with this sender address.|string| 847 | |**Query**|**txid** <br>*optional*|Lookup the specific transaction by ID.|string| 848 | 849 | 850 | **Responses** 851 | 852 | |HTTP Code|Description|Schema| 853 | |---|---|---| 854 | |**200**|(empty)|[Response 200](#lookupapplicationlogsbyid-response-200)| 855 | 856 | <a name="lookupapplicationlogsbyid-response-200"></a> 857 | **Response 200** 858 | 859 | |Name|Description|Schema| 860 | |---|---|---| 861 | |**application-id** <br>*required*|\[appidx\] application index.|integer| 862 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 863 | |**log-data** <br>*optional*||< [ApplicationLogData](#applicationlogdata) > array| 864 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 865 | 866 | 867 | **Consumes** 868 | 869 | * `application/json` 870 | 871 | 872 | **Produces** 873 | 874 | * `application/json` 875 | 876 | 877 | **Tags** 878 | 879 | * lookup 880 | 881 | 882 | <a name="searchforassets"></a> 883 | ### GET /v2/assets 884 | 885 | **Description** 886 | Search for assets. 887 | 888 | 889 | **Parameters** 890 | 891 | |Type|Name|Description|Schema| 892 | |---|---|---|---| 893 | |**Query**|**asset-id** <br>*optional*|Asset ID|integer| 894 | |**Query**|**creator** <br>*optional*|Filter just assets with the given creator address.|string| 895 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 896 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 897 | |**Query**|**name** <br>*optional*|Filter just assets with the given name.|string| 898 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 899 | |**Query**|**unit** <br>*optional*|Filter just assets with the given unit.|string| 900 | 901 | 902 | **Responses** 903 | 904 | |HTTP Code|Description|Schema| 905 | |---|---|---| 906 | |**200**|(empty)|[Response 200](#searchforassets-response-200)| 907 | |**400**|Response for errors|[Response 400](#searchforassets-response-400)| 908 | |**500**|Response for errors|[Response 500](#searchforassets-response-500)| 909 | 910 | <a name="searchforassets-response-200"></a> 911 | **Response 200** 912 | 913 | |Name|Description|Schema| 914 | |---|---|---| 915 | |**assets** <br>*required*||< [Asset](#asset) > array| 916 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 917 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 918 | 919 | <a name="searchforassets-response-400"></a> 920 | **Response 400** 921 | 922 | |Name|Schema| 923 | |---|---| 924 | |**data** <br>*optional*|object| 925 | |**message** <br>*required*|string| 926 | 927 | <a name="searchforassets-response-500"></a> 928 | **Response 500** 929 | 930 | |Name|Schema| 931 | |---|---| 932 | |**data** <br>*optional*|object| 933 | |**message** <br>*required*|string| 934 | 935 | 936 | **Consumes** 937 | 938 | * `application/json` 939 | 940 | 941 | **Produces** 942 | 943 | * `application/json` 944 | 945 | 946 | **Tags** 947 | 948 | * search 949 | 950 | 951 | <a name="lookupassetbyid"></a> 952 | ### GET /v2/assets/{asset-id} 953 | 954 | **Description** 955 | Lookup asset information. 956 | 957 | 958 | **Parameters** 959 | 960 | |Type|Name|Description|Schema| 961 | |---|---|---|---| 962 | |**Path**|**asset-id** <br>*required*||integer| 963 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 964 | 965 | 966 | **Responses** 967 | 968 | |HTTP Code|Description|Schema| 969 | |---|---|---| 970 | |**200**|(empty)|[Response 200](#lookupassetbyid-response-200)| 971 | |**400**|Response for errors|[Response 400](#lookupassetbyid-response-400)| 972 | |**404**|Response for errors|[Response 404](#lookupassetbyid-response-404)| 973 | |**500**|Response for errors|[Response 500](#lookupassetbyid-response-500)| 974 | 975 | <a name="lookupassetbyid-response-200"></a> 976 | **Response 200** 977 | 978 | |Name|Description|Schema| 979 | |---|---|---| 980 | |**asset** <br>*required*||[Asset](#asset)| 981 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 982 | 983 | <a name="lookupassetbyid-response-400"></a> 984 | **Response 400** 985 | 986 | |Name|Schema| 987 | |---|---| 988 | |**data** <br>*optional*|object| 989 | |**message** <br>*required*|string| 990 | 991 | <a name="lookupassetbyid-response-404"></a> 992 | **Response 404** 993 | 994 | |Name|Schema| 995 | |---|---| 996 | |**data** <br>*optional*|object| 997 | |**message** <br>*required*|string| 998 | 999 | <a name="lookupassetbyid-response-500"></a> 1000 | **Response 500** 1001 | 1002 | |Name|Schema| 1003 | |---|---| 1004 | |**data** <br>*optional*|object| 1005 | |**message** <br>*required*|string| 1006 | 1007 | 1008 | **Consumes** 1009 | 1010 | * `application/json` 1011 | 1012 | 1013 | **Produces** 1014 | 1015 | * `application/json` 1016 | 1017 | 1018 | **Tags** 1019 | 1020 | * lookup 1021 | 1022 | 1023 | <a name="lookupassetbalances"></a> 1024 | ### GET /v2/assets/{asset-id}/balances 1025 | 1026 | **Description** 1027 | Lookup the list of accounts who hold this asset 1028 | 1029 | 1030 | **Parameters** 1031 | 1032 | |Type|Name|Description|Schema| 1033 | |---|---|---|---| 1034 | |**Path**|**asset-id** <br>*required*||integer| 1035 | |**Query**|**currency-greater-than** <br>*optional*|Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 1036 | |**Query**|**currency-less-than** <br>*optional*|Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 1037 | |**Query**|**include-all** <br>*optional*|Include all items including closed accounts, deleted applications, destroyed assets, opted-out asset holdings, and closed-out application localstates.|boolean| 1038 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 1039 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 1040 | 1041 | 1042 | **Responses** 1043 | 1044 | |HTTP Code|Description|Schema| 1045 | |---|---|---| 1046 | |**200**|(empty)|[Response 200](#lookupassetbalances-response-200)| 1047 | |**400**|Response for errors|[Response 400](#lookupassetbalances-response-400)| 1048 | |**500**|Response for errors|[Response 500](#lookupassetbalances-response-500)| 1049 | 1050 | <a name="lookupassetbalances-response-200"></a> 1051 | **Response 200** 1052 | 1053 | |Name|Description|Schema| 1054 | |---|---|---| 1055 | |**balances** <br>*required*||< [MiniAssetHolding](#miniassetholding) > array| 1056 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 1057 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 1058 | 1059 | <a name="lookupassetbalances-response-400"></a> 1060 | **Response 400** 1061 | 1062 | |Name|Schema| 1063 | |---|---| 1064 | |**data** <br>*optional*|object| 1065 | |**message** <br>*required*|string| 1066 | 1067 | <a name="lookupassetbalances-response-500"></a> 1068 | **Response 500** 1069 | 1070 | |Name|Schema| 1071 | |---|---| 1072 | |**data** <br>*optional*|object| 1073 | |**message** <br>*required*|string| 1074 | 1075 | 1076 | **Consumes** 1077 | 1078 | * `application/json` 1079 | 1080 | 1081 | **Produces** 1082 | 1083 | * `application/json` 1084 | 1085 | 1086 | **Tags** 1087 | 1088 | * lookup 1089 | 1090 | 1091 | <a name="lookupassettransactions"></a> 1092 | ### GET /v2/assets/{asset-id}/transactions 1093 | 1094 | **Description** 1095 | Lookup transactions for an asset. Transactions are returned oldest to newest. 1096 | 1097 | 1098 | **Parameters** 1099 | 1100 | |Type|Name|Description|Schema| 1101 | |---|---|---|---| 1102 | |**Path**|**asset-id** <br>*required*||integer| 1103 | |**Query**|**address** <br>*optional*|Only include transactions with this address in one of the transaction fields.|string| 1104 | |**Query**|**address-role** <br>*optional*|Combine with the address parameter to define what type of address to search for.|enum (sender, receiver, freeze-target)| 1105 | |**Query**|**after-time** <br>*optional*|Include results after the given time. Must be an RFC 3339 formatted string.|string (date-time)| 1106 | |**Query**|**before-time** <br>*optional*|Include results before the given time. Must be an RFC 3339 formatted string.|string (date-time)| 1107 | |**Query**|**currency-greater-than** <br>*optional*|Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 1108 | |**Query**|**currency-less-than** <br>*optional*|Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 1109 | |**Query**|**exclude-close-to** <br>*optional*|Combine with address and address-role parameters to define what type of address to search for. The close to fields are normally treated as a receiver, if you would like to exclude them set this parameter to true.|boolean| 1110 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 1111 | |**Query**|**max-round** <br>*optional*|Include results at or before the specified max-round.|integer| 1112 | |**Query**|**min-round** <br>*optional*|Include results at or after the specified min-round.|integer| 1113 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 1114 | |**Query**|**note-prefix** <br>*optional*|Specifies a prefix which must be contained in the note field.|string| 1115 | |**Query**|**rekey-to** <br>*optional*|Include results which include the rekey-to field.|boolean| 1116 | |**Query**|**round** <br>*optional*|Include results for the specified round.|integer| 1117 | |**Query**|**sig-type** <br>*optional*|SigType filters just results using the specified type of signature:<br>* sig - Standard<br>* msig - MultiSig<br>* lsig - LogicSig|enum (sig, msig, lsig)| 1118 | |**Query**|**tx-type** <br>*optional*||enum (pay, keyreg, acfg, axfer, afrz, appl, stpf)| 1119 | |**Query**|**txid** <br>*optional*|Lookup the specific transaction by ID.|string| 1120 | 1121 | 1122 | **Responses** 1123 | 1124 | |HTTP Code|Description|Schema| 1125 | |---|---|---| 1126 | |**200**|(empty)|[Response 200](#lookupassettransactions-response-200)| 1127 | |**400**|Response for errors|[Response 400](#lookupassettransactions-response-400)| 1128 | |**500**|Response for errors|[Response 500](#lookupassettransactions-response-500)| 1129 | 1130 | <a name="lookupassettransactions-response-200"></a> 1131 | **Response 200** 1132 | 1133 | |Name|Description|Schema| 1134 | |---|---|---| 1135 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 1136 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 1137 | |**transactions** <br>*required*||< [Transaction](#transaction) > array| 1138 | 1139 | <a name="lookupassettransactions-response-400"></a> 1140 | **Response 400** 1141 | 1142 | |Name|Schema| 1143 | |---|---| 1144 | |**data** <br>*optional*|object| 1145 | |**message** <br>*required*|string| 1146 | 1147 | <a name="lookupassettransactions-response-500"></a> 1148 | **Response 500** 1149 | 1150 | |Name|Schema| 1151 | |---|---| 1152 | |**data** <br>*optional*|object| 1153 | |**message** <br>*required*|string| 1154 | 1155 | 1156 | **Consumes** 1157 | 1158 | * `application/json` 1159 | 1160 | 1161 | **Produces** 1162 | 1163 | * `application/json` 1164 | 1165 | 1166 | **Tags** 1167 | 1168 | * lookup 1169 | 1170 | 1171 | <a name="lookupblock"></a> 1172 | ### GET /v2/blocks/{round-number} 1173 | 1174 | **Description** 1175 | Lookup block. 1176 | 1177 | 1178 | **Parameters** 1179 | 1180 | |Type|Name|Description|Schema| 1181 | |---|---|---|---| 1182 | |**Path**|**round-number** <br>*required*|Round number|integer| 1183 | |**Query**|**header-only** <br>*optional*|Header only flag. When this is set to true, returned block does not contain the transactions|boolean| 1184 | 1185 | 1186 | **Responses** 1187 | 1188 | |HTTP Code|Description|Schema| 1189 | |---|---|---| 1190 | |**200**|(empty)|[Block](#block)| 1191 | |**404**|Response for errors|[Response 404](#lookupblock-response-404)| 1192 | |**500**|Response for errors|[Response 500](#lookupblock-response-500)| 1193 | 1194 | <a name="lookupblock-response-404"></a> 1195 | **Response 404** 1196 | 1197 | |Name|Schema| 1198 | |---|---| 1199 | |**data** <br>*optional*|object| 1200 | |**message** <br>*required*|string| 1201 | 1202 | <a name="lookupblock-response-500"></a> 1203 | **Response 500** 1204 | 1205 | |Name|Schema| 1206 | |---|---| 1207 | |**data** <br>*optional*|object| 1208 | |**message** <br>*required*|string| 1209 | 1210 | 1211 | **Consumes** 1212 | 1213 | * `application/json` 1214 | 1215 | 1216 | **Produces** 1217 | 1218 | * `application/json` 1219 | 1220 | 1221 | **Tags** 1222 | 1223 | * lookup 1224 | 1225 | 1226 | <a name="searchfortransactions"></a> 1227 | ### GET /v2/transactions 1228 | 1229 | **Description** 1230 | Search for transactions. Transactions are returned oldest to newest unless the address parameter is used, in which case results are returned newest to oldest. 1231 | 1232 | 1233 | **Parameters** 1234 | 1235 | |Type|Name|Description|Schema| 1236 | |---|---|---|---| 1237 | |**Query**|**address** <br>*optional*|Only include transactions with this address in one of the transaction fields.|string| 1238 | |**Query**|**address-role** <br>*optional*|Combine with the address parameter to define what type of address to search for.|enum (sender, receiver, freeze-target)| 1239 | |**Query**|**after-time** <br>*optional*|Include results after the given time. Must be an RFC 3339 formatted string.|string (date-time)| 1240 | |**Query**|**application-id** <br>*optional*|Application ID|integer| 1241 | |**Query**|**asset-id** <br>*optional*|Asset ID|integer| 1242 | |**Query**|**before-time** <br>*optional*|Include results before the given time. Must be an RFC 3339 formatted string.|string (date-time)| 1243 | |**Query**|**currency-greater-than** <br>*optional*|Results should have an amount greater than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 1244 | |**Query**|**currency-less-than** <br>*optional*|Results should have an amount less than this value. MicroAlgos are the default currency unless an asset-id is provided, in which case the asset will be used.|integer| 1245 | |**Query**|**exclude-close-to** <br>*optional*|Combine with address and address-role parameters to define what type of address to search for. The close to fields are normally treated as a receiver, if you would like to exclude them set this parameter to true.|boolean| 1246 | |**Query**|**limit** <br>*optional*|Maximum number of results to return. There could be additional pages even if the limit is not reached.|integer| 1247 | |**Query**|**max-round** <br>*optional*|Include results at or before the specified max-round.|integer| 1248 | |**Query**|**min-round** <br>*optional*|Include results at or after the specified min-round.|integer| 1249 | |**Query**|**next** <br>*optional*|The next page of results. Use the next token provided by the previous results.|string| 1250 | |**Query**|**note-prefix** <br>*optional*|Specifies a prefix which must be contained in the note field.|string| 1251 | |**Query**|**rekey-to** <br>*optional*|Include results which include the rekey-to field.|boolean| 1252 | |**Query**|**round** <br>*optional*|Include results for the specified round.|integer| 1253 | |**Query**|**sig-type** <br>*optional*|SigType filters just results using the specified type of signature:<br>* sig - Standard<br>* msig - MultiSig<br>* lsig - LogicSig|enum (sig, msig, lsig)| 1254 | |**Query**|**tx-type** <br>*optional*||enum (pay, keyreg, acfg, axfer, afrz, appl, stpf)| 1255 | |**Query**|**txid** <br>*optional*|Lookup the specific transaction by ID.|string| 1256 | 1257 | 1258 | **Responses** 1259 | 1260 | |HTTP Code|Description|Schema| 1261 | |---|---|---| 1262 | |**200**|(empty)|[Response 200](#searchfortransactions-response-200)| 1263 | |**400**|Response for errors|[Response 400](#searchfortransactions-response-400)| 1264 | |**500**|Response for errors|[Response 500](#searchfortransactions-response-500)| 1265 | 1266 | <a name="searchfortransactions-response-200"></a> 1267 | **Response 200** 1268 | 1269 | |Name|Description|Schema| 1270 | |---|---|---| 1271 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 1272 | |**next-token** <br>*optional*|Used for pagination, when making another request provide this token with the next parameter.|string| 1273 | |**transactions** <br>*required*||< [Transaction](#transaction) > array| 1274 | 1275 | <a name="searchfortransactions-response-400"></a> 1276 | **Response 400** 1277 | 1278 | |Name|Schema| 1279 | |---|---| 1280 | |**data** <br>*optional*|object| 1281 | |**message** <br>*required*|string| 1282 | 1283 | <a name="searchfortransactions-response-500"></a> 1284 | **Response 500** 1285 | 1286 | |Name|Schema| 1287 | |---|---| 1288 | |**data** <br>*optional*|object| 1289 | |**message** <br>*required*|string| 1290 | 1291 | 1292 | **Consumes** 1293 | 1294 | * `application/json` 1295 | 1296 | 1297 | **Produces** 1298 | 1299 | * `application/json` 1300 | 1301 | 1302 | **Tags** 1303 | 1304 | * search 1305 | 1306 | 1307 | <a name="lookuptransaction"></a> 1308 | ### GET /v2/transactions/{txid} 1309 | 1310 | **Description** 1311 | Lookup a single transaction. 1312 | 1313 | 1314 | **Parameters** 1315 | 1316 | |Type|Name|Schema| 1317 | |---|---|---| 1318 | |**Path**|**txid** <br>*required*|string| 1319 | 1320 | 1321 | **Responses** 1322 | 1323 | |HTTP Code|Description|Schema| 1324 | |---|---|---| 1325 | |**200**|(empty)|[Response 200](#lookuptransaction-response-200)| 1326 | |**400**|Response for errors|[Response 400](#lookuptransaction-response-400)| 1327 | |**404**|Response for errors|[Response 404](#lookuptransaction-response-404)| 1328 | |**500**|Response for errors|[Response 500](#lookuptransaction-response-500)| 1329 | 1330 | <a name="lookuptransaction-response-200"></a> 1331 | **Response 200** 1332 | 1333 | |Name|Description|Schema| 1334 | |---|---|---| 1335 | |**current-round** <br>*required*|Round at which the results were computed.|integer| 1336 | |**transaction** <br>*required*||[Transaction](#transaction)| 1337 | 1338 | <a name="lookuptransaction-response-400"></a> 1339 | **Response 400** 1340 | 1341 | |Name|Schema| 1342 | |---|---| 1343 | |**data** <br>*optional*|object| 1344 | |**message** <br>*required*|string| 1345 | 1346 | <a name="lookuptransaction-response-404"></a> 1347 | **Response 404** 1348 | 1349 | |Name|Schema| 1350 | |---|---| 1351 | |**data** <br>*optional*|object| 1352 | |**message** <br>*required*|string| 1353 | 1354 | <a name="lookuptransaction-response-500"></a> 1355 | **Response 500** 1356 | 1357 | |Name|Schema| 1358 | |---|---| 1359 | |**data** <br>*optional*|object| 1360 | |**message** <br>*required*|string| 1361 | 1362 | 1363 | **Consumes** 1364 | 1365 | * `application/json` 1366 | 1367 | 1368 | **Produces** 1369 | 1370 | * `application/json` 1371 | 1372 | 1373 | **Tags** 1374 | 1375 | * lookup 1376 | 1377 | 1378 | 1379 | 1380 | <a name="definitions"></a> 1381 | ## Definitions 1382 | 1383 | <a name="account"></a> 1384 | ### Account 1385 | Account information at a given round. 1386 | 1387 | Definition: 1388 | data/basics/userBalance.go : AccountData 1389 | 1390 | 1391 | |Name|Description|Schema| 1392 | |---|---|---| 1393 | |**address** <br>*required*|the account public key|string| 1394 | |**amount** <br>*required*|total number of MicroAlgos in the account|integer| 1395 | |**amount-without-pending-rewards** <br>*required*|specifies the amount of MicroAlgos in the account, without the pending rewards.|integer| 1396 | |**apps-local-state** <br>*optional*|application local data stored in this account.<br><br>Note the raw object uses `map[int] -> AppLocalState` for this type.|< [ApplicationLocalState](#applicationlocalstate) > array| 1397 | |**apps-total-extra-pages** <br>*optional*|the sum of all extra application program pages for this account.|integer| 1398 | |**apps-total-schema** <br>*optional*|the sum of all of the local schemas and global schemas in this account.<br><br>Note: the raw account uses `StateSchema` for this type.|[ApplicationStateSchema](#applicationstateschema)| 1399 | |**assets** <br>*optional*|assets held by this account.<br><br>Note the raw object uses `map[int] -> AssetHolding` for this type.|< [AssetHolding](#assetholding) > array| 1400 | |**auth-addr** <br>*optional*|The address against which signing should be checked. If empty, the address of the current account is used. This field can be updated in any transaction by setting the RekeyTo field.|string| 1401 | |**closed-at-round** <br>*optional*|Round during which this account was most recently closed.|integer| 1402 | |**created-apps** <br>*optional*|parameters of applications created by this account including app global data.<br><br>Note: the raw account uses `map[int] -> AppParams` for this type.|< [Application](#application) > array| 1403 | |**created-assets** <br>*optional*|parameters of assets created by this account.<br><br>Note: the raw account uses `map[int] -> Asset` for this type.|< [Asset](#asset) > array| 1404 | |**created-at-round** <br>*optional*|Round during which this account first appeared in a transaction.|integer| 1405 | |**deleted** <br>*optional*|Whether or not this account is currently closed.|boolean| 1406 | |**incentive-eligible** <br>*optional*|can the account receive block incentives if its balance is in range at proposal time.|boolean| 1407 | |**last-heartbeat** <br>*optional*|The round in which this account last went online, or explicitly renewed their online status.|integer| 1408 | |**last-proposed** <br>*optional*|The round in which this account last proposed the block.|integer| 1409 | |**min-balance** <br>*required*|MicroAlgo balance required by the account.<br><br>The requirement grows based on asset and application usage.|integer| 1410 | |**participation** <br>*optional*||[AccountParticipation](#accountparticipation)| 1411 | |**pending-rewards** <br>*required*|amount of MicroAlgos of pending rewards in this account.|integer| 1412 | |**reward-base** <br>*optional*|used as part of the rewards computation. Only applicable to accounts which are participating.|integer| 1413 | |**rewards** <br>*required*|total rewards of MicroAlgos the account has received, including pending rewards.|integer| 1414 | |**round** <br>*required*|The round for which this information is relevant.|integer| 1415 | |**sig-type** <br>*optional*|the type of signature used by this account, must be one of:<br>* sig<br>* msig<br>* lsig<br>* or null if unknown|enum (sig, msig, lsig)| 1416 | |**status** <br>*required*|voting status of the account's MicroAlgos<br>* Offline - indicates that the associated account is delegated.<br>* Online - indicates that the associated account used as part of the delegation pool.<br>* NotParticipating - indicates that the associated account is neither a delegator nor a delegate.|string| 1417 | |**total-apps-opted-in** <br>*required*|The count of all applications that have been opted in, equivalent to the count of application local data (AppLocalState objects) stored in this account.|integer| 1418 | |**total-assets-opted-in** <br>*required*|The count of all assets that have been opted in, equivalent to the count of AssetHolding objects held by this account.|integer| 1419 | |**total-box-bytes** <br>*required*|For app-accounts only. The total number of bytes allocated for the keys and values of boxes which belong to the associated application.|integer| 1420 | |**total-boxes** <br>*required*|For app-accounts only. The total number of boxes which belong to the associated application.|integer| 1421 | |**total-created-apps** <br>*required*|The count of all apps (AppParams objects) created by this account.|integer| 1422 | |**total-created-assets** <br>*required*|The count of all assets (AssetParams objects) created by this account.|integer| 1423 | 1424 | 1425 | <a name="accountparticipation"></a> 1426 | ### AccountParticipation 1427 | AccountParticipation describes the parameters used by this account in consensus protocol. 1428 | 1429 | 1430 | |Name|Description|Schema| 1431 | |---|---|---| 1432 | |**selection-participation-key** <br>*required*|Selection public key (if any) currently registered for this round. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1433 | |**state-proof-key** <br>*optional*|Root of the state proof key (if any) <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1434 | |**vote-first-valid** <br>*required*|First round for which this participation is valid.|integer| 1435 | |**vote-key-dilution** <br>*required*|Number of subkeys in each batch of participation keys.|integer| 1436 | |**vote-last-valid** <br>*required*|Last round for which this participation is valid.|integer| 1437 | |**vote-participation-key** <br>*required*|root participation public key (if any) currently registered for this round. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1438 | 1439 | 1440 | <a name="accountstatedelta"></a> 1441 | ### AccountStateDelta 1442 | Application state delta. 1443 | 1444 | 1445 | |Name|Schema| 1446 | |---|---| 1447 | |**address** <br>*required*|string| 1448 | |**delta** <br>*required*|[StateDelta](#statedelta)| 1449 | 1450 | 1451 | <a name="application"></a> 1452 | ### Application 1453 | Application index and its parameters 1454 | 1455 | 1456 | |Name|Description|Schema| 1457 | |---|---|---| 1458 | |**created-at-round** <br>*optional*|Round when this application was created.|integer| 1459 | |**deleted** <br>*optional*|Whether or not this application is currently deleted.|boolean| 1460 | |**deleted-at-round** <br>*optional*|Round when this application was deleted.|integer| 1461 | |**id** <br>*required*|application index.|integer| 1462 | |**params** <br>*required*|application parameters.|[ApplicationParams](#applicationparams)| 1463 | 1464 | 1465 | <a name="applicationlocalstate"></a> 1466 | ### ApplicationLocalState 1467 | Stores local state associated with an application. 1468 | 1469 | 1470 | |Name|Description|Schema| 1471 | |---|---|---| 1472 | |**closed-out-at-round** <br>*optional*|Round when account closed out of the application.|integer| 1473 | |**deleted** <br>*optional*|Whether or not the application local state is currently deleted from its account.|boolean| 1474 | |**id** <br>*required*|The application which this local state is for.|integer| 1475 | |**key-value** <br>*optional*|storage.|[TealKeyValueStore](#tealkeyvaluestore)| 1476 | |**opted-in-at-round** <br>*optional*|Round when the account opted into the application.|integer| 1477 | |**schema** <br>*required*|schema.|[ApplicationStateSchema](#applicationstateschema)| 1478 | 1479 | 1480 | <a name="applicationlogdata"></a> 1481 | ### ApplicationLogData 1482 | Stores the global information associated with an application. 1483 | 1484 | 1485 | |Name|Description|Schema| 1486 | |---|---|---| 1487 | |**logs** <br>*required*|Logs for the application being executed by the transaction.|< string (byte) > array| 1488 | |**txid** <br>*required*|Transaction ID|string| 1489 | 1490 | 1491 | <a name="applicationparams"></a> 1492 | ### ApplicationParams 1493 | Stores the global information associated with an application. 1494 | 1495 | 1496 | |Name|Description|Schema| 1497 | |---|---|---| 1498 | |**approval-program** <br>*required*|approval program. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1499 | |**clear-state-program** <br>*required*|clear state program. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1500 | |**creator** <br>*optional*|The address that created this application. This is the address where the parameters and global state for this application can be found.|string| 1501 | |**extra-program-pages** <br>*optional*|the number of extra program pages available to this app.|integer| 1502 | |**global-state** <br>*optional*|global state|[TealKeyValueStore](#tealkeyvaluestore)| 1503 | |**global-state-schema** <br>*optional*|global schema|[ApplicationStateSchema](#applicationstateschema)| 1504 | |**local-state-schema** <br>*optional*|local schema|[ApplicationStateSchema](#applicationstateschema)| 1505 | 1506 | 1507 | <a name="applicationstateschema"></a> 1508 | ### ApplicationStateSchema 1509 | Specifies maximums on the number of each type that may be stored. 1510 | 1511 | 1512 | |Name|Description|Schema| 1513 | |---|---|---| 1514 | |**num-byte-slice** <br>*required*|number of byte slices.|integer| 1515 | |**num-uint** <br>*required*|number of uints.|integer| 1516 | 1517 | 1518 | <a name="asset"></a> 1519 | ### Asset 1520 | Specifies both the unique identifier and the parameters for an asset 1521 | 1522 | 1523 | |Name|Description|Schema| 1524 | |---|---|---| 1525 | |**created-at-round** <br>*optional*|Round during which this asset was created.|integer| 1526 | |**deleted** <br>*optional*|Whether or not this asset is currently deleted.|boolean| 1527 | |**destroyed-at-round** <br>*optional*|Round during which this asset was destroyed.|integer| 1528 | |**index** <br>*required*|unique asset identifier|integer| 1529 | |**params** <br>*required*||[AssetParams](#assetparams)| 1530 | 1531 | 1532 | <a name="assetholding"></a> 1533 | ### AssetHolding 1534 | Describes an asset held by an account. 1535 | 1536 | Definition: 1537 | data/basics/userBalance.go : AssetHolding 1538 | 1539 | 1540 | |Name|Description|Schema| 1541 | |---|---|---| 1542 | |**amount** <br>*required*|number of units held.|integer| 1543 | |**asset-id** <br>*required*|Asset ID of the holding.|integer| 1544 | |**deleted** <br>*optional*|Whether or not the asset holding is currently deleted from its account.|boolean| 1545 | |**is-frozen** <br>*required*|whether or not the holding is frozen.|boolean| 1546 | |**opted-in-at-round** <br>*optional*|Round during which the account opted into this asset holding.|integer| 1547 | |**opted-out-at-round** <br>*optional*|Round during which the account opted out of this asset holding.|integer| 1548 | 1549 | 1550 | <a name="assetparams"></a> 1551 | ### AssetParams 1552 | AssetParams specifies the parameters for an asset. 1553 | 1554 | \[apar\] when part of an AssetConfig transaction. 1555 | 1556 | Definition: 1557 | data/transactions/asset.go : AssetParams 1558 | 1559 | 1560 | |Name|Description|Schema| 1561 | |---|---|---| 1562 | |**clawback** <br>*optional*|Address of account used to clawback holdings of this asset. If empty, clawback is not permitted.|string| 1563 | |**creator** <br>*required*|The address that created this asset. This is the address where the parameters for this asset can be found, and also the address where unwanted asset units can be sent in the worst case.|string| 1564 | |**decimals** <br>*required*|The number of digits to use after the decimal point when displaying this asset. If 0, the asset is not divisible. If 1, the base unit of the asset is in tenths. If 2, the base unit of the asset is in hundredths, and so on. This value must be between 0 and 19 (inclusive). <br>**Minimum value** : `0` <br>**Maximum value** : `19`|integer| 1565 | |**default-frozen** <br>*optional*|Whether holdings of this asset are frozen by default.|boolean| 1566 | |**freeze** <br>*optional*|Address of account used to freeze holdings of this asset. If empty, freezing is not permitted.|string| 1567 | |**manager** <br>*optional*|Address of account used to manage the keys of this asset and to destroy it.|string| 1568 | |**metadata-hash** <br>*optional*|A commitment to some unspecified asset metadata. The format of this metadata is up to the application. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1569 | |**name** <br>*optional*|Name of this asset, as supplied by the creator. Included only when the asset name is composed of printable utf-8 characters.|string| 1570 | |**name-b64** <br>*optional*|Base64 encoded name of this asset, as supplied by the creator. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1571 | |**reserve** <br>*optional*|Address of account holding reserve (non-minted) units of this asset.|string| 1572 | |**total** <br>*required*|The total number of units of this asset.|integer| 1573 | |**unit-name** <br>*optional*|Name of a unit of this asset, as supplied by the creator. Included only when the name of a unit of this asset is composed of printable utf-8 characters.|string| 1574 | |**unit-name-b64** <br>*optional*|Base64 encoded name of a unit of this asset, as supplied by the creator. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1575 | |**url** <br>*optional*|URL where more information about the asset can be retrieved. Included only when the URL is composed of printable utf-8 characters.|string| 1576 | |**url-b64** <br>*optional*|Base64 encoded URL where more information about the asset can be retrieved. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1577 | 1578 | 1579 | <a name="block"></a> 1580 | ### Block 1581 | Block information. 1582 | 1583 | Definition: 1584 | data/bookkeeping/block.go : Block 1585 | 1586 | 1587 | |Name|Description|Schema| 1588 | |---|---|---| 1589 | |**bonus** <br>*optional*|the potential bonus payout for this block.|integer| 1590 | |**fees-collected** <br>*optional*|the sum of all fees paid by transactions in this block.|integer| 1591 | |**genesis-hash** <br>*required*|\[gh\] hash to which this block belongs. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1592 | |**genesis-id** <br>*required*|\[gen\] ID to which this block belongs.|string| 1593 | |**participation-updates** <br>*optional*||[ParticipationUpdates](#participationupdates)| 1594 | |**previous-block-hash** <br>*required*|\[prev\] Previous block hash. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1595 | |**proposer** <br>*optional*|the proposer of this block.|string| 1596 | |**proposer-payout** <br>*optional*|the actual amount transferred to the proposer from the fee sink.|integer| 1597 | |**rewards** <br>*optional*||[BlockRewards](#blockrewards)| 1598 | |**round** <br>*required*|\[rnd\] Current round on which this block was appended to the chain.|integer| 1599 | |**seed** <br>*required*|\[seed\] Sortition seed. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1600 | |**state-proof-tracking** <br>*optional*|Tracks the status of state proofs.|< [StateProofTracking](#stateprooftracking) > array| 1601 | |**timestamp** <br>*required*|\[ts\] Block creation timestamp in seconds since eposh|integer| 1602 | |**transactions** <br>*optional*|\[txns\] list of transactions corresponding to a given round.|< [Transaction](#transaction) > array| 1603 | |**transactions-root** <br>*required*|\[txn\] TransactionsRoot authenticates the set of transactions appearing in the block. More specifically, it's the root of a merkle tree whose leaves are the block's Txids, in lexicographic order. For the empty block, it's 0. Note that the TxnRoot does not authenticate the signatures on the transactions, only the transactions themselves. Two blocks with the same transactions but in a different order and with different signatures will have the same TxnRoot. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1604 | |**transactions-root-sha256** <br>*required*|\[txn256\] TransactionsRootSHA256 is an auxiliary TransactionRoot, built using a vector commitment instead of a merkle tree, and SHA256 hash function instead of the default SHA512_256. This commitment can be used on environments where only the SHA256 function exists. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1605 | |**txn-counter** <br>*optional*|\[tc\] TxnCounter counts the number of transactions committed in the ledger, from the time at which support for this feature was introduced.<br><br>Specifically, TxnCounter is the number of the next transaction that will be committed after this block. It is 0 when no transactions have ever been committed (since TxnCounter started being supported).|integer| 1606 | |**upgrade-state** <br>*optional*||[BlockUpgradeState](#blockupgradestate)| 1607 | |**upgrade-vote** <br>*optional*||[BlockUpgradeVote](#blockupgradevote)| 1608 | 1609 | 1610 | <a name="blockrewards"></a> 1611 | ### BlockRewards 1612 | Fields relating to rewards, 1613 | 1614 | 1615 | |Name|Description|Schema| 1616 | |---|---|---| 1617 | |**fee-sink** <br>*required*|\[fees\] accepts transaction fees, it can only spend to the incentive pool.|string| 1618 | |**rewards-calculation-round** <br>*required*|\[rwcalr\] number of leftover MicroAlgos after the distribution of rewards-rate MicroAlgos for every reward unit in the next round.|integer| 1619 | |**rewards-level** <br>*required*|\[earn\] How many rewards, in MicroAlgos, have been distributed to each RewardUnit of MicroAlgos since genesis.|integer| 1620 | |**rewards-pool** <br>*required*|\[rwd\] accepts periodic injections from the fee-sink and continually redistributes them as rewards.|string| 1621 | |**rewards-rate** <br>*required*|\[rate\] Number of new MicroAlgos added to the participation stake from rewards at the next round.|integer| 1622 | |**rewards-residue** <br>*required*|\[frac\] Number of leftover MicroAlgos after the distribution of RewardsRate/rewardUnits MicroAlgos for every reward unit in the next round.|integer| 1623 | 1624 | 1625 | <a name="blockupgradestate"></a> 1626 | ### BlockUpgradeState 1627 | Fields relating to a protocol upgrade. 1628 | 1629 | 1630 | |Name|Description|Schema| 1631 | |---|---|---| 1632 | |**current-protocol** <br>*required*|\[proto\] The current protocol version.|string| 1633 | |**next-protocol** <br>*optional*|\[nextproto\] The next proposed protocol version.|string| 1634 | |**next-protocol-approvals** <br>*optional*|\[nextyes\] Number of blocks which approved the protocol upgrade.|integer| 1635 | |**next-protocol-switch-on** <br>*optional*|\[nextswitch\] Round on which the protocol upgrade will take effect.|integer| 1636 | |**next-protocol-vote-before** <br>*optional*|\[nextbefore\] Deadline round for this protocol upgrade (No votes will be consider after this round).|integer| 1637 | 1638 | 1639 | <a name="blockupgradevote"></a> 1640 | ### BlockUpgradeVote 1641 | Fields relating to voting for a protocol upgrade. 1642 | 1643 | 1644 | |Name|Description|Schema| 1645 | |---|---|---| 1646 | |**upgrade-approve** <br>*optional*|\[upgradeyes\] Indicates a yes vote for the current proposal.|boolean| 1647 | |**upgrade-delay** <br>*optional*|\[upgradedelay\] Indicates the time between acceptance and execution.|integer| 1648 | |**upgrade-propose** <br>*optional*|\[upgradeprop\] Indicates a proposed upgrade.|string| 1649 | 1650 | 1651 | <a name="box"></a> 1652 | ### Box 1653 | Box name and its content. 1654 | 1655 | 1656 | |Name|Description|Schema| 1657 | |---|---|---| 1658 | |**name** <br>*required*|\[name\] box name, base64 encoded <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1659 | |**round** <br>*required*|The round for which this information is relevant|integer| 1660 | |**value** <br>*required*|\[value\] box value, base64 encoded. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1661 | 1662 | 1663 | <a name="boxdescriptor"></a> 1664 | ### BoxDescriptor 1665 | Box descriptor describes an app box without a value. 1666 | 1667 | 1668 | |Name|Description|Schema| 1669 | |---|---|---| 1670 | |**name** <br>*required*|Base64 encoded box name <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1671 | 1672 | 1673 | <a name="evaldelta"></a> 1674 | ### EvalDelta 1675 | Represents a TEAL value delta. 1676 | 1677 | 1678 | |Name|Description|Schema| 1679 | |---|---|---| 1680 | |**action** <br>*required*|\[at\] delta action.|integer| 1681 | |**bytes** <br>*optional*|\[bs\] bytes value.|string| 1682 | |**uint** <br>*optional*|\[ui\] uint value.|integer| 1683 | 1684 | 1685 | <a name="evaldeltakeyvalue"></a> 1686 | ### EvalDeltaKeyValue 1687 | Key-value pairs for StateDelta. 1688 | 1689 | 1690 | |Name|Schema| 1691 | |---|---| 1692 | |**key** <br>*required*|string| 1693 | |**value** <br>*required*|[EvalDelta](#evaldelta)| 1694 | 1695 | 1696 | <a name="hashfactory"></a> 1697 | ### HashFactory 1698 | 1699 | |Name|Description|Schema| 1700 | |---|---|---| 1701 | |**hash-type** <br>*optional*|\[t\]|integer| 1702 | 1703 | 1704 | <a name="hashtype"></a> 1705 | ### Hashtype 1706 | The type of hash function used to create the proof, must be one of: 1707 | * sha512_256 1708 | * sha256 1709 | 1710 | *Type* : enum (sha512_256, sha256) 1711 | 1712 | 1713 | <a name="healthcheck"></a> 1714 | ### HealthCheck 1715 | A health check response. 1716 | 1717 | 1718 | |Name|Description|Schema| 1719 | |---|---|---| 1720 | |**data** <br>*optional*||object| 1721 | |**db-available** <br>*required*||boolean| 1722 | |**errors** <br>*optional*||< string > array| 1723 | |**is-migrating** <br>*required*||boolean| 1724 | |**message** <br>*required*||string| 1725 | |**round** <br>*required*||integer| 1726 | |**version** <br>*required*|Current version.|string| 1727 | 1728 | 1729 | <a name="indexerstateproofmessage"></a> 1730 | ### IndexerStateProofMessage 1731 | 1732 | |Name|Description|Schema| 1733 | |---|---|---| 1734 | |**block-headers-commitment** <br>*optional*|\[b\] <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1735 | |**first-attested-round** <br>*optional*|\[f\]|integer| 1736 | |**latest-attested-round** <br>*optional*|\[l\]|integer| 1737 | |**ln-proven-weight** <br>*optional*|\[P\]|integer| 1738 | |**voters-commitment** <br>*optional*|\[v\] <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1739 | 1740 | 1741 | <a name="merklearrayproof"></a> 1742 | ### MerkleArrayProof 1743 | 1744 | |Name|Description|Schema| 1745 | |---|---|---| 1746 | |**hash-factory** <br>*optional*||[HashFactory](#hashfactory)| 1747 | |**path** <br>*optional*|\[pth\]|< string (byte) > array| 1748 | |**tree-depth** <br>*optional*|\[td\]|integer| 1749 | 1750 | 1751 | <a name="miniassetholding"></a> 1752 | ### MiniAssetHolding 1753 | A simplified version of AssetHolding 1754 | 1755 | 1756 | |Name|Description|Schema| 1757 | |---|---|---| 1758 | |**address** <br>*required*||string| 1759 | |**amount** <br>*required*||integer| 1760 | |**deleted** <br>*optional*|Whether or not this asset holding is currently deleted from its account.|boolean| 1761 | |**is-frozen** <br>*required*||boolean| 1762 | |**opted-in-at-round** <br>*optional*|Round during which the account opted into the asset.|integer| 1763 | |**opted-out-at-round** <br>*optional*|Round during which the account opted out of the asset.|integer| 1764 | 1765 | 1766 | <a name="oncompletion"></a> 1767 | ### OnCompletion 1768 | \[apan\] defines the what additional actions occur with the transaction. 1769 | 1770 | Valid types: 1771 | * noop 1772 | * optin 1773 | * closeout 1774 | * clear 1775 | * update 1776 | * update 1777 | * delete 1778 | 1779 | *Type* : enum (noop, optin, closeout, clear, update, delete) 1780 | 1781 | 1782 | <a name="participationupdates"></a> 1783 | ### ParticipationUpdates 1784 | Participation account data that needs to be checked/acted on by the network. 1785 | 1786 | 1787 | |Name|Description|Schema| 1788 | |---|---|---| 1789 | |**absent-participation-accounts** <br>*optional*|\[partupabs\] a list of online accounts that need to be suspended.|< string > array| 1790 | |**expired-participation-accounts** <br>*optional*|\[partupdrmv\] a list of online accounts that needs to be converted to offline since their participation key expired.|< string > array| 1791 | 1792 | 1793 | <a name="statedelta"></a> 1794 | ### StateDelta 1795 | Application state delta. 1796 | 1797 | *Type* : < [EvalDeltaKeyValue](#evaldeltakeyvalue) > array 1798 | 1799 | 1800 | <a name="stateprooffields"></a> 1801 | ### StateProofFields 1802 | \[sp\] represents a state proof. 1803 | 1804 | Definition: 1805 | crypto/stateproof/structs.go : StateProof 1806 | 1807 | 1808 | |Name|Description|Schema| 1809 | |---|---|---| 1810 | |**part-proofs** <br>*optional*|\[P\]|[MerkleArrayProof](#merklearrayproof)| 1811 | |**positions-to-reveal** <br>*optional*|\[pr\] Sequence of reveal positions.|< integer > array| 1812 | |**reveals** <br>*optional*|\[r\] Note that this is actually stored as a map[uint64] - Reveal in the actual msgp|< [StateProofReveal](#stateproofreveal) > array| 1813 | |**salt-version** <br>*optional*|\[v\] Salt version of the merkle signature.|integer| 1814 | |**sig-commit** <br>*optional*|\[c\] <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1815 | |**sig-proofs** <br>*optional*|\[S\]|[MerkleArrayProof](#merklearrayproof)| 1816 | |**signed-weight** <br>*optional*|\[w\]|integer| 1817 | 1818 | 1819 | <a name="stateproofparticipant"></a> 1820 | ### StateProofParticipant 1821 | 1822 | |Name|Description|Schema| 1823 | |---|---|---| 1824 | |**verifier** <br>*optional*|\[p\]|[StateProofVerifier](#stateproofverifier)| 1825 | |**weight** <br>*optional*|\[w\]|integer| 1826 | 1827 | 1828 | <a name="stateproofreveal"></a> 1829 | ### StateProofReveal 1830 | 1831 | |Name|Description|Schema| 1832 | |---|---|---| 1833 | |**participant** <br>*optional*|\[p\]|[StateProofParticipant](#stateproofparticipant)| 1834 | |**position** <br>*optional*|The position in the signature and participants arrays corresponding to this entry.|integer| 1835 | |**sig-slot** <br>*optional*|\[s\]|[StateProofSigSlot](#stateproofsigslot)| 1836 | 1837 | 1838 | <a name="stateproofsigslot"></a> 1839 | ### StateProofSigSlot 1840 | 1841 | |Name|Description|Schema| 1842 | |---|---|---| 1843 | |**lower-sig-weight** <br>*optional*|\[l\] The total weight of signatures in the lower-numbered slots.|integer| 1844 | |**signature** <br>*optional*||[StateProofSignature](#stateproofsignature)| 1845 | 1846 | 1847 | <a name="stateproofsignature"></a> 1848 | ### StateProofSignature 1849 | 1850 | |Name|Description|Schema| 1851 | |---|---|---| 1852 | |**falcon-signature** <br>*optional*|**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1853 | |**merkle-array-index** <br>*optional*||integer| 1854 | |**proof** <br>*optional*||[MerkleArrayProof](#merklearrayproof)| 1855 | |**verifying-key** <br>*optional*|\[vkey\] <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1856 | 1857 | 1858 | <a name="stateprooftracking"></a> 1859 | ### StateProofTracking 1860 | 1861 | |Name|Description|Schema| 1862 | |---|---|---| 1863 | |**next-round** <br>*optional*|\[n\] Next round for which we will accept a state proof transaction.|integer| 1864 | |**online-total-weight** <br>*optional*|\[t\] The total number of microalgos held by the online accounts during the StateProof round.|integer| 1865 | |**type** <br>*optional*|State Proof Type. Note the raw object uses map with this as key.|integer| 1866 | |**voters-commitment** <br>*optional*|\[v\] Root of a vector commitment containing online accounts that will help sign the proof. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1867 | 1868 | 1869 | <a name="stateproofverifier"></a> 1870 | ### StateProofVerifier 1871 | 1872 | |Name|Description|Schema| 1873 | |---|---|---| 1874 | |**commitment** <br>*optional*|\[cmt\] Represents the root of the vector commitment tree. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1875 | |**key-lifetime** <br>*optional*|\[lf\] Key lifetime.|integer| 1876 | 1877 | 1878 | <a name="stateschema"></a> 1879 | ### StateSchema 1880 | Represents a \[apls\] local-state or \[apgs\] global-state schema. These schemas determine how much storage may be used in a local-state or global-state for an application. The more space used, the larger minimum balance must be maintained in the account holding the data. 1881 | 1882 | 1883 | |Name|Description|Schema| 1884 | |---|---|---| 1885 | |**num-byte-slice** <br>*required*|Maximum number of TEAL byte slices that may be stored in the key/value store.|integer| 1886 | |**num-uint** <br>*required*|Maximum number of TEAL uints that may be stored in the key/value store.|integer| 1887 | 1888 | 1889 | <a name="tealkeyvalue"></a> 1890 | ### TealKeyValue 1891 | Represents a key-value pair in an application store. 1892 | 1893 | 1894 | |Name|Schema| 1895 | |---|---| 1896 | |**key** <br>*required*|string| 1897 | |**value** <br>*required*|[TealValue](#tealvalue)| 1898 | 1899 | 1900 | <a name="tealkeyvaluestore"></a> 1901 | ### TealKeyValueStore 1902 | Represents a key-value store for use in an application. 1903 | 1904 | *Type* : < [TealKeyValue](#tealkeyvalue) > array 1905 | 1906 | 1907 | <a name="tealvalue"></a> 1908 | ### TealValue 1909 | Represents a TEAL value. 1910 | 1911 | 1912 | |Name|Description|Schema| 1913 | |---|---|---| 1914 | |**bytes** <br>*required*|bytes value.|string| 1915 | |**type** <br>*required*|type of the value. Value `1` refers to **bytes**, value `2` refers to **uint**|integer| 1916 | |**uint** <br>*required*|uint value.|integer| 1917 | 1918 | 1919 | <a name="transaction"></a> 1920 | ### Transaction 1921 | Contains all fields common to all transactions and serves as an envelope to all transactions type. Represents both regular and inner transactions. 1922 | 1923 | Definition: 1924 | data/transactions/signedtxn.go : SignedTxn 1925 | data/transactions/transaction.go : Transaction 1926 | 1927 | 1928 | |Name|Description|Schema| 1929 | |---|---|---| 1930 | |**application-transaction** <br>*optional*||[TransactionApplication](#transactionapplication)| 1931 | |**asset-config-transaction** <br>*optional*||[TransactionAssetConfig](#transactionassetconfig)| 1932 | |**asset-freeze-transaction** <br>*optional*||[TransactionAssetFreeze](#transactionassetfreeze)| 1933 | |**asset-transfer-transaction** <br>*optional*||[TransactionAssetTransfer](#transactionassettransfer)| 1934 | |**auth-addr** <br>*optional*|\[sgnr\] this is included with signed transactions when the signing address does not equal the sender. The backend can use this to ensure that auth addr is equal to the accounts auth addr.|string| 1935 | |**close-rewards** <br>*optional*|\[rc\] rewards applied to close-remainder-to account.|integer| 1936 | |**closing-amount** <br>*optional*|\[ca\] closing amount for transaction.|integer| 1937 | |**confirmed-round** <br>*optional*|Round when the transaction was confirmed.|integer| 1938 | |**created-application-index** <br>*optional*|Specifies an application index (ID) if an application was created with this transaction.|integer| 1939 | |**created-asset-index** <br>*optional*|Specifies an asset index (ID) if an asset was created with this transaction.|integer| 1940 | |**fee** <br>*required*|\[fee\] Transaction fee.|integer| 1941 | |**first-valid** <br>*required*|\[fv\] First valid round for this transaction.|integer| 1942 | |**genesis-hash** <br>*optional*|\[gh\] Hash of genesis block. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1943 | |**genesis-id** <br>*optional*|\[gen\] genesis block ID.|string| 1944 | |**global-state-delta** <br>*optional*|\[gd\] Global state key/value changes for the application being executed by this transaction.|[StateDelta](#statedelta)| 1945 | |**group** <br>*optional*|\[grp\] Base64 encoded byte array of a sha512/256 digest. When present indicates that this transaction is part of a transaction group and the value is the sha512/256 hash of the transactions in that group. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1946 | |**id** <br>*optional*|Transaction ID|string| 1947 | |**inner-txns** <br>*optional*|Inner transactions produced by application execution.|< [Transaction](#transaction) > array| 1948 | |**intra-round-offset** <br>*optional*|Offset into the round where this transaction was confirmed.|integer| 1949 | |**keyreg-transaction** <br>*optional*||[TransactionKeyreg](#transactionkeyreg)| 1950 | |**last-valid** <br>*required*|\[lv\] Last valid round for this transaction.|integer| 1951 | |**lease** <br>*optional*|\[lx\] Base64 encoded 32-byte array. Lease enforces mutual exclusion of transactions. If this field is nonzero, then once the transaction is confirmed, it acquires the lease identified by the (Sender, Lease) pair of the transaction until the LastValid round passes. While this transaction possesses the lease, no other transaction specifying this lease can be confirmed. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1952 | |**local-state-delta** <br>*optional*|\[ld\] Local state key/value changes for the application being executed by this transaction.|< [AccountStateDelta](#accountstatedelta) > array| 1953 | |**logs** <br>*optional*|\[lg\] Logs for the application being executed by this transaction.|< string (byte) > array| 1954 | |**note** <br>*optional*|\[note\] Free form data. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1955 | |**payment-transaction** <br>*optional*||[TransactionPayment](#transactionpayment)| 1956 | |**receiver-rewards** <br>*optional*|\[rr\] rewards applied to receiver account.|integer| 1957 | |**rekey-to** <br>*optional*|\[rekey\] when included in a valid transaction, the accounts auth addr will be updated with this value and future signatures must be signed with the key represented by this address.|string| 1958 | |**round-time** <br>*optional*|Time when the block this transaction is in was confirmed.|integer| 1959 | |**sender** <br>*required*|\[snd\] Sender's address.|string| 1960 | |**sender-rewards** <br>*optional*|\[rs\] rewards applied to sender account.|integer| 1961 | |**signature** <br>*optional*||[TransactionSignature](#transactionsignature)| 1962 | |**state-proof-transaction** <br>*optional*||[TransactionStateProof](#transactionstateproof)| 1963 | |**tx-type** <br>*required*|\[type\] Indicates what type of transaction this is. Different types have different fields.<br><br>Valid types, and where their fields are stored:<br>* \[pay\] payment-transaction<br>* \[keyreg\] keyreg-transaction<br>* \[acfg\] asset-config-transaction<br>* \[axfer\] asset-transfer-transaction<br>* \[afrz\] asset-freeze-transaction<br>* \[appl\] application-transaction<br>* \[stpf\] state-proof-transaction|enum (pay, keyreg, acfg, axfer, afrz, appl, stpf)| 1964 | 1965 | 1966 | <a name="transactionapplication"></a> 1967 | ### TransactionApplication 1968 | Fields for application transactions. 1969 | 1970 | Definition: 1971 | data/transactions/application.go : ApplicationCallTxnFields 1972 | 1973 | 1974 | |Name|Description|Schema| 1975 | |---|---|---| 1976 | |**accounts** <br>*optional*|\[apat\] List of accounts in addition to the sender that may be accessed from the application's approval-program and clear-state-program.|< string > array| 1977 | |**application-args** <br>*optional*|\[apaa\] transaction specific arguments accessed from the application's approval-program and clear-state-program.|< string > array| 1978 | |**application-id** <br>*required*|\[apid\] ID of the application being configured or empty if creating.|integer| 1979 | |**approval-program** <br>*optional*|\[apap\] Logic executed for every application transaction, except when on-completion is set to "clear". It can read and write global state for the application, as well as account-specific local state. Approval programs may reject the transaction. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1980 | |**clear-state-program** <br>*optional*|\[apsu\] Logic executed for application transactions with on-completion set to "clear". It can read and write global state for the application, as well as account-specific local state. Clear state programs cannot reject the transaction. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 1981 | |**extra-program-pages** <br>*optional*|\[epp\] specifies the additional app program len requested in pages.|integer| 1982 | |**foreign-apps** <br>*optional*|\[apfa\] Lists the applications in addition to the application-id whose global states may be accessed by this application's approval-program and clear-state-program. The access is read-only.|< integer > array| 1983 | |**foreign-assets** <br>*optional*|\[apas\] lists the assets whose parameters may be accessed by this application's ApprovalProgram and ClearStateProgram. The access is read-only.|< integer > array| 1984 | |**global-state-schema** <br>*optional*||[StateSchema](#stateschema)| 1985 | |**local-state-schema** <br>*optional*||[StateSchema](#stateschema)| 1986 | |**on-completion** <br>*required*||[OnCompletion](#oncompletion)| 1987 | 1988 | 1989 | <a name="transactionassetconfig"></a> 1990 | ### TransactionAssetConfig 1991 | Fields for asset allocation, re-configuration, and destruction. 1992 | 1993 | 1994 | A zero value for asset-id indicates asset creation. 1995 | A zero value for the params indicates asset destruction. 1996 | 1997 | Definition: 1998 | data/transactions/asset.go : AssetConfigTxnFields 1999 | 2000 | 2001 | |Name|Description|Schema| 2002 | |---|---|---| 2003 | |**asset-id** <br>*optional*|\[xaid\] ID of the asset being configured or empty if creating.|integer| 2004 | |**params** <br>*optional*||[AssetParams](#assetparams)| 2005 | 2006 | 2007 | <a name="transactionassetfreeze"></a> 2008 | ### TransactionAssetFreeze 2009 | Fields for an asset freeze transaction. 2010 | 2011 | Definition: 2012 | data/transactions/asset.go : AssetFreezeTxnFields 2013 | 2014 | 2015 | |Name|Description|Schema| 2016 | |---|---|---| 2017 | |**address** <br>*required*|\[fadd\] Address of the account whose asset is being frozen or thawed.|string| 2018 | |**asset-id** <br>*required*|\[faid\] ID of the asset being frozen or thawed.|integer| 2019 | |**new-freeze-status** <br>*required*|\[afrz\] The new freeze status.|boolean| 2020 | 2021 | 2022 | <a name="transactionassettransfer"></a> 2023 | ### TransactionAssetTransfer 2024 | Fields for an asset transfer transaction. 2025 | 2026 | Definition: 2027 | data/transactions/asset.go : AssetTransferTxnFields 2028 | 2029 | 2030 | |Name|Description|Schema| 2031 | |---|---|---| 2032 | |**amount** <br>*required*|\[aamt\] Amount of asset to transfer. A zero amount transferred to self allocates that asset in the account's Assets map.|integer| 2033 | |**asset-id** <br>*required*|\[xaid\] ID of the asset being transferred.|integer| 2034 | |**close-amount** <br>*optional*|Number of assets transferred to the close-to account as part of the transaction.|integer| 2035 | |**close-to** <br>*optional*|\[aclose\] Indicates that the asset should be removed from the account's Assets map, and specifies where the remaining asset holdings should be transferred. It's always valid to transfer remaining asset holdings to the creator account.|string| 2036 | |**receiver** <br>*required*|\[arcv\] Recipient address of the transfer.|string| 2037 | |**sender** <br>*optional*|\[asnd\] The effective sender during a clawback transactions. If this is not a zero value, the real transaction sender must be the Clawback address from the AssetParams.|string| 2038 | 2039 | 2040 | <a name="transactionkeyreg"></a> 2041 | ### TransactionKeyreg 2042 | Fields for a keyreg transaction. 2043 | 2044 | Definition: 2045 | data/transactions/keyreg.go : KeyregTxnFields 2046 | 2047 | 2048 | |Name|Description|Schema| 2049 | |---|---|---| 2050 | |**non-participation** <br>*optional*|\[nonpart\] Mark the account as participating or non-participating.|boolean| 2051 | |**selection-participation-key** <br>*optional*|\[selkey\] Public key used with the Verified Random Function (VRF) result during committee selection. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2052 | |**state-proof-key** <br>*optional*|\[sprfkey\] State proof key used in key registration transactions. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2053 | |**vote-first-valid** <br>*optional*|\[votefst\] First round this participation key is valid.|integer| 2054 | |**vote-key-dilution** <br>*optional*|\[votekd\] Number of subkeys in each batch of participation keys.|integer| 2055 | |**vote-last-valid** <br>*optional*|\[votelst\] Last round this participation key is valid.|integer| 2056 | |**vote-participation-key** <br>*optional*|\[votekey\] Participation public key used in key registration transactions. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2057 | 2058 | 2059 | <a name="transactionpayment"></a> 2060 | ### TransactionPayment 2061 | Fields for a payment transaction. 2062 | 2063 | Definition: 2064 | data/transactions/payment.go : PaymentTxnFields 2065 | 2066 | 2067 | |Name|Description|Schema| 2068 | |---|---|---| 2069 | |**amount** <br>*required*|\[amt\] number of MicroAlgos intended to be transferred.|integer| 2070 | |**close-amount** <br>*optional*|Number of MicroAlgos that were sent to the close-remainder-to address when closing the sender account.|integer| 2071 | |**close-remainder-to** <br>*optional*|\[close\] when set, indicates that the sending account should be closed and all remaining funds be transferred to this address.|string| 2072 | |**receiver** <br>*required*|\[rcv\] receiver's address.|string| 2073 | 2074 | 2075 | <a name="transactionsignature"></a> 2076 | ### TransactionSignature 2077 | Validation signature associated with some data. Only one of the signatures should be provided. 2078 | 2079 | 2080 | |Name|Description|Schema| 2081 | |---|---|---| 2082 | |**logicsig** <br>*optional*||[TransactionSignatureLogicsig](#transactionsignaturelogicsig)| 2083 | |**multisig** <br>*optional*||[TransactionSignatureMultisig](#transactionsignaturemultisig)| 2084 | |**sig** <br>*optional*|\[sig\] Standard ed25519 signature. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2085 | 2086 | 2087 | <a name="transactionsignaturelogicsig"></a> 2088 | ### TransactionSignatureLogicsig 2089 | \[lsig\] Programatic transaction signature. 2090 | 2091 | Definition: 2092 | data/transactions/logicsig.go 2093 | 2094 | 2095 | |Name|Description|Schema| 2096 | |---|---|---| 2097 | |**args** <br>*optional*|\[arg\] Logic arguments, base64 encoded.|< string > array| 2098 | |**logic** <br>*required*|\[l\] Program signed by a signature or multi signature, or hashed to be the address of ana ccount. Base64 encoded TEAL program. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2099 | |**multisig-signature** <br>*optional*||[TransactionSignatureMultisig](#transactionsignaturemultisig)| 2100 | |**signature** <br>*optional*|\[sig\] ed25519 signature. <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2101 | 2102 | 2103 | <a name="transactionsignaturemultisig"></a> 2104 | ### TransactionSignatureMultisig 2105 | \[msig\] structure holding multiple subsignatures. 2106 | 2107 | Definition: 2108 | crypto/multisig.go : MultisigSig 2109 | 2110 | 2111 | |Name|Description|Schema| 2112 | |---|---|---| 2113 | |**subsignature** <br>*optional*|\[subsig\] holds pairs of public key and signatures.|< [TransactionSignatureMultisigSubsignature](#transactionsignaturemultisigsubsignature) > array| 2114 | |**threshold** <br>*optional*|\[thr\]|integer| 2115 | |**version** <br>*optional*|\[v\]|integer| 2116 | 2117 | 2118 | <a name="transactionsignaturemultisigsubsignature"></a> 2119 | ### TransactionSignatureMultisigSubsignature 2120 | 2121 | |Name|Description|Schema| 2122 | |---|---|---| 2123 | |**public-key** <br>*optional*|\[pk\] <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2124 | |**signature** <br>*optional*|\[s\] <br>**Pattern** : `"^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==\|[A-Za-z0-9+/]{3}=)?$"`|string (byte)| 2125 | 2126 | 2127 | <a name="transactionstateproof"></a> 2128 | ### TransactionStateProof 2129 | Fields for a state proof transaction. 2130 | 2131 | Definition: 2132 | data/transactions/stateproof.go : StateProofTxnFields 2133 | 2134 | 2135 | |Name|Description|Schema| 2136 | |---|---|---| 2137 | |**message** <br>*optional*|\[spmsg\]|[IndexerStateProofMessage](#indexerstateproofmessage)| 2138 | |**state-proof** <br>*optional*||[StateProofFields](#stateprooffields)| 2139 | |**state-proof-type** <br>*optional*|\[sptype\] Type of the state proof. Integer representing an entry defined in protocol/stateproof.go|integer| 2140 | 2141 | 2142 | 2143 | ```