Arc56.Generated.algorandfoundation.TEALScript 1.0.4.2026082120

dotnet add package Arc56.Generated.algorandfoundation.TEALScript --version 1.0.4.2026082120
                    
NuGet\Install-Package Arc56.Generated.algorandfoundation.TEALScript -Version 1.0.4.2026082120
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Arc56.Generated.algorandfoundation.TEALScript" Version="1.0.4.2026082120" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Arc56.Generated.algorandfoundation.TEALScript" Version="1.0.4.2026082120" />
                    
Directory.Packages.props
<PackageReference Include="Arc56.Generated.algorandfoundation.TEALScript" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Arc56.Generated.algorandfoundation.TEALScript --version 1.0.4.2026082120
                    
#r "nuget: Arc56.Generated.algorandfoundation.TEALScript, 1.0.4.2026082120"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Arc56.Generated.algorandfoundation.TEALScript@1.0.4.2026082120
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Arc56.Generated.algorandfoundation.TEALScript&version=1.0.4.2026082120
                    
Install as a Cake Addin
#tool nuget:?package=Arc56.Generated.algorandfoundation.TEALScript&version=1.0.4.2026082120
                    
Install as a Cake Tool

Arc56.Generated.algorandfoundation.TEALScript

Auto-generated typed Algorand smart-contract clients for algorandfoundation/TEALScript, built from the ARC-56 specs listed below.

Generated by the Arc56Registry pipeline, using the scholtz/dotnet-algorand-sdk ARC-56 client generator. Do not edit these files by hand — they are regenerated automatically whenever the source ARC-56 spec changes.

Install

dotnet add package Arc56.Generated.algorandfoundation.TEALScript

This package depends on Algorand5 for ABI encoding, transaction building, and algod/indexer access.

Basic usage

Each contract in this package lives in its own namespace (a hash of its source URL is appended to keep multiple contracts in the same repository from colliding), and exposes a <Name>Proxy class:

using Algorand.Algod;
using Arc56.Generated.algorandfoundation.TEALScript.ConstantProductAMM_c0a20c59;

using var httpClient = HttpClientConfigurator.ConfigureHttpClient(AlgodConfiguration.MainNet);
var algod = new AlgodClient(httpClient);
var client = new ConstantProductAMMProxy(algod, appId: 123456789);

// call a contract method, e.g.:
// var result = await client.SomeMethod(...);

Contracts included in this package

