"Noir in an Afternoon" cheat sheet Codespace: https://github.com/codespaces/new/aztecprotocol/tiny-noir-codespace Or manually curl -L https://raw.githubusercontent.com/noir-lang/noirup/refs/heads/main/install | bash curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/barretenberg/bbup/install | bash noirup bbup References Docs - https://noir-lang.org Noir Discord - https://discord.gg/9WTvsHPH Twitter - https://x.com/NoirLang Remix IDE - https://remix.ethereum.org/ Commands nargo init --name workshop cd workshop nargo check nargo test nargo execute # Hi Bob! bb prove -b ./target/workshop.json -w ./target/workshop.gz -o ./target --output_format bytes_and_fields --oracle_hash keccak # Hi Alice! nargo compile bb write_vk -b target/workshop.json -o target --oracle_hash keccak bb verify --oracle_hash keccak bb write_solidity_verifier -o contract.sol # split the proof with cat ./target/proof | od -An -v -t x1 | tr -d $' \n'
Thanks, saved me on a IRL workshop