Skip to content

Latest commit

 

History

History
99 lines (65 loc) · 1.92 KB

README.md

File metadata and controls

99 lines (65 loc) · 1.92 KB

Video Series Example Source Code

Sample code used in the Algorand Developers video series

https://www.youtube.com/@algodevs/playlists

Setup

  1. Install algokit
  2. Run Docker
  3. Launch Algorand localnet with algokit localnet start

For a detailed setup guide, watch Development Environment Setup video

Python

cd python
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Then run the scripts like:

python accounts/create_account.py

JavaScript

cd javascript
npm install

Then run the scripts like:

npm run create-account

Smart Contracts

Master Beaker

Open project folders individually

cd smart-contracts/master-beaker/what-is-beaker

Then setup your development environment with:

algokit bootstrap all
source .venv/bin/activate

Then run deploy scripts like:

cd beaker-calc
python3 bkr_deploy.py

Master PyTeal

cd smart-contracts/master-pyteal
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Then run the scripts like:

python3 what_is_pyteal/counter.py

Video Playlists