Namespace Class Source ARC-56 spec
Arc56.Generated.algorandfoundation.TEALScript.ConstantProductAMM_c0a20c59 ConstantProductAMMProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/amm/tealscript_artifacts/ConstantProductAMM.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.AbstractedAccount_9833b15e AbstractedAccountProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/arc58/artifacts/AbstractedAccount.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ARC72_7f3b214d ARC72Proxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/arc72/artifacts/ARC72.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ARC75_913b4b22 ARC75Proxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/arc75/artifacts/ARC75.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.Auction_eeb20731 AuctionProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/auction/tealscript_artifacts/Auction.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.BigBox_ea6b4f06 BigBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/big_box/artifacts/BigBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.Calculator_076a1441 CalculatorProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/calculator/artifacts/Calculator.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.FactoryCaller_b7e77d48 FactoryCallerProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/itxns/artifacts/FactoryCaller.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.NFTFactory_77dc5a18 NFTFactoryProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/itxns/artifacts/NFTFactory.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.CreatorVerifier_9240aa5a CreatorVerifierProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/lsig_with_app/artifacts/CreatorVerifier.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.MerkleTree_e150cb35 MerkleTreeProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/merkle/artifacts/MerkleTree.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.NonABIExample_e305fb15 NonABIExampleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/non_abi/artifacts/NonABIExample.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.StakingPool_9685fcb0 StakingPoolProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/reti/artifacts/StakingPool.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ValidatorRegistry_24446b2e (generation failed - see state.json) https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/reti/artifacts/ValidatorRegistry.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.Simple_e01cade0 SimpleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/simple/artifacts/Simple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ContactsApp_59c6f760 ContactsAppProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/examples/tuple_in_box/tealscript_artifacts/ContactsApp.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.A_36359300 AProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/A.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestAccessDynamicArrayElementInTuple_8440ff83 ABITestAccessDynamicArrayElementInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestAccessDynamicArrayElementInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestAccessDynamicArrayInMiddleOfTuple_1b8550f6 ABITestAccessDynamicArrayInMiddleOfTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestAccessDynamicArrayInMiddleOfTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestAccessDynamicStringArray_bd7a4c17 ABITestAccessDynamicStringArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestAccessDynamicStringArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestAccessStaticArrayInBoxInVariable_322bbfd7 ABITestAccessStaticArrayInBoxInVariableProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestAccessStaticArrayInBoxInVariable.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestAccesStringInTuple_576a5c1b ABITestAccesStringInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestAccesStringInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestAngularCasting_c0d0062f ABITestAngularCastingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestAngularCasting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayInMethodCall_f4234aba ABITestArrayInMethodCallProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayInMethodCall.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayInObjectInState_2ccb4302 ABITestArrayInObjectInStateProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayInObjectInState.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayInTuple_839a3522 ABITestArrayInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayLength_9c8cdb15 ABITestArrayLengthProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayLength.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayPop_5e8d124c ABITestArrayPopProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayPop.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayPopValue_35e0fef4 ABITestArrayPopValueProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayPopValue.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayPush_e17dbe2c ABITestArrayPushProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayPush.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArrayRef_21f98745 ABITestArrayRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArrayRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArraySplice_b941f022 ABITestArraySpliceProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArraySplice.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestArraySpliceValue_fb789100 ABITestArraySpliceValueProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestArraySpliceValue.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBiggerByteCasting_111e08a8 ABITestBiggerByteCastingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBiggerByteCasting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBooleanArgAndReturn_6e5c6953 ABITestBooleanArgAndReturnProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBooleanArgAndReturn.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBooleanLastInObj_af1ea9a5 ABITestBooleanLastInObjProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBooleanLastInObj.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolFirstInTuple_47a1bd50 ABITestBoolFirstInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolFirstInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolInNestedTuple_8a3bc99b ABITestBoolInNestedTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolInNestedTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolInObj_eecddf5c ABITestBoolInObjProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolInObj.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolTuple_12422180 ABITestBoolTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolTupleAccess_37e048e4 ABITestBoolTupleAccessProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolTupleAccess.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolTupleUpdate_639d56a6 ABITestBoolTupleUpdateProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolTupleUpdate.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolUpdateInBox_1e85aa64 ABITestBoolUpdateInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolUpdateInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBoolUpdateInObjectInBox_d0dd4d68 ABITestBoolUpdateInObjectInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBoolUpdateInObjectInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBytesCasting_bb4bedcc ABITestBytesCastingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBytesCasting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestBytesReturn_0518adfd ABITestBytesReturnProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestBytesReturn.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestCastBytesFunction_602464f4 ABITestCastBytesFunctionProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestCastBytesFunction.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestChainedPropertyAfterTuple_95051a6d ABITestChainedPropertyAfterTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestChainedPropertyAfterTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestCustomTypes_d5e3697f ABITestCustomTypesProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestCustomTypes.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDisgusting_b1544f34 ABITestDisgustingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDisgusting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicAccessOfDynamicElementInStaticArray_24f38df1 ABITestDynamicAccessOfDynamicElementInStaticArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicAccessOfDynamicElementInStaticArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicArray_35af5772 ABITestDynamicArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicArrayArg_b24c09d6 ABITestDynamicArrayArgProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicArrayArg.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicArrayElements_716fab03 ABITestDynamicArrayElementsProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicArrayElements.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicArrayInMiddleOfTuple_213decd2 ABITestDynamicArrayInMiddleOfTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicArrayInMiddleOfTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicArrayIteration_2627ca27 ABITestDynamicArrayIterationProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicArrayIteration.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicArrayLength_40c5376a ABITestDynamicArrayLengthProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicArrayLength.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicBoolArray_9265cb84 ABITestDynamicBoolArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicBoolArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicBoolArrayAccess_f460e142 ABITestDynamicBoolArrayAccessProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicBoolArrayAccess.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicBoolArrayUpdate_492fc3fd ABITestDynamicBoolArrayUpdateProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicBoolArrayUpdate.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestDynamicTupleArray_c98d76e4 ABITestDynamicTupleArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestDynamicTupleArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestEmptyDynamicArray_c7566746 ABITestEmptyDynamicArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestEmptyDynamicArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestEmptyStaticArray_5186b4e7 ABITestEmptyStaticArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestEmptyStaticArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestExtractUint_4247000d ABITestExtractUintProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestExtractUint.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestForEachReturn_7a7b9a2a ABITestForEachReturnProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestForEachReturn.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestForOfBreak_6c15b970 ABITestForOfBreakProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestForOfBreak.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestForOfContinue_76b1b1f1 ABITestForOfContinueProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestForOfContinue.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestGlobalMethodInChain_c7c88c33 ABITestGlobalMethodInChainProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestGlobalMethodInChain.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestLargeNestedStaticForEachInBox_c0cc8ae6 ABITestLargeNestedStaticForEachInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestLargeNestedStaticForEachInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestLargeNestedStaticForOfInBox_06ed2ccb ABITestLargeNestedStaticForOfInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestLargeNestedStaticForOfInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestMaxUfixed_b6c41a0b ABITestMaxUfixedProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestMaxUfixed.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestMixedStaticArrayElements_3e8936dd ABITestMixedStaticArrayElementsProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestMixedStaticArrayElements.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestMultiBytesTuple_36735b5e ABITestMultiBytesTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestMultiBytesTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestMultiNestedArrayRef_87fb0b0e ABITestMultiNestedArrayRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestMultiNestedArrayRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNamedTuple_586606a0 ABITestNamedTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNamedTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedArrayAlongsideBoolean_5564826c ABITestNestedArrayAlongsideBooleanProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedArrayAlongsideBoolean.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedArrayInBox_0ff79665 ABITestNestedArrayInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedArrayInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedArrayInBoxLast_b10cd645 ABITestNestedArrayInBoxLastProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedArrayInBoxLast.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedArrayInBoxWithoutBool_527bd9b2 ABITestNestedArrayInBoxWithoutBoolProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedArrayInBoxWithoutBool.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedArrayLengthInObject_a64fe943 ABITestNestedArrayLengthInObjectProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedArrayLengthInObject.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedArrayLengthInObjectVariable_2ae13301 ABITestNestedArrayLengthInObjectVariableProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedArrayLengthInObjectVariable.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedArrayRef_4ca87133 ABITestNestedArrayRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedArrayRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedObject_cab9417f ABITestNestedObjectProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedObject.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedObjectType_63a7f7ac ABITestNestedObjectTypeProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedObjectType.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedStaticArray_a6071ed5 ABITestNestedStaticArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedStaticArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedStaticArrayLength_da525dfa ABITestNestedStaticArrayLengthProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedStaticArrayLength.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedStaticForEach_9fcf3cd6 ABITestNestedStaticForEachProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedStaticForEach.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedStaticForEachInBox_d39bfcd0 ABITestNestedStaticForEachInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedStaticForEachInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedStructInBoxMap_af7c0a15 (generation failed - see state.json) https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedStructInBoxMap.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedTuple_4fe99338 ABITestNestedTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNestedTypesInSignature_f7aecf48 ABITestNestedTypesInSignatureProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNestedTypesInSignature.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNonE2E_f422bf51 ABITestNonE2EProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNonE2E.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNonLiteralDynamicElementInTuple_74dd4910 ABITestNonLiteralDynamicElementInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNonLiteralDynamicElementInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNonLiteralNestedArrayRef_ce023937 ABITestNonLiteralNestedArrayRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNonLiteralNestedArrayRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNonLiteralStaticArrayAccess_5aa8d13e ABITestNonLiteralStaticArrayAccessProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNonLiteralStaticArrayAccess.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestNonLiteralStaticArrayElements_9f34aa78 ABITestNonLiteralStaticArrayElementsProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestNonLiteralStaticArrayElements.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestObjectArrayRef_703e3f1c ABITestObjectArrayRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestObjectArrayRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestObjectInArgs_9b2ee681 ABITestObjectInArgsProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestObjectInArgs.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestObjectRef_358f5df1 ABITestObjectRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestObjectRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestOpcodeParamFromObject_b1e0d9f3 ABITestOpcodeParamFromObjectProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestOpcodeParamFromObject.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestPartialStaticArray_861f87a9 ABITestPartialStaticArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestPartialStaticArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestPlusEqualsArrayValue_ad825bce ABITestPlusEqualsArrayValueProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestPlusEqualsArrayValue.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestPlusEqualsObjValue_28d0dcda ABITestPlusEqualsObjValueProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestPlusEqualsObjValue.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestPlusEqualsObjValueInBox_646f02e0 (fails to compile - excluded, see state.json) https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestPlusEqualsObjValueInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestPostBoolTupleOffset_65df7a21 ABITestPostBoolTupleOffsetProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestPostBoolTupleOffset.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestPushToArrayInBox_3bed5047 ABITestPushToArrayInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestPushToArrayInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestRawBytesFunction_4265de12 ABITestRawBytesFunctionProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestRawBytesFunction.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestRefTypes_323f48ee ABITestRefTypesProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestRefTypes.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestReturnByte_62d317a3 ABITestReturnByteProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestReturnByte.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestReturnDynamicArray_e87b6616 ABITestReturnDynamicArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestReturnDynamicArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestReturnDynamicArrayFromTuple_c94db25e ABITestReturnDynamicArrayFromTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestReturnDynamicArrayFromTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestReturnStaticArray_10c71d8a ABITestReturnStaticArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestReturnStaticArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestReturnTuple_4f1f0e3d ABITestReturnTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestReturnTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestReturnTupleWithDyamicArray_a11c9381 ABITestReturnTupleWithDyamicArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestReturnTupleWithDyamicArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestSetStaticArrayElement_9da155d2 ABITestSetStaticArrayElementProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestSetStaticArrayElement.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestShortenDynamicElementInTuple_2a56ae49 ABITestShortenDynamicElementInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestShortenDynamicElementInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestShortTypeNotation_30f29d2b ABITestShortTypeNotationProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestShortTypeNotation.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestSimpleTuple_db6ca35c ABITestSimpleTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestSimpleTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestSmallerByteCasting_0109be64 ABITestSmallerByteCastingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestSmallerByteCasting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestSpliceFirstElement_57ba967d ABITestSpliceFirstElementProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestSpliceFirstElement.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestSpliceFirstElementValue_21392146 ABITestSpliceFirstElementValueProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestSpliceFirstElementValue.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestSpliceLastElement_564651aa ABITestSpliceLastElementProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestSpliceLastElement.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestSpliceLastElementValue_f5f5f754 ABITestSpliceLastElementValueProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestSpliceLastElementValue.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticArray_d87fa8db ABITestStaticArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticArrayArg_9f4c5616 ABITestStaticArrayArgProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticArrayArg.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticArrayInStorageMap_d6d43599 ABITestStaticArrayInStorageMapProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticArrayInStorageMap.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticArrayInStorageRef_0fece457 ABITestStaticArrayInStorageRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticArrayInStorageRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticArrayLength_bcde3265 ABITestStaticArrayLengthProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticArrayLength.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticBoolArray_58077f29 ABITestStaticBoolArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticBoolArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticBoolArrayAccess_850cecbf ABITestStaticBoolArrayAccessProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticBoolArrayAccess.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticBoolArrayUpdate_ffe3d4fd ABITestStaticBoolArrayUpdateProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticBoolArrayUpdate.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticByteCasting_73571d89 ABITestStaticByteCastingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticByteCasting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticForEach_e0c13db9 ABITestStaticForEachProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticForEach.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticForOf_314720c0 ABITestStaticForOfProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticForOf.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticStringArrayArg_c78a33ac ABITestStaticStringArrayArgProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticStringArrayArg.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStaticTypeInBox_672cc4bf ABITestStaticTypeInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStaticTypeInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStoragePropertyReferenceInBox_d0aaf8fc (generation failed - see state.json) https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStoragePropertyReferenceInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStorageRefAccount_ae3289f3 ABITestStorageRefAccountProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStorageRefAccount.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStorageRefKey_c30c8809 ABITestStorageRefKeyProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStorageRefKey.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStorageTypeHint_5e5f520c ABITestStorageTypeHintProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStorageTypeHint.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStringAccessor_335d0ad3 ABITestStringAccessorProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStringAccessor.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStringArg_467841bd ABITestStringArgProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStringArg.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStringArray_fa1c2679 ABITestStringArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStringArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStringInTuple_980a5467 ABITestStringInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStringInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStringLength_ea4f19cf ABITestStringLengthProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStringLength.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestStringReturn_2e20d840 ABITestStringReturnProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestStringReturn.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestThreeDimensionalUint16Array_aa451296 ABITestThreeDimensionalUint16ArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestThreeDimensionalUint16Array.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestTupleArg_f77a07dd ABITestTupleArgProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestTupleArg.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestTupleInArray_c9e3fe56 ABITestTupleInArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestTupleInArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestTupleInTuple_ad9a847e ABITestTupleInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestTupleInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestTxnTypes_66022a1c ABITestTxnTypesProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestTxnTypes.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestTypedConst_d3a68189 ABITestTypedConstProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestTypedConst.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestTypedVarFromStorage_aa9a0e53 ABITestTypedVarFromStorageProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestTypedVarFromStorage.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUint64Casting_b403bf19 ABITestUint64CastingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUint64Casting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUintCasting_e99fcef0 ABITestUintCastingProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUintCasting.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUintNComparison_bd47cbfb ABITestUintNComparisonProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUintNComparison.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateArrayRefInBoxStorage_89ab2c10 ABITestUpdateArrayRefInBoxStorageProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateArrayRefInBoxStorage.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateDynamicArrayElement_703e2222 ABITestUpdateDynamicArrayElementProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateDynamicArrayElement.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateDynamicArrayInMiddleOfTuple_9c493a87 ABITestUpdateDynamicArrayInMiddleOfTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateDynamicArrayInMiddleOfTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateDynamicArrayInTuple_29d7c701 ABITestUpdateDynamicArrayInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateDynamicArrayInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateDynamicElementInTupleWithSameLength_5659ff59 ABITestUpdateDynamicElementInTupleWithSameLengthProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateDynamicElementInTupleWithSameLength.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateNamedTuple_42a9b402 ABITestUpdateNamedTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateNamedTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateNestedStaticArray_31a7be1e ABITestUpdateNestedStaticArrayProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateNestedStaticArray.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateNestedStaticArrayElement_c7cd3436 ABITestUpdateNestedStaticArrayElementProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateNestedStaticArrayElement.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateStaticArrayInStorageMap_15c84213 ABITestUpdateStaticArrayInStorageMapProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateStaticArrayInStorageMap.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateStaticArrayInStorageRef_78b7b2b7 ABITestUpdateStaticArrayInStorageRefProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateStaticArrayInStorageRef.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateStaticFieldInDynamicObjectInBox_80f6c15d ABITestUpdateStaticFieldInDynamicObjectInBoxProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateStaticFieldInDynamicObjectInBox.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateStringInTuple_7473e51d ABITestUpdateStringInTupleProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateStringInTuple.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ABITestUpdateTupleWithOnlyDynamicTypes_5d0bc530 ABITestUpdateTupleWithOnlyDynamicTypesProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ABITestUpdateTupleWithOnlyDynamicTypes.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.AccountTest_dd246b60 AccountTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/AccountTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.AD_5431d53e ADProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/AD.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ARC56Test_237ede32 (generation failed - see state.json) https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ARC56Test.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ARC56TestNoTemplateVars_ccdf8a35 ARC56TestNoTemplateVarsProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ARC56TestNoTemplateVars.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.AVM11_e72d9899 AVM11Proxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/AVM11.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.B_10d1c7f5 BProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/B.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.B2_bf9c6aff B2Proxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/B2.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.BigComment_805c81cf BigCommentProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/BigComment.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.BinaryTest_1535f562 BinaryTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/BinaryTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.BytecblockTest_b1e565be BytecblockTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/BytecblockTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.C_a9e0d533 CProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/C.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.CblocksTest_a4482aa6 (generation failed - see state.json) https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/CblocksTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ContractWithCustomStruct_983e8a06 ContractWithCustomStructProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ContractWithCustomStruct.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ContractWithLsigProgram_781804f5 ContractWithLsigProgramProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ContractWithLsigProgram.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ContratWithLsigAddress_58585d2a ContratWithLsigAddressProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ContratWithLsigAddress.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.D_8a09140d DProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/D.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.DummyContract_c28559c6 DummyContractProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/DummyContract.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.E_f2f23793 EProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/E.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ExternalContract_4041cd58 ExternalContractProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ExternalContract.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.F_712725ac FProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/F.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.FunctionsTest_a76a9d76 FunctionsTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/FunctionsTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.G_1eb8075e GProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/G.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.GeneralTest_4f8027d2 (fails to compile - excluded, see state.json) https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/GeneralTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.IfTest_0d35c0ea IfTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/IfTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.IntcblockTest_033a0a40 IntcblockTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/IntcblockTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ItxnsTest_58310760 ItxnsTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ItxnsTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.LoopsTest_6db9d853 LoopsTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/LoopsTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.MathTest_d79a5045 MathTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/MathTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.MultiInheritance_77955839 MultiInheritanceProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/MultiInheritance.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.MultiInheritanceProgram_b9bedc35 MultiInheritanceProgramProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/MultiInheritanceProgram.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.ProgramVersion_2a476d08 ProgramVersionProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/ProgramVersion.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.SchemaContract_90de1fce SchemaContractProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/SchemaContract.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.StorageTest_458beb90 StorageTestProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/StorageTest.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.Templates_09ae4a3b TemplatesProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/Templates.arc56.json
Arc56.Generated.algorandfoundation.TEALScript.TokenInfoContract_437d3089 TokenInfoContractProxy https://raw.githubusercontent.com/algorandfoundation/TEALScript/HEAD/tests/contracts/artifacts/TokenInfoContract.arc56.json

Versioning

This package uses 1.0.<increment>.<yyyyMMddHH> versioning: a new version is published whenever any of the contracts above change, or whenever the client generator itself is updated. See Arc56Registry for the full generation pipeline and source ARC-56 registry.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.4.2026082120 117 8/21/2026
1.0.3.2026072808 122 7/28/2026
1.0.2.2026071923 113 7/20/2026
1.0.1.2026071706 115 7/18/2026