Metadata-Version: 2.5
Name: arc56-generated-algor_11f91ae3
Version: 1.2.2026072010
Summary: Generated ARC-56 Algorand smart-contract clients for algorandfoundation/puya-ts-demo.
Project-URL: Homepage, https://github.com/scholtz/Arc56Registry
Project-URL: Repository, https://github.com/scholtz/Arc56Registry
Author: algorandfoundation
Keywords: algorand,algorandfoundation,arc56,avm,generated-client,puya-ts-demo,smart-contract
Requires-Python: >=3.10
Requires-Dist: algokit-utils<5.0.0,>=4.2.3
Requires-Dist: py-algorand-sdk<3.0.0,>=2.11.1
Description-Content-Type: text/markdown

# arc56-generated-algor_11f91ae3

Auto-generated typed Algorand smart-contract clients for **[algorandfoundation/puya-ts-demo](https://github.com/algorandfoundation/puya-ts-demo)**,
built from the [ARC-56](https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0056.md)
specs listed below.

Generated by the [Arc56Registry](https://github.com/scholtz/Arc56Registry) pipeline,
using the [algorandfoundation/algokit-client-generator-py](https://github.com/algorandfoundation/algokit-client-generator-py)
ARC-56 client generator. Do not edit these files by hand — they are regenerated
automatically whenever the source ARC-56 spec changes.

## Install

```bash
pip install arc56-generated-algor_11f91ae3
```

## Basic usage

Each contract in this package is a separate module (a hash of its source URL is
appended to its filename to keep multiple contracts in the same repository from
colliding), containing a typed `<Name>Client` for interacting with an already-deployed
instance of that contract, plus a `<Name>Factory` for deploying new instances.

```python
from algokit_utils import AlgorandClient
from arc56_generated_algor_11f91ae3 import ARC75_94c73f98

algorand = AlgorandClient.mainnet()
client = ARC75_94c73f98.Arc75Client(
    algorand=algorand,
    app_id=123456789,
)

# call a contract method, e.g.:
# result = client.send.some_method(args=(...))
```

### `full` vs `minimal` generator mode

Contracts in this package are generated with the client generator's `full` mode by
default, which emits both the typed `Client` and a deploy/create `Factory` class plus
deployment metadata (source code, bytecode, template variables). For the rare contract
whose `full`-mode output fails to generate or fails to byte-compile, this package falls
back to `minimal` mode (`Client` only, no `Factory`) for that contract instead of
failing outright. The contracts table below flags any contract generated this way;
every other contract includes a working `Factory`.

## Contracts included in this package

| Module | Client class | Source ARC-56 spec |
| --- | --- | --- |
| `ARC75_94c73f98` | `Arc75Client` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/arc75/out/ARC75.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/arc75/out/ARC75.arc56.json) |
| `BigBox_ab6929c2` | `BigBoxClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/big-box/out/BigBox.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/big-box/out/BigBox.arc56.json) |
| `Calculator_983f8e88` | `CalculatorClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/calculator/out/Calculator.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/calculator/out/Calculator.arc56.json) |
| `HelloWorldContract_c4a679fa` | `HelloWorldContractClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/hello-world/out/HelloWorldContract.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/hello-world/out/HelloWorldContract.arc56.json) |
| `FactoryCaller_7b84c3cc` | `FactoryCallerClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/itxns/out/FactoryCaller.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/itxns/out/FactoryCaller.arc56.json) |
| `NFTFactory_8816674f` | `NftFactoryClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/itxns/out/NFTFactory.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/itxns/out/NFTFactory.arc56.json) |
| `KitchenSinkContract_66354acc` | `KitchenSinkContractClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/kitchen-sink/out/KitchenSinkContract.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/kitchen-sink/out/KitchenSinkContract.arc56.json) |
| `CreatorVerifier_3294139c` | `CreatorVerifierClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/lsig-with-app/out/CreatorVerifier.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/lsig-with-app/out/CreatorVerifier.arc56.json) |
| `DigitalMarketplace_c4494253` | `DigitalMarketplaceClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/marketplace/out/DigitalMarketplace.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/marketplace/out/DigitalMarketplace.arc56.json) |
| `MerkleTree_f3b809f6` | `MerkleTreeClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/merkle/out/MerkleTree.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/merkle/out/MerkleTree.arc56.json) |
| `ProofOfAttendance_c04c800a` | `ProofOfAttendanceClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/proof-of-attendance/out/ProofOfAttendance.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/proof-of-attendance/out/ProofOfAttendance.arc56.json) |
| `Simple_da331480` | `SimpleClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/simple/out/Simple.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/simple/out/Simple.arc56.json) |
| `VotingContract_4cba2725` | `VotingContractClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/voting/out/VotingContract.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/voting/out/VotingContract.arc56.json) |
| `ZkWhitelistContract_cf061af1` | `ZkWhitelistContractClient` | [https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/zk-whitelist/out/ZkWhitelistContract.arc56.json](https://raw.githubusercontent.com/algorandfoundation/puya-ts-demo/HEAD/contracts/zk-whitelist/out/ZkWhitelistContract.arc56.json) |

## Versioning

This package uses `1.<increment>.<yyyyMMddHH>`-style versioning: a new version is
published whenever any of the contracts above change, or whenever the client generator
itself is updated. See [Arc56Registry](https://github.com/scholtz/Arc56Registry) for
the full generation pipeline and source ARC-56 registry.
