Algokit Examples Gallery

Python Hello World

Codespace

Creator Algorand Foundation

Source

python

typescript

fullstack

Install with AlgoKit CLI

    algokit init example python-fullstack

A fullstack Python web app for developing integrating with any ARC56 compliant Algorand smart contracts.

Features

String Handling

ARC 4 Contract

ABI Method Integration

Use Wallet Integration

Contract Interaction

Algorand Fullstack Example

This is a full-stack example that demonstrates how to build and deploy Algorand smart contracts with a React frontend. It combines production-ready smart contract development with a modern web interface.

Features

Frontend Features

Smart Contract Features

Prerequisites

Quick Start

  1. Launch in Github Codespace (Recommended)
    • Click the CodeSpace button to launch the project
    • This automatically sets up AlgoKit and runs Localnet
  2. Local Setup
# Install dependencies for all projects
algokit project bootstrap all

# Or install specific dependencies:
algokit project bootstrap npm     # Frontend dependencies
algokit project bootstrap poetry  # Smart contract dependencies

Development Workflow

Smart Contracts

# Build contracts
algokit project run build

# Deploy to localnet
algokit project deploy localnet

Frontend