Skip to content

Latest commit

 

History

History
42 lines (37 loc) · 1.93 KB

README.md

File metadata and controls

42 lines (37 loc) · 1.93 KB

Algorand Developer Workshop

Sign up for future sessions on the Algorand Developer Portal Events page: https://developer.algorand.org/events

Gitpod link

Get started working on this repo in Gitpod without needing to setup local environment. A gitpod account is required, so sign-in with your Github to get started.

https://gitpod.io/#https://github.com/algorand-devrel/workshop

Building with AlgoKit on Gitpod

    1. open new terminal
    1. run algokit init
    1. select "playground"
    1. name your project "pg1" or similar
    1. answer (Y)es to accept the defaults
    1. a new Gitpod window opens at /workspace/workshop/pg1
    1. review pg1/hello_world/helloworld.py
    1. select "Run & Debug" from left nav
    1. run algokit localnet start
    1. click green arrow to "Demo current contract (+ Localnet)
    1. contract is compiled, installed and demo executed on CLI
    1. review files in pg1/hello_world/artifacts
    1. select "application.json" right click to download
    1. run algokit localnet explore
    1. a new browser window launches into dAppFlow
    1. click "Dev Wallets" from left nav
    1. click "Create wallet" (100A automatically dispensed)
    1. click "Connect wallet" (now connected to your account)
    1. click "Beaker Studio" from left nav
    1. click "Select app" then "Import Beaker app"
    1. from the "File" tab click "Upload file" and select application.json from step 13
    1. review application contents
    1. click "Create app" from top nav, then "Create"
    1. notice the "App ID" in top nav
    1. scroll to ABI section, review methods
    1. click "Execute" for the "hello" method
    1. noice the required arguments and their types, enter a value for "name" then click "Execute"
    1. review the response "Hello, AlgoDev"

Video Recordings