Skip to main content

A Framework for building PyTeal Applications

Project description

Beaker

Beaker is a smart contract development framework for PyTeal inspired by Flask

With Beaker, we build a class that represents our entire application including state and routing.

Mostly Untested - Expect Breaking Changes

Hello, Beaker

from pyteal import *
from beaker import *

# Create a class, subclassing Application from beaker
class HelloBeaker(Application):
    # Add an external method with ABI method signature `hello(string)string`
    @external
    def hello(self, name: abi.String, *, output: abi.String):
        # Set output to the result of `Hello, `+name
        return output.set(Concat(Bytes("Hello, "), name.get()))


# Create an Application client
app_client = client.ApplicationClient(
    # Get sandbox algod client
    client=sandbox.get_algod_client(),
    # Instantiate app, pass it to client
    app=HelloBeaker(),
    # Get acct from sandbox and pass the signer
    signer=sandbox.get_accounts().pop().signer,
)

# Deploy the app on-chain
app_id, app_addr, txid = app_client.create()
print(
    f"""Deployed app in txid {txid}
    App ID: {app_id} 
    Address: {app_addr} 
"""
)

# Call the `hello` method
result = app_client.call(HelloBeaker.hello, name="Beaker")
print(result.return_value)  # "Hello, Beaker"

Install

You can install from pip:

pip install beaker-pyteal

Or from github directly (no promises on stability):

pip install git+https://github.com/algorand-devrel/beaker

Dev Environment

Requires a local sandbox.

NOTE: Currently requires a sandbox running with the source config (or any config that contains this commit)

$ git clone git@github.com:algorand/sandbox.git
$ cd sandbox
$ sandbox up source

Testing

You can run tests from the root of the project using pytest

Use

Examples

Docs

Please feel free to file issues/prs

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

beaker-pyteal-0.1.0a0.tar.gz (49.6 kB view hashes)

Uploaded Source

Built Distribution

beaker_pyteal-0.1.0a0-py3-none-any.whl (61.7 kB view hashes)

Uploaded Python 3

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