├── .github ├── ISSUE_TEMPLATE │ ├── fixing-errors-or-inaccuracies.md │ ├── large-additions-or-modifications.md │ └── small-improvements-for-clarity-of-message.md └── workflows │ ├── build.yml │ ├── pr-generator.yml │ ├── release-checker.yml │ └── update-dev-portal.yml ├── .gitignore ├── .go-algorand-beta.version ├── .go-algorand-stable.version ├── .indexer.version ├── .walletconnect ├── .pages ├── index.md └── walletconnect-schema.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── docs ├── .pages ├── about.md ├── clis │ ├── .pages │ ├── algokey │ │ ├── .pages │ │ ├── algokey.md │ │ ├── export.md │ │ ├── generate.md │ │ ├── import.md │ │ ├── multisig │ │ │ ├── .pages │ │ │ ├── append-auth-addr.md │ │ │ └── multisig.md │ │ ├── part │ │ │ ├── .pages │ │ │ ├── generate.md │ │ │ ├── info.md │ │ │ ├── keyreg.md │ │ │ ├── part.md │ │ │ └── reparent.md │ │ └── sign.md │ ├── conduit │ │ ├── .pages │ │ ├── conduit.md │ │ ├── init.md │ │ └── list │ │ │ ├── .pages │ │ │ ├── exporters.md │ │ │ ├── importers.md │ │ │ ├── list.md │ │ │ └── processors.md │ ├── diagcfg │ │ ├── .pages │ │ ├── diagcfg.md │ │ ├── metric │ │ │ ├── .pages │ │ │ ├── disable.md │ │ │ ├── enable.md │ │ │ ├── metric.md │ │ │ └── status.md │ │ └── telemetry │ │ │ ├── .pages │ │ │ ├── disable.md │ │ │ ├── enable.md │ │ │ ├── endpoint.md │ │ │ ├── name.md │ │ │ ├── status.md │ │ │ └── telemetry.md │ ├── goal │ │ ├── .pages │ │ ├── account │ │ │ ├── .pages │ │ │ ├── account.md │ │ │ ├── addpartkey.md │ │ │ ├── assetdetails.md │ │ │ ├── balance.md │ │ │ ├── changeonlinestatus.md │ │ │ ├── delete.md │ │ │ ├── deletepartkey.md │ │ │ ├── dump.md │ │ │ ├── export.md │ │ │ ├── import.md │ │ │ ├── importrootkey.md │ │ │ ├── info.md │ │ │ ├── installpartkey.md │ │ │ ├── list.md │ │ │ ├── listpartkeys.md │ │ │ ├── marknonparticipating.md │ │ │ ├── multisig │ │ │ │ ├── .pages │ │ │ │ ├── delete.md │ │ │ │ ├── info.md │ │ │ │ ├── multisig.md │ │ │ │ └── new.md │ │ │ ├── new.md │ │ │ ├── partkeyinfo.md │ │ │ ├── rename.md │ │ │ ├── renewallpartkeys.md │ │ │ ├── renewpartkey.md │ │ │ └── rewards.md │ │ ├── app │ │ │ ├── .pages │ │ │ ├── app.md │ │ │ ├── box │ │ │ │ ├── .pages │ │ │ │ ├── box.md │ │ │ │ ├── info.md │ │ │ │ └── list.md │ │ │ ├── call.md │ │ │ ├── clear.md │ │ │ ├── closeout.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── info.md │ │ │ ├── interact │ │ │ │ ├── .pages │ │ │ │ ├── execute.md │ │ │ │ ├── interact.md │ │ │ │ └── query.md │ │ │ ├── method.md │ │ │ ├── optin.md │ │ │ ├── read.md │ │ │ └── update.md │ │ ├── asset │ │ │ ├── .pages │ │ │ ├── asset.md │ │ │ ├── config.md │ │ │ ├── create.md │ │ │ ├── destroy.md │ │ │ ├── freeze.md │ │ │ ├── info.md │ │ │ ├── optin.md │ │ │ └── send.md │ │ ├── clerk │ │ │ ├── .pages │ │ │ ├── clerk.md │ │ │ ├── compile.md │ │ │ ├── dryrun-remote.md │ │ │ ├── dryrun.md │ │ │ ├── group.md │ │ │ ├── inspect.md │ │ │ ├── multisig │ │ │ │ ├── .pages │ │ │ │ ├── merge.md │ │ │ │ ├── multisig.md │ │ │ │ ├── sign.md │ │ │ │ └── signprogram.md │ │ │ ├── rawsend.md │ │ │ ├── send.md │ │ │ ├── sign.md │ │ │ ├── simulate.md │ │ │ ├── split.md │ │ │ └── tealsign.md │ │ ├── completion │ │ │ ├── .pages │ │ │ ├── bash.md │ │ │ ├── completion.md │ │ │ └── zsh.md │ │ ├── goal.md │ │ ├── kmd │ │ │ ├── .pages │ │ │ ├── kmd.md │ │ │ ├── start.md │ │ │ └── stop.md │ │ ├── ledger │ │ │ ├── .pages │ │ │ ├── block.md │ │ │ ├── ledger.md │ │ │ └── supply.md │ │ ├── license.md │ │ ├── logging │ │ │ ├── .pages │ │ │ ├── disable.md │ │ │ ├── enable.md │ │ │ ├── logging.md │ │ │ └── send.md │ │ ├── network │ │ │ ├── .pages │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── network.md │ │ │ ├── pregen.md │ │ │ ├── restart.md │ │ │ ├── start.md │ │ │ ├── status.md │ │ │ └── stop.md │ │ ├── node │ │ │ ├── .pages │ │ │ ├── catchup.md │ │ │ ├── clone.md │ │ │ ├── create.md │ │ │ ├── generate-p2pid.md │ │ │ ├── generatetoken.md │ │ │ ├── lastround.md │ │ │ ├── node.md │ │ │ ├── pendingtxns.md │ │ │ ├── restart.md │ │ │ ├── start.md │ │ │ ├── status.md │ │ │ ├── stop.md │ │ │ └── wait.md │ │ ├── protocols.md │ │ ├── report.md │ │ ├── version.md │ │ └── wallet │ │ │ ├── .pages │ │ │ ├── list.md │ │ │ ├── new.md │ │ │ ├── rename.md │ │ │ └── wallet.md │ ├── indexer │ │ ├── .pages │ │ ├── api-config.md │ │ ├── daemon.md │ │ ├── indexer.md │ │ └── util │ │ │ ├── .pages │ │ │ ├── util.md │ │ │ └── validator.md │ ├── kmd.md │ └── tealdbg │ │ ├── .pages │ │ ├── debug.md │ │ ├── remote.md │ │ └── tealdbg.md ├── get-details │ ├── .pages │ ├── accounts │ │ ├── .pages │ │ ├── create.md │ │ ├── index.md │ │ └── rekey.md │ ├── algokit.md │ ├── algokit │ │ ├── .pages │ │ ├── architecture-decisions │ │ │ ├── 2022-11-14_sandbox-approach.md │ │ │ ├── 2022-11-22_beaker-testing-strategy.md │ │ │ ├── 2023-01-11_beaker_productionisation_review.md │ │ │ ├── 2023-01-11_brew_install.md │ │ │ ├── 2023-01-12_smart-contract-deployment.md │ │ │ ├── 2023-06-06_frontend-templates.md │ │ │ ├── 2023-07-19_advanced_generate_command.md │ │ │ ├── 2024-01-13_native_binaries.md │ │ │ ├── 2024-01-23_init-wizard-v2.md │ │ │ ├── 2024-01-31_binary_distribution.md │ │ │ ├── assets │ │ │ │ ├── 2023-06-06_frontend-templates │ │ │ │ │ ├── modular_templates.jpg │ │ │ │ │ ├── scenario_1.jpg │ │ │ │ │ └── scenario_2.jpg │ │ │ │ └── 2024-01-13_native_binaries │ │ │ │ │ ├── image_1.png │ │ │ │ │ └── image_2.png │ │ │ └── lifecycle.jpg │ │ ├── articles │ │ │ └── output_stability.md │ │ ├── cli-reference.md │ │ ├── features │ │ │ ├── bootstrap.md │ │ │ ├── completions.md │ │ │ ├── deploy.md │ │ │ ├── dispenser.md │ │ │ ├── doctor.md │ │ │ ├── explore.md │ │ │ ├── generate.md │ │ │ ├── goal.md │ │ │ ├── init.md │ │ │ ├── localnet.md │ │ │ ├── tasks.md │ │ │ └── tasks │ │ │ │ ├── analyze.md │ │ │ │ ├── ipfs.md │ │ │ │ ├── mint.md │ │ │ │ ├── nfd.md │ │ │ │ ├── opt.md │ │ │ │ ├── send.md │ │ │ │ ├── sign.md │ │ │ │ ├── transfer.md │ │ │ │ ├── vanity_address.md │ │ │ │ └── wallet.md │ │ ├── imgs │ │ │ ├── algokit-intro-video-thumbnail.jpg │ │ │ ├── algokit-map.png │ │ │ ├── algokit_v2_demo.png │ │ │ ├── algokitartifacts.png │ │ │ ├── algokitdemo.png │ │ │ ├── algokitplayground.png │ │ │ ├── algokitv2_json.png │ │ │ ├── algokitv2_starter.png │ │ │ ├── dappflow_transaction.png │ │ │ ├── localnet.png │ │ │ ├── lora-wallet.png │ │ │ ├── lora1.png │ │ │ ├── lora10.png │ │ │ ├── lora11.png │ │ │ ├── lora12.png │ │ │ ├── lora13.png │ │ │ ├── lora14.png │ │ │ ├── lora15.png │ │ │ ├── lora16.png │ │ │ ├── lora17.png │ │ │ ├── lora2.png │ │ │ ├── lora3.png │ │ │ ├── lora4.png │ │ │ ├── lora5.png │ │ │ ├── lora6.png │ │ │ ├── lora7.png │ │ │ ├── lora8.png │ │ │ └── lora9.png │ │ ├── index.md │ │ ├── tutorials │ │ │ ├── algokit-template.md │ │ │ └── intro.md │ │ └── utils │ │ │ ├── py │ │ │ ├── .pages │ │ │ ├── apidocs.md │ │ │ ├── capabilities │ │ │ │ ├── account.md │ │ │ │ ├── app-client.md │ │ │ │ ├── app-deploy.md │ │ │ │ ├── client.md │ │ │ │ ├── debugger.md │ │ │ │ ├── debugging.md │ │ │ │ ├── dispenser-client.md │ │ │ │ └── transfer.md │ │ │ ├── client_generator.md │ │ │ └── index.md │ │ │ └── ts │ │ │ ├── .pages │ │ │ ├── capabilities │ │ │ ├── account.md │ │ │ ├── amount.md │ │ │ ├── app-client.md │ │ │ ├── app-deploy.md │ │ │ ├── app.md │ │ │ ├── asset.md │ │ │ ├── client.md │ │ │ ├── debugging.md │ │ │ ├── dispenser-client.md │ │ │ ├── indexer.md │ │ │ ├── testing.md │ │ │ ├── transaction.md │ │ │ └── transfer.md │ │ │ ├── client_generator.md │ │ │ ├── code │ │ │ ├── .pages │ │ │ ├── classes │ │ │ │ ├── testing.TestLogger.md │ │ │ │ ├── testing.TransactionLogger.md │ │ │ │ ├── types_account.MultisigAccount.md │ │ │ │ ├── types_account.SigningAccount.md │ │ │ │ ├── types_algo_http_client_with_retry.AlgoHttpClientWithRetry.md │ │ │ │ ├── types_amount.AlgoAmount.md │ │ │ │ ├── types_app_client.ApplicationClient.md │ │ │ │ ├── types_config.UpdatableConfig.md │ │ │ │ ├── types_debugging.AVMDebuggerSourceMap.md │ │ │ │ ├── types_debugging.AVMDebuggerSourceMapEntry.md │ │ │ │ ├── types_debugging.PersistSourceMapInput.md │ │ │ │ ├── types_dispenser_client.TestNetDispenserApiClient.md │ │ │ │ ├── types_logic_error.LogicError.md │ │ │ │ └── types_urlTokenBaseHTTPClient.URLTokenBaseHTTPClient.md │ │ │ ├── enums │ │ │ │ ├── types_app.OnSchemaBreak.md │ │ │ │ ├── types_app.OnUpdate.md │ │ │ │ ├── types_indexer.AccountStatus.md │ │ │ │ ├── types_indexer.ApplicationOnComplete.md │ │ │ │ └── types_indexer.SignatureType.md │ │ │ ├── index.md │ │ │ ├── interfaces │ │ │ │ ├── types_account.AccountConfig.md │ │ │ │ ├── types_account.TransactionSignerAccount.md │ │ │ │ ├── types_app.AppCallParams.md │ │ │ │ ├── types_app.AppCallTransactionResult.md │ │ │ │ ├── types_app.AppCallTransactionResultOfType.md │ │ │ │ ├── types_app.AppCompilationResult.md │ │ │ │ ├── types_app.AppDeployMetadata.md │ │ │ │ ├── types_app.AppDeploymentParams.md │ │ │ │ ├── types_app.AppLookup.md │ │ │ │ ├── types_app.AppMetadata.md │ │ │ │ ├── types_app.AppReference.md │ │ │ │ ├── types_app.AppState.md │ │ │ │ ├── types_app.AppStorageSchema.md │ │ │ │ ├── types_app.BoxName.md │ │ │ │ ├── types_app.BoxReference.md │ │ │ │ ├── types_app.BoxValueRequestParams.md │ │ │ │ ├── types_app.BoxValuesRequestParams.md │ │ │ │ ├── types_app.CompiledTeal.md │ │ │ │ ├── types_app.CoreAppCallArgs.md │ │ │ │ ├── types_app.CreateAppParams.md │ │ │ │ ├── types_app.RawAppCallArgs.md │ │ │ │ ├── types_app.TealTemplateParams.md │ │ │ │ ├── types_app.UpdateAppParams.md │ │ │ │ ├── types_app_client.AppClientCallABIArgs.md │ │ │ │ ├── types_app_client.AppClientCallCoreParams.md │ │ │ │ ├── types_app_client.AppClientCallRawArgs.md │ │ │ │ ├── types_app_client.AppClientCompilationParams.md │ │ │ │ ├── types_app_client.AppClientDeployCallInterfaceParams.md │ │ │ │ ├── types_app_client.AppClientDeployCoreParams.md │ │ │ │ ├── types_app_client.AppClientDeployParams.md │ │ │ │ ├── types_app_client.AppSourceMaps.md │ │ │ │ ├── types_app_client.FundAppAccountParams.md │ │ │ │ ├── types_app_client.ResolveAppById.md │ │ │ │ ├── types_app_client.ResolveAppByIdBase.md │ │ │ │ ├── types_app_client.SourceMapExport.md │ │ │ │ ├── types_app_spec.AppSources.md │ │ │ │ ├── types_app_spec.AppSpec.md │ │ │ │ ├── types_app_spec.CallConfig.md │ │ │ │ ├── types_app_spec.DeclaredSchemaValueSpec.md │ │ │ │ ├── types_app_spec.Hint.md │ │ │ │ ├── types_app_spec.ReservedSchemaValueSpec.md │ │ │ │ ├── types_app_spec.Schema.md │ │ │ │ ├── types_app_spec.SchemaSpec.md │ │ │ │ ├── types_app_spec.StateSchemaSpec.md │ │ │ │ ├── types_app_spec.Struct.md │ │ │ │ ├── types_asset.AssetBulkOptInOutParams.md │ │ │ │ ├── types_asset.AssetOptInParams.md │ │ │ │ ├── types_asset.AssetOptOutParams.md │ │ │ │ ├── types_config.Config.md │ │ │ │ ├── types_debugging.AVMDebuggerSourceMapDict.md │ │ │ │ ├── types_debugging.PersistSourceMapsParams.md │ │ │ │ ├── types_debugging.SimulateAndPersistResponseParams.md │ │ │ │ ├── types_dispenser_client.DispenserFundResponse.md │ │ │ │ ├── types_dispenser_client.DispenserLimitResponse.md │ │ │ │ ├── types_dispenser_client.TestNetDispenserApiClientParams.md │ │ │ │ ├── types_indexer.AccountLookupResult.md │ │ │ │ ├── types_indexer.AccountParticipation.md │ │ │ │ ├── types_indexer.AccountResult.md │ │ │ │ ├── types_indexer.AppLocalState.md │ │ │ │ ├── types_indexer.ApplicationCreatedLookupResult.md │ │ │ │ ├── types_indexer.ApplicationLookupResult.md │ │ │ │ ├── types_indexer.ApplicationParams.md │ │ │ │ ├── types_indexer.ApplicationResult.md │ │ │ │ ├── types_indexer.ApplicationTransactionResult.md │ │ │ │ ├── types_indexer.AssetConfigTransactionResult.md │ │ │ │ ├── types_indexer.AssetFreezeTransactionResult.md │ │ │ │ ├── types_indexer.AssetHolding.md │ │ │ │ ├── types_indexer.AssetLookupResult.md │ │ │ │ ├── types_indexer.AssetParams.md │ │ │ │ ├── types_indexer.AssetResult.md │ │ │ │ ├── types_indexer.AssetTransferTransactionResult.md │ │ │ │ ├── types_indexer.AssetsCreatedLookupResult.md │ │ │ │ ├── types_indexer.AssetsLookupResult.md │ │ │ │ ├── types_indexer.EvalDelta.md │ │ │ │ ├── types_indexer.KeyRegistrationTransactionResult.md │ │ │ │ ├── types_indexer.LogicTransactionSignature.md │ │ │ │ ├── types_indexer.MerkleArrayProof.md │ │ │ │ ├── types_indexer.MultisigTransactionSignature.md │ │ │ │ ├── types_indexer.MultisigTransactionSubSignature.md │ │ │ │ ├── types_indexer.PaymentTransactionResult.md │ │ │ │ ├── types_indexer.StateProofTransactionResult.md │ │ │ │ ├── types_indexer.StateSchema.md │ │ │ │ ├── types_indexer.TransactionLookupResult.md │ │ │ │ ├── types_indexer.TransactionResult.md │ │ │ │ ├── types_indexer.TransactionSearchResults.md │ │ │ │ ├── types_indexer.TransactionSignature.md │ │ │ │ ├── types_logic_error.LogicErrorDetails.md │ │ │ │ ├── types_network_client.AlgoClientConfig.md │ │ │ │ ├── types_network_client.AlgoConfig.md │ │ │ │ ├── types_testing.AlgoKitLogCaptureFixture.md │ │ │ │ ├── types_testing.AlgorandFixture.md │ │ │ │ ├── types_testing.AlgorandFixtureConfig.md │ │ │ │ ├── types_testing.AlgorandTestAutomationContext.md │ │ │ │ ├── types_testing.GetTestAccountParams.md │ │ │ │ ├── types_testing.LogSnapshotConfig.md │ │ │ │ ├── types_transaction.AtomicTransactionComposerToSend.md │ │ │ │ ├── types_transaction.ConfirmedTransactionResult.md │ │ │ │ ├── types_transaction.ConfirmedTransactionResults.md │ │ │ │ ├── types_transaction.SendAtomicTransactionComposerResults.md │ │ │ │ ├── types_transaction.SendTransactionParams.md │ │ │ │ ├── types_transaction.SendTransactionResult.md │ │ │ │ ├── types_transaction.SendTransactionResults.md │ │ │ │ ├── types_transaction.TransactionGroupToSend.md │ │ │ │ ├── types_transaction.TransactionToSign.md │ │ │ │ ├── types_transfer.AlgoRekeyParams.md │ │ │ │ ├── types_transfer.AlgoTransferParams.md │ │ │ │ ├── types_transfer.EnsureFundedParams.md │ │ │ │ ├── types_transfer.EnsureFundedReturnType.md │ │ │ │ ├── types_transfer.TransferAssetParams.md │ │ │ │ ├── types_urlTokenBaseHTTPClient.AlgodTokenHeader.md │ │ │ │ ├── types_urlTokenBaseHTTPClient.CustomTokenHeader.md │ │ │ │ ├── types_urlTokenBaseHTTPClient.IndexerTokenHeader.md │ │ │ │ └── types_urlTokenBaseHTTPClient.KMDTokenHeader.md │ │ │ └── modules │ │ │ │ ├── index.md │ │ │ │ ├── testing.md │ │ │ │ ├── types_account.md │ │ │ │ ├── types_algo_http_client_with_retry.md │ │ │ │ ├── types_amount.md │ │ │ │ ├── types_amount_spec.md │ │ │ │ ├── types_app.md │ │ │ │ ├── types_app_client.md │ │ │ │ ├── types_app_client_spec.md │ │ │ │ ├── types_app_spec.md │ │ │ │ ├── types_asset.md │ │ │ │ ├── types_config.md │ │ │ │ ├── types_debugging.md │ │ │ │ ├── types_dispenser_client.md │ │ │ │ ├── types_dispenser_client_spec.md │ │ │ │ ├── types_indexer.md │ │ │ │ ├── types_logging.md │ │ │ │ ├── types_logic_error.md │ │ │ │ ├── types_network_client.md │ │ │ │ ├── types_testing.md │ │ │ │ ├── types_transaction.md │ │ │ │ ├── types_transfer.md │ │ │ │ └── types_urlTokenBaseHTTPClient.md │ │ │ ├── images │ │ │ └── lifecycle.jpg │ │ │ └── index.md │ ├── algorand-networks │ │ ├── .pages │ │ ├── betanet.md │ │ ├── index.md │ │ ├── mainnet.md │ │ └── testnet.md │ ├── algorand_consensus.md │ ├── asa.md │ ├── atc.md │ ├── atomic_transfers.md │ ├── conduit.md │ ├── crust.md │ ├── dapps │ │ ├── .pages │ │ ├── avm │ │ │ ├── .pages │ │ │ ├── index.md │ │ │ └── teal │ │ │ │ ├── .pages │ │ │ │ ├── guidelines.md │ │ │ │ ├── index.md │ │ │ │ ├── jsonspec.md │ │ │ │ ├── opcodes │ │ │ │ ├── .pages │ │ │ │ ├── index.md │ │ │ │ ├── v1.md │ │ │ │ ├── v10.md │ │ │ │ ├── v11.md │ │ │ │ ├── v12.md │ │ │ │ ├── v2.md │ │ │ │ ├── v3.md │ │ │ │ ├── v4.md │ │ │ │ ├── v5.md │ │ │ │ ├── v6.md │ │ │ │ ├── v7.md │ │ │ │ ├── v8.md │ │ │ │ └── v9.md │ │ │ │ └── specification.md │ │ ├── smart-contracts │ │ │ ├── .pages │ │ │ ├── ABI │ │ │ │ └── index.md │ │ │ ├── apps │ │ │ │ ├── .pages │ │ │ │ ├── create.md │ │ │ │ ├── index.md │ │ │ │ ├── innertx.md │ │ │ │ ├── state.md │ │ │ │ └── txs.md │ │ │ ├── debugging.md │ │ │ ├── frontend │ │ │ │ ├── .pages │ │ │ │ ├── apps.md │ │ │ │ └── smartsigs.md │ │ │ ├── guidelines.md │ │ │ ├── index.md │ │ │ └── smartsigs │ │ │ │ ├── .pages │ │ │ │ ├── index.md │ │ │ │ ├── modes.md │ │ │ │ └── walkthrough.md │ │ └── writing-contracts │ │ │ ├── .pages │ │ │ ├── beaker.md │ │ │ ├── pyteal.md │ │ │ └── python.md │ ├── encoding.md │ ├── ethereum_to_algorand.md │ ├── index.md │ ├── indexer.md │ ├── parameter_tables.md │ ├── stateproofs │ │ ├── .pages │ │ ├── index.md │ │ └── light_client.md │ ├── technical_faq.md │ ├── transactions │ │ ├── .pages │ │ ├── index.md │ │ ├── offline_transactions.md │ │ ├── payment_prompts.md │ │ ├── signatures.md │ │ └── transactions.md │ └── useful_resources.md ├── get-started │ ├── .pages │ ├── algokit.md │ ├── basics │ │ ├── .pages │ │ ├── what_is_blockchain.md │ │ ├── whats_a_dapp.md │ │ ├── where_to_start.md │ │ └── why_algorand.md │ └── tokenization │ │ ├── .pages │ │ ├── ft.md │ │ └── nft.md ├── imgs │ ├── AlgoExplorerLogo.png │ ├── accounts-0.png │ ├── accounts-1.png │ ├── accounts-2.png │ ├── accounts-3.png │ ├── accounts-4.png │ ├── accounts.png │ ├── aikon.png │ ├── algo_dev_stack.png │ ├── algoexplorer.png │ ├── algoicon.png │ ├── algokit-intro-video-thumbnail.jpg │ ├── algokit_v2_demo.png │ ├── algokitartifacts.png │ ├── algokitdemo.png │ ├── algokitplayground.png │ ├── algokitv2_json.png │ ├── algokitv2_starter.png │ ├── algorand_consensus-1.png │ ├── algorand_consensus-2.png │ ├── algorand_consensus-3.png │ ├── algorand_consensus-4.png │ ├── algosigner.png │ ├── algotides-logo.png │ ├── app-1.jpg │ ├── app-10.jpg │ ├── app-2.jpg │ ├── app-3.jpg │ ├── app-4.jpg │ ├── app-5.jpg │ ├── app-6.jpg │ ├── app-7.jpg │ ├── app-8.jpg │ ├── app-9.jpg │ ├── asc1_sdk_usage-1.png │ ├── asc1_sdk_usage-2.png │ ├── atomic_transfers-1.png │ ├── atomic_transfers-2.png │ ├── basics-alicebob-1.png │ ├── basics-alicebob-2.png │ ├── basics-blockchain-vs-traditional.png │ ├── basics-immutable.png │ ├── basics-pos.png │ ├── basics-pow.png │ ├── basics-traditional-error.png │ ├── basics-woman-bid-blockchain.png │ ├── basics-woman-bid-traditional.png │ ├── block_interval_commitment.png │ ├── block_interval_commitment_arch.png │ ├── blockchain-diagram.png │ ├── blockchain-properties.png │ ├── conduitarch.png │ ├── dapp-bid.png │ ├── dapp-close.png │ ├── dapp-create.png │ ├── dapp-setup.png │ ├── dapps.png │ ├── discord.png │ ├── go.png │ ├── goalseekericon.png │ ├── indexerv2.png │ ├── integration-indexer.png │ ├── integrations-algos-asas.png │ ├── java.png │ ├── js.png │ ├── light_client_arch.png │ ├── localnet.png │ ├── lora-wallet.png │ ├── lora1.png │ ├── lora10.png │ ├── lora11.png │ ├── lora12.png │ ├── lora13.png │ ├── lora14.png │ ├── lora15.png │ ├── lora16.png │ ├── lora17.png │ ├── lora2.png │ ├── lora3.png │ ├── lora4.png │ ├── lora5.png │ ├── lora6.png │ ├── lora7.png │ ├── lora8.png │ ├── lora9.png │ ├── modes-0.png │ ├── modes-1.png │ ├── modes-2.png │ ├── myalgo.png │ ├── network.png │ ├── purestakelogo.png │ ├── python.png │ ├── refarray_1.png │ ├── refarray_2.png │ ├── refarray_3.png │ ├── refarray_4.png │ ├── refarray_5.png │ ├── refarray_6.png │ ├── rekey-single-multisig.png │ ├── rekey-single-single.png │ ├── renew-0.png │ ├── replit-512.png │ ├── sandbox-node-guy.png │ ├── sccalltypes.png │ ├── stateful-1.png │ ├── stateful-2.png │ ├── teal_overview-0.png │ ├── teal_overview-1.png │ ├── teal_overview-2.png │ ├── teal_overview-3.png │ ├── teal_overview-4.png │ ├── teal_overview-5.png │ ├── teal_overview-6.png │ ├── teal_overview-7.png │ ├── tealdbg-1.png │ ├── tealdbg-2.png │ ├── tealdbg-3.png │ ├── tokenization-alice-bob-nft.png │ ├── tokenization-fungible-1.png │ ├── tokenization-fungible-2.png │ ├── tokenization-nfts.png │ ├── transaction_commitment.png │ ├── uneconomia-logo.png │ ├── vertices-logo.png │ ├── walletconnect-establishing-connection.png │ ├── walletconnect-header.png │ └── yt.png ├── index.md ├── rest-apis │ ├── .pages │ ├── algod.md │ ├── indexer.md │ ├── kmd.md │ └── restendpoints.md ├── run-a-node │ ├── .pages │ ├── operations │ │ ├── .pages │ │ ├── catchup.md │ │ └── switch_networks.md │ ├── participate │ │ ├── .pages │ │ ├── generate_keys.md │ │ ├── index.md │ │ ├── offline.md │ │ ├── online.md │ │ └── renew.md │ ├── reference │ │ ├── .pages │ │ ├── artifacts.md │ │ ├── config.md │ │ ├── relay.md │ │ └── telemetry-config.md │ └── setup │ │ ├── .pages │ │ ├── indexer.md │ │ ├── install.md │ │ ├── node-troubleshooting.md │ │ └── types.md └── sdks │ ├── .pages │ ├── go │ └── index.md │ ├── index.md │ ├── java │ └── index.md │ ├── javascript │ └── index.md │ └── python │ └── index.md ├── mkdocs.yml ├── requirements.txt └── scripts ├── README.md ├── algod_specfile_processors ├── algokit-docs.sh ├── algokit-utils.py ├── config_json_gen ├── main.go └── template.tmpl ├── contains_doc_changes.sh ├── convert_swagger.py ├── example_tracker ├── example_list.md ├── go_examples.txt ├── java_examples.txt ├── js_examples.txt ├── list_examples.sh └── py_examples.txt ├── import_examples.py ├── reformat-all-commands.sh ├── reformat.py └── tmp3gygigg3 /.github/ISSUE_TEMPLATE/fixing-errors-or-inaccuracies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.github/ISSUE_TEMPLATE/fixing-errors-or-inaccuracies.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/large-additions-or-modifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.github/ISSUE_TEMPLATE/large-additions-or-modifications.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/small-improvements-for-clarity-of-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.github/ISSUE_TEMPLATE/small-improvements-for-clarity-of-message.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-generator.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.github/workflows/pr-generator.yml -------------------------------------------------------------------------------- /.github/workflows/release-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.github/workflows/release-checker.yml -------------------------------------------------------------------------------- /.github/workflows/update-dev-portal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.github/workflows/update-dev-portal.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.go-algorand-beta.version: -------------------------------------------------------------------------------- 1 | v4.3.0-beta 2 | -------------------------------------------------------------------------------- /.go-algorand-stable.version: -------------------------------------------------------------------------------- 1 | v4.3.0-stable 2 | -------------------------------------------------------------------------------- /.indexer.version: -------------------------------------------------------------------------------- 1 | 3.9.0 2 | -------------------------------------------------------------------------------- /.walletconnect/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.walletconnect/.pages -------------------------------------------------------------------------------- /.walletconnect/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.walletconnect/index.md -------------------------------------------------------------------------------- /.walletconnect/walletconnect-schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/.walletconnect/walletconnect-schema.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/.pages -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/about.md -------------------------------------------------------------------------------- /docs/clis/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/.pages -------------------------------------------------------------------------------- /docs/clis/algokey/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/.pages -------------------------------------------------------------------------------- /docs/clis/algokey/algokey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/algokey.md -------------------------------------------------------------------------------- /docs/clis/algokey/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/export.md -------------------------------------------------------------------------------- /docs/clis/algokey/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/generate.md -------------------------------------------------------------------------------- /docs/clis/algokey/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/import.md -------------------------------------------------------------------------------- /docs/clis/algokey/multisig/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/multisig/.pages -------------------------------------------------------------------------------- /docs/clis/algokey/multisig/append-auth-addr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/multisig/append-auth-addr.md -------------------------------------------------------------------------------- /docs/clis/algokey/multisig/multisig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/multisig/multisig.md -------------------------------------------------------------------------------- /docs/clis/algokey/part/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/part/.pages -------------------------------------------------------------------------------- /docs/clis/algokey/part/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/part/generate.md -------------------------------------------------------------------------------- /docs/clis/algokey/part/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/part/info.md -------------------------------------------------------------------------------- /docs/clis/algokey/part/keyreg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/part/keyreg.md -------------------------------------------------------------------------------- /docs/clis/algokey/part/part.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/part/part.md -------------------------------------------------------------------------------- /docs/clis/algokey/part/reparent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/part/reparent.md -------------------------------------------------------------------------------- /docs/clis/algokey/sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/algokey/sign.md -------------------------------------------------------------------------------- /docs/clis/conduit/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/.pages -------------------------------------------------------------------------------- /docs/clis/conduit/conduit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/conduit.md -------------------------------------------------------------------------------- /docs/clis/conduit/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/init.md -------------------------------------------------------------------------------- /docs/clis/conduit/list/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/list/.pages -------------------------------------------------------------------------------- /docs/clis/conduit/list/exporters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/list/exporters.md -------------------------------------------------------------------------------- /docs/clis/conduit/list/importers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/list/importers.md -------------------------------------------------------------------------------- /docs/clis/conduit/list/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/list/list.md -------------------------------------------------------------------------------- /docs/clis/conduit/list/processors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/conduit/list/processors.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/.pages -------------------------------------------------------------------------------- /docs/clis/diagcfg/diagcfg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/diagcfg.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/metric/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/metric/.pages -------------------------------------------------------------------------------- /docs/clis/diagcfg/metric/disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/metric/disable.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/metric/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/metric/enable.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/metric/metric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/metric/metric.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/metric/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/metric/status.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/telemetry/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/telemetry/.pages -------------------------------------------------------------------------------- /docs/clis/diagcfg/telemetry/disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/telemetry/disable.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/telemetry/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/telemetry/enable.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/telemetry/endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/telemetry/endpoint.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/telemetry/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/telemetry/name.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/telemetry/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/telemetry/status.md -------------------------------------------------------------------------------- /docs/clis/diagcfg/telemetry/telemetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/diagcfg/telemetry/telemetry.md -------------------------------------------------------------------------------- /docs/clis/goal/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/.pages -------------------------------------------------------------------------------- /docs/clis/goal/account/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/.pages -------------------------------------------------------------------------------- /docs/clis/goal/account/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/account.md -------------------------------------------------------------------------------- /docs/clis/goal/account/addpartkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/addpartkey.md -------------------------------------------------------------------------------- /docs/clis/goal/account/assetdetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/assetdetails.md -------------------------------------------------------------------------------- /docs/clis/goal/account/balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/balance.md -------------------------------------------------------------------------------- /docs/clis/goal/account/changeonlinestatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/changeonlinestatus.md -------------------------------------------------------------------------------- /docs/clis/goal/account/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/delete.md -------------------------------------------------------------------------------- /docs/clis/goal/account/deletepartkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/deletepartkey.md -------------------------------------------------------------------------------- /docs/clis/goal/account/dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/dump.md -------------------------------------------------------------------------------- /docs/clis/goal/account/export.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/export.md -------------------------------------------------------------------------------- /docs/clis/goal/account/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/import.md -------------------------------------------------------------------------------- /docs/clis/goal/account/importrootkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/importrootkey.md -------------------------------------------------------------------------------- /docs/clis/goal/account/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/info.md -------------------------------------------------------------------------------- /docs/clis/goal/account/installpartkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/installpartkey.md -------------------------------------------------------------------------------- /docs/clis/goal/account/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/list.md -------------------------------------------------------------------------------- /docs/clis/goal/account/listpartkeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/listpartkeys.md -------------------------------------------------------------------------------- /docs/clis/goal/account/marknonparticipating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/marknonparticipating.md -------------------------------------------------------------------------------- /docs/clis/goal/account/multisig/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/multisig/.pages -------------------------------------------------------------------------------- /docs/clis/goal/account/multisig/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/multisig/delete.md -------------------------------------------------------------------------------- /docs/clis/goal/account/multisig/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/multisig/info.md -------------------------------------------------------------------------------- /docs/clis/goal/account/multisig/multisig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/multisig/multisig.md -------------------------------------------------------------------------------- /docs/clis/goal/account/multisig/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/multisig/new.md -------------------------------------------------------------------------------- /docs/clis/goal/account/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/new.md -------------------------------------------------------------------------------- /docs/clis/goal/account/partkeyinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/partkeyinfo.md -------------------------------------------------------------------------------- /docs/clis/goal/account/rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/rename.md -------------------------------------------------------------------------------- /docs/clis/goal/account/renewallpartkeys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/renewallpartkeys.md -------------------------------------------------------------------------------- /docs/clis/goal/account/renewpartkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/renewpartkey.md -------------------------------------------------------------------------------- /docs/clis/goal/account/rewards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/account/rewards.md -------------------------------------------------------------------------------- /docs/clis/goal/app/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/.pages -------------------------------------------------------------------------------- /docs/clis/goal/app/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/app.md -------------------------------------------------------------------------------- /docs/clis/goal/app/box/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/box/.pages -------------------------------------------------------------------------------- /docs/clis/goal/app/box/box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/box/box.md -------------------------------------------------------------------------------- /docs/clis/goal/app/box/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/box/info.md -------------------------------------------------------------------------------- /docs/clis/goal/app/box/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/box/list.md -------------------------------------------------------------------------------- /docs/clis/goal/app/call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/call.md -------------------------------------------------------------------------------- /docs/clis/goal/app/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/clear.md -------------------------------------------------------------------------------- /docs/clis/goal/app/closeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/closeout.md -------------------------------------------------------------------------------- /docs/clis/goal/app/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/create.md -------------------------------------------------------------------------------- /docs/clis/goal/app/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/delete.md -------------------------------------------------------------------------------- /docs/clis/goal/app/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/info.md -------------------------------------------------------------------------------- /docs/clis/goal/app/interact/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/interact/.pages -------------------------------------------------------------------------------- /docs/clis/goal/app/interact/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/interact/execute.md -------------------------------------------------------------------------------- /docs/clis/goal/app/interact/interact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/interact/interact.md -------------------------------------------------------------------------------- /docs/clis/goal/app/interact/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/interact/query.md -------------------------------------------------------------------------------- /docs/clis/goal/app/method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/method.md -------------------------------------------------------------------------------- /docs/clis/goal/app/optin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/optin.md -------------------------------------------------------------------------------- /docs/clis/goal/app/read.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/read.md -------------------------------------------------------------------------------- /docs/clis/goal/app/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/app/update.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/.pages -------------------------------------------------------------------------------- /docs/clis/goal/asset/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/asset.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/config.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/create.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/destroy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/destroy.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/freeze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/freeze.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/info.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/optin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/optin.md -------------------------------------------------------------------------------- /docs/clis/goal/asset/send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/asset/send.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/.pages -------------------------------------------------------------------------------- /docs/clis/goal/clerk/clerk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/clerk.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/compile.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/dryrun-remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/dryrun-remote.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/dryrun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/dryrun.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/group.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/inspect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/inspect.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/multisig/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/multisig/.pages -------------------------------------------------------------------------------- /docs/clis/goal/clerk/multisig/merge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/multisig/merge.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/multisig/multisig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/multisig/multisig.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/multisig/sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/multisig/sign.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/multisig/signprogram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/multisig/signprogram.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/rawsend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/rawsend.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/send.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/sign.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/simulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/simulate.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/split.md -------------------------------------------------------------------------------- /docs/clis/goal/clerk/tealsign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/clerk/tealsign.md -------------------------------------------------------------------------------- /docs/clis/goal/completion/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/completion/.pages -------------------------------------------------------------------------------- /docs/clis/goal/completion/bash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/completion/bash.md -------------------------------------------------------------------------------- /docs/clis/goal/completion/completion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/completion/completion.md -------------------------------------------------------------------------------- /docs/clis/goal/completion/zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/completion/zsh.md -------------------------------------------------------------------------------- /docs/clis/goal/goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/goal.md -------------------------------------------------------------------------------- /docs/clis/goal/kmd/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/kmd/.pages -------------------------------------------------------------------------------- /docs/clis/goal/kmd/kmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/kmd/kmd.md -------------------------------------------------------------------------------- /docs/clis/goal/kmd/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/kmd/start.md -------------------------------------------------------------------------------- /docs/clis/goal/kmd/stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/kmd/stop.md -------------------------------------------------------------------------------- /docs/clis/goal/ledger/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/ledger/.pages -------------------------------------------------------------------------------- /docs/clis/goal/ledger/block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/ledger/block.md -------------------------------------------------------------------------------- /docs/clis/goal/ledger/ledger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/ledger/ledger.md -------------------------------------------------------------------------------- /docs/clis/goal/ledger/supply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/ledger/supply.md -------------------------------------------------------------------------------- /docs/clis/goal/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/license.md -------------------------------------------------------------------------------- /docs/clis/goal/logging/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/logging/.pages -------------------------------------------------------------------------------- /docs/clis/goal/logging/disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/logging/disable.md -------------------------------------------------------------------------------- /docs/clis/goal/logging/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/logging/enable.md -------------------------------------------------------------------------------- /docs/clis/goal/logging/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/logging/logging.md -------------------------------------------------------------------------------- /docs/clis/goal/logging/send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/logging/send.md -------------------------------------------------------------------------------- /docs/clis/goal/network/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/.pages -------------------------------------------------------------------------------- /docs/clis/goal/network/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/create.md -------------------------------------------------------------------------------- /docs/clis/goal/network/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/delete.md -------------------------------------------------------------------------------- /docs/clis/goal/network/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/network.md -------------------------------------------------------------------------------- /docs/clis/goal/network/pregen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/pregen.md -------------------------------------------------------------------------------- /docs/clis/goal/network/restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/restart.md -------------------------------------------------------------------------------- /docs/clis/goal/network/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/start.md -------------------------------------------------------------------------------- /docs/clis/goal/network/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/status.md -------------------------------------------------------------------------------- /docs/clis/goal/network/stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/network/stop.md -------------------------------------------------------------------------------- /docs/clis/goal/node/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/.pages -------------------------------------------------------------------------------- /docs/clis/goal/node/catchup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/catchup.md -------------------------------------------------------------------------------- /docs/clis/goal/node/clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/clone.md -------------------------------------------------------------------------------- /docs/clis/goal/node/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/create.md -------------------------------------------------------------------------------- /docs/clis/goal/node/generate-p2pid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/generate-p2pid.md -------------------------------------------------------------------------------- /docs/clis/goal/node/generatetoken.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/generatetoken.md -------------------------------------------------------------------------------- /docs/clis/goal/node/lastround.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/lastround.md -------------------------------------------------------------------------------- /docs/clis/goal/node/node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/node.md -------------------------------------------------------------------------------- /docs/clis/goal/node/pendingtxns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/pendingtxns.md -------------------------------------------------------------------------------- /docs/clis/goal/node/restart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/restart.md -------------------------------------------------------------------------------- /docs/clis/goal/node/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/start.md -------------------------------------------------------------------------------- /docs/clis/goal/node/status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/status.md -------------------------------------------------------------------------------- /docs/clis/goal/node/stop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/stop.md -------------------------------------------------------------------------------- /docs/clis/goal/node/wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/node/wait.md -------------------------------------------------------------------------------- /docs/clis/goal/protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/protocols.md -------------------------------------------------------------------------------- /docs/clis/goal/report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/report.md -------------------------------------------------------------------------------- /docs/clis/goal/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/version.md -------------------------------------------------------------------------------- /docs/clis/goal/wallet/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/wallet/.pages -------------------------------------------------------------------------------- /docs/clis/goal/wallet/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/wallet/list.md -------------------------------------------------------------------------------- /docs/clis/goal/wallet/new.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/wallet/new.md -------------------------------------------------------------------------------- /docs/clis/goal/wallet/rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/wallet/rename.md -------------------------------------------------------------------------------- /docs/clis/goal/wallet/wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/goal/wallet/wallet.md -------------------------------------------------------------------------------- /docs/clis/indexer/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/indexer/.pages -------------------------------------------------------------------------------- /docs/clis/indexer/api-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/indexer/api-config.md -------------------------------------------------------------------------------- /docs/clis/indexer/daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/indexer/daemon.md -------------------------------------------------------------------------------- /docs/clis/indexer/indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/indexer/indexer.md -------------------------------------------------------------------------------- /docs/clis/indexer/util/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/indexer/util/.pages -------------------------------------------------------------------------------- /docs/clis/indexer/util/util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/indexer/util/util.md -------------------------------------------------------------------------------- /docs/clis/indexer/util/validator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/indexer/util/validator.md -------------------------------------------------------------------------------- /docs/clis/kmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/kmd.md -------------------------------------------------------------------------------- /docs/clis/tealdbg/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/tealdbg/.pages -------------------------------------------------------------------------------- /docs/clis/tealdbg/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/tealdbg/debug.md -------------------------------------------------------------------------------- /docs/clis/tealdbg/remote.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/tealdbg/remote.md -------------------------------------------------------------------------------- /docs/clis/tealdbg/tealdbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/clis/tealdbg/tealdbg.md -------------------------------------------------------------------------------- /docs/get-details/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/.pages -------------------------------------------------------------------------------- /docs/get-details/accounts/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/accounts/.pages -------------------------------------------------------------------------------- /docs/get-details/accounts/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/accounts/create.md -------------------------------------------------------------------------------- /docs/get-details/accounts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/accounts/index.md -------------------------------------------------------------------------------- /docs/get-details/accounts/rekey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/accounts/rekey.md -------------------------------------------------------------------------------- /docs/get-details/algokit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit.md -------------------------------------------------------------------------------- /docs/get-details/algokit/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/.pages -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2022-11-14_sandbox-approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2022-11-14_sandbox-approach.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2022-11-22_beaker-testing-strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2022-11-22_beaker-testing-strategy.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2023-01-11_beaker_productionisation_review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2023-01-11_beaker_productionisation_review.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2023-01-11_brew_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2023-01-11_brew_install.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2023-01-12_smart-contract-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2023-01-12_smart-contract-deployment.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2023-06-06_frontend-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2023-06-06_frontend-templates.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2023-07-19_advanced_generate_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2023-07-19_advanced_generate_command.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2024-01-13_native_binaries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2024-01-13_native_binaries.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2024-01-23_init-wizard-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2024-01-23_init-wizard-v2.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/2024-01-31_binary_distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/2024-01-31_binary_distribution.md -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/assets/2023-06-06_frontend-templates/modular_templates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/assets/2023-06-06_frontend-templates/modular_templates.jpg -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_1.jpg -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/assets/2023-06-06_frontend-templates/scenario_2.jpg -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/assets/2024-01-13_native_binaries/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/assets/2024-01-13_native_binaries/image_1.png -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/assets/2024-01-13_native_binaries/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/assets/2024-01-13_native_binaries/image_2.png -------------------------------------------------------------------------------- /docs/get-details/algokit/architecture-decisions/lifecycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/architecture-decisions/lifecycle.jpg -------------------------------------------------------------------------------- /docs/get-details/algokit/articles/output_stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/articles/output_stability.md -------------------------------------------------------------------------------- /docs/get-details/algokit/cli-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/cli-reference.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/bootstrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/bootstrap.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/completions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/completions.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/deploy.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/dispenser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/dispenser.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/doctor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/doctor.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/explore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/explore.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/generate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/generate.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/goal.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/init.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/localnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/localnet.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/analyze.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/analyze.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/ipfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/ipfs.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/mint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/mint.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/nfd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/nfd.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/opt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/opt.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/send.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/send.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/sign.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/transfer.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/vanity_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/vanity_address.md -------------------------------------------------------------------------------- /docs/get-details/algokit/features/tasks/wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/features/tasks/wallet.md -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokit-intro-video-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokit-intro-video-thumbnail.jpg -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokit-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokit-map.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokit_v2_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokit_v2_demo.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokitartifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokitartifacts.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokitdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokitdemo.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokitplayground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokitplayground.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokitv2_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokitv2_json.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/algokitv2_starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/algokitv2_starter.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/dappflow_transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/dappflow_transaction.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/localnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/localnet.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora-wallet.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora1.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora10.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora11.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora12.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora13.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora14.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora15.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora16.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora17.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora2.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora3.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora4.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora5.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora6.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora7.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora8.png -------------------------------------------------------------------------------- /docs/get-details/algokit/imgs/lora9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/imgs/lora9.png -------------------------------------------------------------------------------- /docs/get-details/algokit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/index.md -------------------------------------------------------------------------------- /docs/get-details/algokit/tutorials/algokit-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/tutorials/algokit-template.md -------------------------------------------------------------------------------- /docs/get-details/algokit/tutorials/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/tutorials/intro.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/.pages -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/apidocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/apidocs.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/account.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/app-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/app-client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/app-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/app-deploy.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/debugger.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/debugging.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/dispenser-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/dispenser-client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/capabilities/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/capabilities/transfer.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/client_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/client_generator.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/py/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/py/index.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/.pages -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/account.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/amount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/amount.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/app-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/app-client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/app-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/app-deploy.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/app.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/asset.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/debugging.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/dispenser-client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/dispenser-client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/indexer.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/testing.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/transaction.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/capabilities/transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/capabilities/transfer.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/client_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/client_generator.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/.pages: -------------------------------------------------------------------------------- 1 | title: API Ref -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/testing.TestLogger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/testing.TestLogger.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/testing.TransactionLogger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/testing.TransactionLogger.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_account.MultisigAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_account.MultisigAccount.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_account.SigningAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_account.SigningAccount.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_algo_http_client_with_retry.AlgoHttpClientWithRetry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_algo_http_client_with_retry.AlgoHttpClientWithRetry.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_amount.AlgoAmount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_amount.AlgoAmount.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_app_client.ApplicationClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_app_client.ApplicationClient.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_config.UpdatableConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_config.UpdatableConfig.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_debugging.AVMDebuggerSourceMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_debugging.AVMDebuggerSourceMap.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_debugging.AVMDebuggerSourceMapEntry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_debugging.AVMDebuggerSourceMapEntry.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_debugging.PersistSourceMapInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_debugging.PersistSourceMapInput.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_dispenser_client.TestNetDispenserApiClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_dispenser_client.TestNetDispenserApiClient.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_logic_error.LogicError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_logic_error.LogicError.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/classes/types_urlTokenBaseHTTPClient.URLTokenBaseHTTPClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/classes/types_urlTokenBaseHTTPClient.URLTokenBaseHTTPClient.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/enums/types_app.OnSchemaBreak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/enums/types_app.OnSchemaBreak.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/enums/types_app.OnUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/enums/types_app.OnUpdate.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/enums/types_indexer.AccountStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/enums/types_indexer.AccountStatus.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/enums/types_indexer.ApplicationOnComplete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/enums/types_indexer.ApplicationOnComplete.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/enums/types_indexer.SignatureType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/enums/types_indexer.SignatureType.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/index.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_account.AccountConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_account.AccountConfig.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_account.TransactionSignerAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_account.TransactionSignerAccount.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCallParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCallParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCallTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCallTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCallTransactionResultOfType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCallTransactionResultOfType.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCompilationResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppCompilationResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppDeployMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppDeployMetadata.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppDeploymentParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppDeploymentParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppLookup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppLookup.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppMetadata.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppReference.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppState.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppStorageSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.AppStorageSchema.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxName.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxReference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxReference.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxValueRequestParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxValueRequestParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxValuesRequestParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.BoxValuesRequestParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.CompiledTeal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.CompiledTeal.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.CoreAppCallArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.CoreAppCallArgs.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.CreateAppParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.CreateAppParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.RawAppCallArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.RawAppCallArgs.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.TealTemplateParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.TealTemplateParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app.UpdateAppParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app.UpdateAppParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCallABIArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCallABIArgs.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCallCoreParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCallCoreParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCallRawArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCallRawArgs.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCompilationParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientCompilationParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientDeployCallInterfaceParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientDeployCallInterfaceParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientDeployCoreParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientDeployCoreParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientDeployParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppClientDeployParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppSourceMaps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.AppSourceMaps.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.FundAppAccountParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.FundAppAccountParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.ResolveAppById.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.ResolveAppById.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.ResolveAppByIdBase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.ResolveAppByIdBase.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.SourceMapExport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_client.SourceMapExport.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.AppSources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.AppSources.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.AppSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.AppSpec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.CallConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.CallConfig.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.DeclaredSchemaValueSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.DeclaredSchemaValueSpec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.Hint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.Hint.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.ReservedSchemaValueSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.ReservedSchemaValueSpec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.Schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.Schema.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.SchemaSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.SchemaSpec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.StateSchemaSpec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.StateSchemaSpec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.Struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_app_spec.Struct.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_asset.AssetBulkOptInOutParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_asset.AssetBulkOptInOutParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_asset.AssetOptInParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_asset.AssetOptInParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_asset.AssetOptOutParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_asset.AssetOptOutParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_config.Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_config.Config.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_debugging.AVMDebuggerSourceMapDict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_debugging.AVMDebuggerSourceMapDict.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_debugging.PersistSourceMapsParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_debugging.PersistSourceMapsParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_debugging.SimulateAndPersistResponseParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_debugging.SimulateAndPersistResponseParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_dispenser_client.DispenserFundResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_dispenser_client.DispenserFundResponse.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_dispenser_client.DispenserLimitResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_dispenser_client.DispenserLimitResponse.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_dispenser_client.TestNetDispenserApiClientParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_dispenser_client.TestNetDispenserApiClientParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AccountLookupResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AccountLookupResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AccountParticipation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AccountParticipation.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AccountResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AccountResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AppLocalState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AppLocalState.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationCreatedLookupResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationCreatedLookupResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationLookupResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationLookupResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.ApplicationTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetConfigTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetConfigTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetFreezeTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetFreezeTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetHolding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetHolding.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetLookupResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetLookupResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetTransferTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetTransferTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetsCreatedLookupResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetsCreatedLookupResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetsLookupResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.AssetsLookupResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.EvalDelta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.EvalDelta.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.KeyRegistrationTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.KeyRegistrationTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.LogicTransactionSignature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.LogicTransactionSignature.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.MerkleArrayProof.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.MerkleArrayProof.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.MultisigTransactionSignature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.MultisigTransactionSignature.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.MultisigTransactionSubSignature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.MultisigTransactionSubSignature.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.PaymentTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.PaymentTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.StateProofTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.StateProofTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.StateSchema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.StateSchema.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionLookupResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionLookupResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionSearchResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionSearchResults.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionSignature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_indexer.TransactionSignature.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_logic_error.LogicErrorDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_logic_error.LogicErrorDetails.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_network_client.AlgoClientConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_network_client.AlgoClientConfig.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_network_client.AlgoConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_network_client.AlgoConfig.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgoKitLogCaptureFixture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgoKitLogCaptureFixture.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgorandFixture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgorandFixture.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgorandFixtureConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgorandFixtureConfig.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgorandTestAutomationContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_testing.AlgorandTestAutomationContext.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_testing.GetTestAccountParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_testing.GetTestAccountParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_testing.LogSnapshotConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_testing.LogSnapshotConfig.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.AtomicTransactionComposerToSend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.AtomicTransactionComposerToSend.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.ConfirmedTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.ConfirmedTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.ConfirmedTransactionResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.ConfirmedTransactionResults.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendAtomicTransactionComposerResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendAtomicTransactionComposerResults.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendTransactionParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendTransactionParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendTransactionResult.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendTransactionResult.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendTransactionResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.SendTransactionResults.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.TransactionGroupToSend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.TransactionGroupToSend.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.TransactionToSign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transaction.TransactionToSign.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.AlgoRekeyParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.AlgoRekeyParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.AlgoTransferParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.AlgoTransferParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.EnsureFundedParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.EnsureFundedParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.EnsureFundedReturnType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.EnsureFundedReturnType.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.TransferAssetParams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_transfer.TransferAssetParams.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.AlgodTokenHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.AlgodTokenHeader.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.CustomTokenHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.CustomTokenHeader.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.IndexerTokenHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.IndexerTokenHeader.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.KMDTokenHeader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/interfaces/types_urlTokenBaseHTTPClient.KMDTokenHeader.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/index.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/testing.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_account.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_algo_http_client_with_retry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_algo_http_client_with_retry.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_amount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_amount.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_amount_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_amount_spec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_app.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_app_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_app_client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_app_client_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_app_client_spec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_app_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_app_spec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_asset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_asset.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_config.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_debugging.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_dispenser_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_dispenser_client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_dispenser_client_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_dispenser_client_spec.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_indexer.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_logging.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_logic_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_logic_error.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_network_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_network_client.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_testing.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_transaction.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_transfer.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/code/modules/types_urlTokenBaseHTTPClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/code/modules/types_urlTokenBaseHTTPClient.md -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/images/lifecycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/images/lifecycle.jpg -------------------------------------------------------------------------------- /docs/get-details/algokit/utils/ts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algokit/utils/ts/index.md -------------------------------------------------------------------------------- /docs/get-details/algorand-networks/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algorand-networks/.pages -------------------------------------------------------------------------------- /docs/get-details/algorand-networks/betanet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algorand-networks/betanet.md -------------------------------------------------------------------------------- /docs/get-details/algorand-networks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algorand-networks/index.md -------------------------------------------------------------------------------- /docs/get-details/algorand-networks/mainnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algorand-networks/mainnet.md -------------------------------------------------------------------------------- /docs/get-details/algorand-networks/testnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algorand-networks/testnet.md -------------------------------------------------------------------------------- /docs/get-details/algorand_consensus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/algorand_consensus.md -------------------------------------------------------------------------------- /docs/get-details/asa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/asa.md -------------------------------------------------------------------------------- /docs/get-details/atc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/atc.md -------------------------------------------------------------------------------- /docs/get-details/atomic_transfers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/atomic_transfers.md -------------------------------------------------------------------------------- /docs/get-details/conduit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/conduit.md -------------------------------------------------------------------------------- /docs/get-details/crust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/crust.md -------------------------------------------------------------------------------- /docs/get-details/dapps/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/index.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/guidelines.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/index.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/jsonspec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/jsonspec.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/index.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v1.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v10.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v11.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v12.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v2.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v3.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v4.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v5.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v6.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v7.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v8.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/opcodes/v9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/opcodes/v9.md -------------------------------------------------------------------------------- /docs/get-details/dapps/avm/teal/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/avm/teal/specification.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/ABI/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/ABI/index.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/apps/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/apps/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/apps/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/apps/create.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/apps/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/apps/index.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/apps/innertx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/apps/innertx.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/apps/state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/apps/state.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/apps/txs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/apps/txs.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/debugging.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/frontend/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/frontend/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/frontend/apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/frontend/apps.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/frontend/smartsigs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/frontend/smartsigs.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/guidelines.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/index.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/smartsigs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/smartsigs/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/smartsigs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/smartsigs/index.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/smartsigs/modes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/smartsigs/modes.md -------------------------------------------------------------------------------- /docs/get-details/dapps/smart-contracts/smartsigs/walkthrough.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/smart-contracts/smartsigs/walkthrough.md -------------------------------------------------------------------------------- /docs/get-details/dapps/writing-contracts/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/writing-contracts/.pages -------------------------------------------------------------------------------- /docs/get-details/dapps/writing-contracts/beaker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/writing-contracts/beaker.md -------------------------------------------------------------------------------- /docs/get-details/dapps/writing-contracts/pyteal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/writing-contracts/pyteal.md -------------------------------------------------------------------------------- /docs/get-details/dapps/writing-contracts/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/dapps/writing-contracts/python.md -------------------------------------------------------------------------------- /docs/get-details/encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/encoding.md -------------------------------------------------------------------------------- /docs/get-details/ethereum_to_algorand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/ethereum_to_algorand.md -------------------------------------------------------------------------------- /docs/get-details/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/index.md -------------------------------------------------------------------------------- /docs/get-details/indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/indexer.md -------------------------------------------------------------------------------- /docs/get-details/parameter_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/parameter_tables.md -------------------------------------------------------------------------------- /docs/get-details/stateproofs/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/stateproofs/.pages -------------------------------------------------------------------------------- /docs/get-details/stateproofs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/stateproofs/index.md -------------------------------------------------------------------------------- /docs/get-details/stateproofs/light_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/stateproofs/light_client.md -------------------------------------------------------------------------------- /docs/get-details/technical_faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/technical_faq.md -------------------------------------------------------------------------------- /docs/get-details/transactions/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/transactions/.pages -------------------------------------------------------------------------------- /docs/get-details/transactions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/transactions/index.md -------------------------------------------------------------------------------- /docs/get-details/transactions/offline_transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/transactions/offline_transactions.md -------------------------------------------------------------------------------- /docs/get-details/transactions/payment_prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/transactions/payment_prompts.md -------------------------------------------------------------------------------- /docs/get-details/transactions/signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/transactions/signatures.md -------------------------------------------------------------------------------- /docs/get-details/transactions/transactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/transactions/transactions.md -------------------------------------------------------------------------------- /docs/get-details/useful_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-details/useful_resources.md -------------------------------------------------------------------------------- /docs/get-started/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/.pages -------------------------------------------------------------------------------- /docs/get-started/algokit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/algokit.md -------------------------------------------------------------------------------- /docs/get-started/basics/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/basics/.pages -------------------------------------------------------------------------------- /docs/get-started/basics/what_is_blockchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/basics/what_is_blockchain.md -------------------------------------------------------------------------------- /docs/get-started/basics/whats_a_dapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/basics/whats_a_dapp.md -------------------------------------------------------------------------------- /docs/get-started/basics/where_to_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/basics/where_to_start.md -------------------------------------------------------------------------------- /docs/get-started/basics/why_algorand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/basics/why_algorand.md -------------------------------------------------------------------------------- /docs/get-started/tokenization/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/tokenization/.pages -------------------------------------------------------------------------------- /docs/get-started/tokenization/ft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/tokenization/ft.md -------------------------------------------------------------------------------- /docs/get-started/tokenization/nft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/get-started/tokenization/nft.md -------------------------------------------------------------------------------- /docs/imgs/AlgoExplorerLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/AlgoExplorerLogo.png -------------------------------------------------------------------------------- /docs/imgs/accounts-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/accounts-0.png -------------------------------------------------------------------------------- /docs/imgs/accounts-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/accounts-1.png -------------------------------------------------------------------------------- /docs/imgs/accounts-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/accounts-2.png -------------------------------------------------------------------------------- /docs/imgs/accounts-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/accounts-3.png -------------------------------------------------------------------------------- /docs/imgs/accounts-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/accounts-4.png -------------------------------------------------------------------------------- /docs/imgs/accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/accounts.png -------------------------------------------------------------------------------- /docs/imgs/aikon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/aikon.png -------------------------------------------------------------------------------- /docs/imgs/algo_dev_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algo_dev_stack.png -------------------------------------------------------------------------------- /docs/imgs/algoexplorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algoexplorer.png -------------------------------------------------------------------------------- /docs/imgs/algoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algoicon.png -------------------------------------------------------------------------------- /docs/imgs/algokit-intro-video-thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algokit-intro-video-thumbnail.jpg -------------------------------------------------------------------------------- /docs/imgs/algokit_v2_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algokit_v2_demo.png -------------------------------------------------------------------------------- /docs/imgs/algokitartifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algokitartifacts.png -------------------------------------------------------------------------------- /docs/imgs/algokitdemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algokitdemo.png -------------------------------------------------------------------------------- /docs/imgs/algokitplayground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algokitplayground.png -------------------------------------------------------------------------------- /docs/imgs/algokitv2_json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algokitv2_json.png -------------------------------------------------------------------------------- /docs/imgs/algokitv2_starter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algokitv2_starter.png -------------------------------------------------------------------------------- /docs/imgs/algorand_consensus-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algorand_consensus-1.png -------------------------------------------------------------------------------- /docs/imgs/algorand_consensus-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algorand_consensus-2.png -------------------------------------------------------------------------------- /docs/imgs/algorand_consensus-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algorand_consensus-3.png -------------------------------------------------------------------------------- /docs/imgs/algorand_consensus-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algorand_consensus-4.png -------------------------------------------------------------------------------- /docs/imgs/algosigner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algosigner.png -------------------------------------------------------------------------------- /docs/imgs/algotides-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/algotides-logo.png -------------------------------------------------------------------------------- /docs/imgs/app-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-1.jpg -------------------------------------------------------------------------------- /docs/imgs/app-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-10.jpg -------------------------------------------------------------------------------- /docs/imgs/app-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-2.jpg -------------------------------------------------------------------------------- /docs/imgs/app-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-3.jpg -------------------------------------------------------------------------------- /docs/imgs/app-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-4.jpg -------------------------------------------------------------------------------- /docs/imgs/app-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-5.jpg -------------------------------------------------------------------------------- /docs/imgs/app-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-6.jpg -------------------------------------------------------------------------------- /docs/imgs/app-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-7.jpg -------------------------------------------------------------------------------- /docs/imgs/app-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-8.jpg -------------------------------------------------------------------------------- /docs/imgs/app-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/app-9.jpg -------------------------------------------------------------------------------- /docs/imgs/asc1_sdk_usage-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/asc1_sdk_usage-1.png -------------------------------------------------------------------------------- /docs/imgs/asc1_sdk_usage-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/asc1_sdk_usage-2.png -------------------------------------------------------------------------------- /docs/imgs/atomic_transfers-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/atomic_transfers-1.png -------------------------------------------------------------------------------- /docs/imgs/atomic_transfers-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/atomic_transfers-2.png -------------------------------------------------------------------------------- /docs/imgs/basics-alicebob-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-alicebob-1.png -------------------------------------------------------------------------------- /docs/imgs/basics-alicebob-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-alicebob-2.png -------------------------------------------------------------------------------- /docs/imgs/basics-blockchain-vs-traditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-blockchain-vs-traditional.png -------------------------------------------------------------------------------- /docs/imgs/basics-immutable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-immutable.png -------------------------------------------------------------------------------- /docs/imgs/basics-pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-pos.png -------------------------------------------------------------------------------- /docs/imgs/basics-pow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-pow.png -------------------------------------------------------------------------------- /docs/imgs/basics-traditional-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-traditional-error.png -------------------------------------------------------------------------------- /docs/imgs/basics-woman-bid-blockchain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-woman-bid-blockchain.png -------------------------------------------------------------------------------- /docs/imgs/basics-woman-bid-traditional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/basics-woman-bid-traditional.png -------------------------------------------------------------------------------- /docs/imgs/block_interval_commitment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/block_interval_commitment.png -------------------------------------------------------------------------------- /docs/imgs/block_interval_commitment_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/block_interval_commitment_arch.png -------------------------------------------------------------------------------- /docs/imgs/blockchain-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/blockchain-diagram.png -------------------------------------------------------------------------------- /docs/imgs/blockchain-properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/blockchain-properties.png -------------------------------------------------------------------------------- /docs/imgs/conduitarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/conduitarch.png -------------------------------------------------------------------------------- /docs/imgs/dapp-bid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/dapp-bid.png -------------------------------------------------------------------------------- /docs/imgs/dapp-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/dapp-close.png -------------------------------------------------------------------------------- /docs/imgs/dapp-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/dapp-create.png -------------------------------------------------------------------------------- /docs/imgs/dapp-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/dapp-setup.png -------------------------------------------------------------------------------- /docs/imgs/dapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/dapps.png -------------------------------------------------------------------------------- /docs/imgs/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/discord.png -------------------------------------------------------------------------------- /docs/imgs/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/go.png -------------------------------------------------------------------------------- /docs/imgs/goalseekericon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/goalseekericon.png -------------------------------------------------------------------------------- /docs/imgs/indexerv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/indexerv2.png -------------------------------------------------------------------------------- /docs/imgs/integration-indexer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/integration-indexer.png -------------------------------------------------------------------------------- /docs/imgs/integrations-algos-asas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/integrations-algos-asas.png -------------------------------------------------------------------------------- /docs/imgs/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/java.png -------------------------------------------------------------------------------- /docs/imgs/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/js.png -------------------------------------------------------------------------------- /docs/imgs/light_client_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/light_client_arch.png -------------------------------------------------------------------------------- /docs/imgs/localnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/localnet.png -------------------------------------------------------------------------------- /docs/imgs/lora-wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora-wallet.png -------------------------------------------------------------------------------- /docs/imgs/lora1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora1.png -------------------------------------------------------------------------------- /docs/imgs/lora10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora10.png -------------------------------------------------------------------------------- /docs/imgs/lora11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora11.png -------------------------------------------------------------------------------- /docs/imgs/lora12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora12.png -------------------------------------------------------------------------------- /docs/imgs/lora13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora13.png -------------------------------------------------------------------------------- /docs/imgs/lora14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora14.png -------------------------------------------------------------------------------- /docs/imgs/lora15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora15.png -------------------------------------------------------------------------------- /docs/imgs/lora16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora16.png -------------------------------------------------------------------------------- /docs/imgs/lora17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora17.png -------------------------------------------------------------------------------- /docs/imgs/lora2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora2.png -------------------------------------------------------------------------------- /docs/imgs/lora3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora3.png -------------------------------------------------------------------------------- /docs/imgs/lora4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora4.png -------------------------------------------------------------------------------- /docs/imgs/lora5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora5.png -------------------------------------------------------------------------------- /docs/imgs/lora6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora6.png -------------------------------------------------------------------------------- /docs/imgs/lora7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora7.png -------------------------------------------------------------------------------- /docs/imgs/lora8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora8.png -------------------------------------------------------------------------------- /docs/imgs/lora9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/lora9.png -------------------------------------------------------------------------------- /docs/imgs/modes-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/modes-0.png -------------------------------------------------------------------------------- /docs/imgs/modes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/modes-1.png -------------------------------------------------------------------------------- /docs/imgs/modes-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/modes-2.png -------------------------------------------------------------------------------- /docs/imgs/myalgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/myalgo.png -------------------------------------------------------------------------------- /docs/imgs/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/network.png -------------------------------------------------------------------------------- /docs/imgs/purestakelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/purestakelogo.png -------------------------------------------------------------------------------- /docs/imgs/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/python.png -------------------------------------------------------------------------------- /docs/imgs/refarray_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/refarray_1.png -------------------------------------------------------------------------------- /docs/imgs/refarray_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/refarray_2.png -------------------------------------------------------------------------------- /docs/imgs/refarray_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/refarray_3.png -------------------------------------------------------------------------------- /docs/imgs/refarray_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/refarray_4.png -------------------------------------------------------------------------------- /docs/imgs/refarray_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/refarray_5.png -------------------------------------------------------------------------------- /docs/imgs/refarray_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/refarray_6.png -------------------------------------------------------------------------------- /docs/imgs/rekey-single-multisig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/rekey-single-multisig.png -------------------------------------------------------------------------------- /docs/imgs/rekey-single-single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/rekey-single-single.png -------------------------------------------------------------------------------- /docs/imgs/renew-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/renew-0.png -------------------------------------------------------------------------------- /docs/imgs/replit-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/replit-512.png -------------------------------------------------------------------------------- /docs/imgs/sandbox-node-guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/sandbox-node-guy.png -------------------------------------------------------------------------------- /docs/imgs/sccalltypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/sccalltypes.png -------------------------------------------------------------------------------- /docs/imgs/stateful-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/stateful-1.png -------------------------------------------------------------------------------- /docs/imgs/stateful-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/stateful-2.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-0.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-1.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-2.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-3.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-4.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-5.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-6.png -------------------------------------------------------------------------------- /docs/imgs/teal_overview-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/teal_overview-7.png -------------------------------------------------------------------------------- /docs/imgs/tealdbg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/tealdbg-1.png -------------------------------------------------------------------------------- /docs/imgs/tealdbg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/tealdbg-2.png -------------------------------------------------------------------------------- /docs/imgs/tealdbg-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/tealdbg-3.png -------------------------------------------------------------------------------- /docs/imgs/tokenization-alice-bob-nft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/tokenization-alice-bob-nft.png -------------------------------------------------------------------------------- /docs/imgs/tokenization-fungible-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/tokenization-fungible-1.png -------------------------------------------------------------------------------- /docs/imgs/tokenization-fungible-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/tokenization-fungible-2.png -------------------------------------------------------------------------------- /docs/imgs/tokenization-nfts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/tokenization-nfts.png -------------------------------------------------------------------------------- /docs/imgs/transaction_commitment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/transaction_commitment.png -------------------------------------------------------------------------------- /docs/imgs/uneconomia-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/uneconomia-logo.png -------------------------------------------------------------------------------- /docs/imgs/vertices-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/vertices-logo.png -------------------------------------------------------------------------------- /docs/imgs/walletconnect-establishing-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/walletconnect-establishing-connection.png -------------------------------------------------------------------------------- /docs/imgs/walletconnect-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/walletconnect-header.png -------------------------------------------------------------------------------- /docs/imgs/yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/imgs/yt.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/rest-apis/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/rest-apis/.pages -------------------------------------------------------------------------------- /docs/rest-apis/algod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/rest-apis/algod.md -------------------------------------------------------------------------------- /docs/rest-apis/indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/rest-apis/indexer.md -------------------------------------------------------------------------------- /docs/rest-apis/kmd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/rest-apis/kmd.md -------------------------------------------------------------------------------- /docs/rest-apis/restendpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/rest-apis/restendpoints.md -------------------------------------------------------------------------------- /docs/run-a-node/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/.pages -------------------------------------------------------------------------------- /docs/run-a-node/operations/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/operations/.pages -------------------------------------------------------------------------------- /docs/run-a-node/operations/catchup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/operations/catchup.md -------------------------------------------------------------------------------- /docs/run-a-node/operations/switch_networks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/operations/switch_networks.md -------------------------------------------------------------------------------- /docs/run-a-node/participate/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/participate/.pages -------------------------------------------------------------------------------- /docs/run-a-node/participate/generate_keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/participate/generate_keys.md -------------------------------------------------------------------------------- /docs/run-a-node/participate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/participate/index.md -------------------------------------------------------------------------------- /docs/run-a-node/participate/offline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/participate/offline.md -------------------------------------------------------------------------------- /docs/run-a-node/participate/online.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/participate/online.md -------------------------------------------------------------------------------- /docs/run-a-node/participate/renew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/participate/renew.md -------------------------------------------------------------------------------- /docs/run-a-node/reference/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/reference/.pages -------------------------------------------------------------------------------- /docs/run-a-node/reference/artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/reference/artifacts.md -------------------------------------------------------------------------------- /docs/run-a-node/reference/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/reference/config.md -------------------------------------------------------------------------------- /docs/run-a-node/reference/relay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/reference/relay.md -------------------------------------------------------------------------------- /docs/run-a-node/reference/telemetry-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/reference/telemetry-config.md -------------------------------------------------------------------------------- /docs/run-a-node/setup/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/setup/.pages -------------------------------------------------------------------------------- /docs/run-a-node/setup/indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/setup/indexer.md -------------------------------------------------------------------------------- /docs/run-a-node/setup/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/setup/install.md -------------------------------------------------------------------------------- /docs/run-a-node/setup/node-troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/setup/node-troubleshooting.md -------------------------------------------------------------------------------- /docs/run-a-node/setup/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/run-a-node/setup/types.md -------------------------------------------------------------------------------- /docs/sdks/.pages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/sdks/.pages -------------------------------------------------------------------------------- /docs/sdks/go/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/sdks/go/index.md -------------------------------------------------------------------------------- /docs/sdks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/sdks/index.md -------------------------------------------------------------------------------- /docs/sdks/java/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/sdks/java/index.md -------------------------------------------------------------------------------- /docs/sdks/javascript/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/sdks/javascript/index.md -------------------------------------------------------------------------------- /docs/sdks/python/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/docs/sdks/python/index.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/algod_specfile_processors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/algod_specfile_processors -------------------------------------------------------------------------------- /scripts/algokit-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/algokit-docs.sh -------------------------------------------------------------------------------- /scripts/algokit-utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/algokit-utils.py -------------------------------------------------------------------------------- /scripts/config_json_gen/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/config_json_gen/main.go -------------------------------------------------------------------------------- /scripts/config_json_gen/template.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/config_json_gen/template.tmpl -------------------------------------------------------------------------------- /scripts/contains_doc_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/contains_doc_changes.sh -------------------------------------------------------------------------------- /scripts/convert_swagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/convert_swagger.py -------------------------------------------------------------------------------- /scripts/example_tracker/example_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/example_tracker/example_list.md -------------------------------------------------------------------------------- /scripts/example_tracker/go_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/example_tracker/go_examples.txt -------------------------------------------------------------------------------- /scripts/example_tracker/java_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/example_tracker/java_examples.txt -------------------------------------------------------------------------------- /scripts/example_tracker/js_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/example_tracker/js_examples.txt -------------------------------------------------------------------------------- /scripts/example_tracker/list_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/example_tracker/list_examples.sh -------------------------------------------------------------------------------- /scripts/example_tracker/py_examples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/example_tracker/py_examples.txt -------------------------------------------------------------------------------- /scripts/import_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/import_examples.py -------------------------------------------------------------------------------- /scripts/reformat-all-commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/reformat-all-commands.sh -------------------------------------------------------------------------------- /scripts/reformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algorandfoundation/docs/HEAD/scripts/reformat.py -------------------------------------------------------------------------------- /scripts/tmp3gygigg3: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------