Skip to main content

Utilities to help in the development of PyTeal contracts for Algorand.

Project description

Algo App Dev

Utilities to help in the development of PyTeal contracts for Algorand. Documentation: https://gmcgoldr.github.io/algo-app-dev/.

Installation

pip install -U algo-app-dev

Pre-requisits

In this documentation, it is assumed that you are running an Algorand node in an Ubuntu environment.

You can install Algorand with following these commands:

sudo apt-get update
sudo apt-get install -y gnupg2 curl software-properties-common
curl -O https://releases.algorand.com/key.pub
sudo apt-key add key.pub
rm -f key.pub
sudo add-apt-repository "deb [arch=amd64] https://releases.algorand.com/deb/ stable main"
sudo apt-get update
sudo apt-get install algorand

Command line utilities

The following command line utilities are installed with the package. They are used to work with a local private network and node daemons for development:

  • aad-make-node: this command can be used to setup a private network
  • aad-run-node: this command can be used to start or stop node daemons

Modules

The following is a brief overview of the package's functionality and organization:

clients

The clients module contains a few utilities to help manage the algod and kmd daemons clients.

There are also utilities to help extract key-value information from global and local state queries.

transactions

The transactions module contains utilities to help create and manage transactions.

apps

The apps module contains utilities and classes to help construct and manage stateful applications (stateful smart contracts). This is the core of the package.

Most the app development work utilizes two classes: the State and AppBuilder classes. These help reduce the amount of boiler-plate needed to create functional pyteal expressions.

Manually managing the app's state is very error prone. The interface provided by State and its derived StateGlobal, StateGlobalExternal, StateLocal and StateLocalExternal can reduce these errors.

Here is an example of a very simple app with a global counter. Every time a (no-op) call is made with the argument "count", it increments the counter.

import pyteal as tl
from algosdk.util import algos_to_microalgos
from algoappdev import apps, clients, dryruns, transactions, utils

# build the clients
algod_client = clients.build_algod_local_client(NODE_PATH)
kmd_client = clients.build_kmd_local_client(NODE_PATH)
# fund an account on the private net which can be used to transact
funded_account, txid = transactions.fund_from_genesis(
    algod_client, kmd_client, algos_to_microalgos(1)
)
# wait for the funding to go through
transactions.get_confirmed_transaction(algod_client, txid, WAIT_ROUNDS)

# define the state: a single global counter which defaults to 0
state = apps.StateGlobal([apps.State.KeyInfo("counter", tl.Int, tl.Int(0))])
# define the logic: invoking with the argument "count" increments the counter
app_builder = apps.AppBuilder(
    invocations={
        "count": tl.Seq(
            state.set("counter", state.get("counter") + tl.Int(1)),
            tl.Return(tl.Int(1)),
        ),
    },
    global_state=state,
)

# deploy the application
txn = app_builder.create_txn(
    algod_client, funded_account.address, algod_client.suggested_params()
)
txid = algod_client.send_transaction(txn.sign(funded_account.key))
# the app id and address can be derived from the transaction output
txn_info = transactions.get_confirmed_transaction(algod_client, txid, WAIT_ROUNDS)
app_meta = utils.AppMeta.from_result(txn_info)
print(app_meta)

The resulting app_meta object:

AppMeta(app_id=1, address='...')

dryruns

The dryruns module contains utilities to help send dry runs to a node, and parse the results.

Here is how the dryruns utilities could be used to test the contract:

# build a dryrun request containing the entire state needed to call the app
result = algod_client.dryrun(
    dryruns.AppCallCtx()
    # use the app's programs and schema
    .with_app(app_builder.build_application(algod_client, 1))
    # add a transaction calling the app with the given arg
    .with_txn_call(args=[b"count"])
    .build_request()
)
for item in dryruns.get_trace(result):
    print(item)
for delta in dryruns.get_global_deltas(result):
    print(delta)

The last few lines of the stack trace should resemble:

55 :: app_global_get :: [b'counter'  , 0           ]
56 :: intc_0 // 1    :: [b'counter'  , 0           , 1           ]
57 :: +              :: [b'counter'  , 1           ]
58 :: app_global_put :: []
59 :: intc_0 // 1    :: [1           ]
81 :: return         :: [1           ]

The resulting state delta:

KeyDelta(key=b'counter', value=1)

Testing

NOTE: in order to use the testing functionality, you must install the dev dependencies. This is done with the command:

pip install -U algo-app-dev[dev]

Start the daemons before testing, and optionally stop them after the tests run.

The tests make calls to the node, which is slow. There are two mitigations for this: using the dev node, and using the pytest-xdist plugin for pytest to parallelize the test.

The dev node creates a new block for every transaction, meaning that there is no need to wait for consensus. Whereas testing with private_dev can take a 10s of seconds, testing with pivate takes 10s of minutes.

The flag -n X can be used to split the tests into that many parallel processes.

# create a new network (overwrites an existing private dev node)
aad-make-node nets/private_dev -f
# start the node daemons
aad-run-node nets/private_dev start
# run the tests in 4 processes with the given node dir
AAD_NODE_DIR=nets/private_dev/Primary pytest -n 4 tests/
# stop the node daemons
aad-run-node nets/private_dev stop

PyTest environment

The module algoappdev.testing contains some pytest fixtures that are widely applicable. If you want to make those fixtures available to all your tests, you can create a file conftest.py in your test root directory and write to it:

# conftest.py
from algoappdev.testing import *

It also exposes two variables which can be configured through environment variables:

  • NODE_DIR: this should be the path to the node data directory
  • WAIT_ROUNDS: this should be set to the maximum number of rounds to await transaction confirmations.

Both are read from the environment variable with corresponding name prefixed with AAD_.

NODE_DIR defaults to the private dev node data path. If your system is configured differently, you will need to set this accordingly.

WAIT_ROUNDS defaults to 1, because when interacting with a dev node transactions are immediately committed. If doing integration tests with a non-dev node, this should be increased to give time for transactions to complete before moving onto another test.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

algo-app-dev-0.6.1.tar.gz (18.5 kB view details)

Uploaded Source

Built Distribution

algo_app_dev-0.6.1-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file algo-app-dev-0.6.1.tar.gz.

File metadata

  • Download URL: algo-app-dev-0.6.1.tar.gz
  • Upload date:
  • Size: 18.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for algo-app-dev-0.6.1.tar.gz
Algorithm Hash digest
SHA256 a98708a9f3a7b04610a4cb4a2b5d885fa8fdccfa1032aa2d7bcad7bedc2240db
MD5 a73ba0ff673e7078251f5d57a5900c9a
BLAKE2b-256 ea0f170d0cd006414b0d00ea345457ea1d1b549d5af6cbf2beb374731e2d16be

See more details on using hashes here.

File details

Details for the file algo_app_dev-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: algo_app_dev-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 22.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10

File hashes

Hashes for algo_app_dev-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7cb31e901a963561eb066861c1162bbbbab84ac0bcc0cb3b10e321491caea3fc
MD5 5806c9fc7c2d2f9fe30a5675a33cfb16
BLAKE2b-256 e1e7a2030d0b7e2e5d30ea0df2671cd85cc31c26811e128330d49ce0dfc75dac

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page