Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
gianalarcon committed Aug 15, 2024
1 parent 76e5731 commit 373f390
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,38 +8,38 @@

🎫 Create a simple NFT to learn the basics of 🏗 scaffold-stark. You'll use [Scarb](https://docs.swmansion.com/scarb/) to compile and [Starknet.js](https://www.starknetjs.com/) to deploy smart contracts. Then, you'll use a template React app full of important Starknet components and hooks. Finally, you'll deploy an NFT to a public network to share with friends! 🚀

https://github.com/Quantum3-Labs/speedrunstark/tree/simple-nft-example
<https://github.com/Quantum3-Labs/speedrunstark/tree/simple-nft-example>

---

## 🚩 Challenge 1: 🔏 Decentralized Staking App

🦸 A superpower of Starknet is allowing you, the builder, to create a simple set of rules that an adversarial group of players can use to work together. In this challenge, you create a decentralized application where users can coordinate a group funding effort. If the users cooperate, the money is collected in a second smart contract. If they defect, the worst that can happen is everyone gets their money back. The users only have to trust the code.
🦸 A superpower of Starknet is allowing you, the builder, to create a simple set of rules that an adversarial group of players can use to work together. In this challenge, you create a decentralized application where users can coordinate a group funding effort. If the users cooperate, the money is collected in a second smart contract. If they defect, the worst that can happen is everyone gets their money back. The users only have to trust the code. We'll learn about the "approve" pattern for ERC20s.

https://github.com/Quantum3-Labs/speedrunstark/tree/decentralized-staking
<https://github.com/Quantum3-Labs/speedrunstark/tree/decentralized-staking>

---

## 🚩 Challenge 2: 🏵 Token Vendor

🤖 Smart contracts are kind of like "always on" vending machines that anyone can access. Let's make a decentralized, digital currency. Then, let's build an unstoppable vending machine that will buy and sell the currency. We'll learn about the "approve" pattern for ERC20s and how contract to contract interactions work.
🤖 Smart contracts are kind of like "always on" vending machines that anyone can access. Let's make a decentralized, digital currency. Then, let's build an unstoppable vending machine that will buy and sell the currency. We'll learn how contract to contract interactions work.

https://github.com/Quantum3-Labs/speedrunstark/tree/token-vendor
<https://github.com/Quantum3-Labs/speedrunstark/tree/token-vendor>

---

## 🚩 Challenge 3: 🎲 Dice Game

🎰 Randomness is tricky on a public deterministic blockchain. In this challenge you will explore creating random numbers using block hash and how that may be exploitable. Attack the dice game with your own contract by predicting the randomness ahead of time to always roll a winner!

https://github.com/Quantum3-Labs/speedrunstark/tree/dice-game
<https://github.com/Quantum3-Labs/speedrunstark/tree/dice-game>

---

## 🚩 Challenge 4: ⚖️ Build a DEX Challenge

💵 Build an exchange that swaps ETH to tokens and tokens to ETH. 💰 This is possible because the smart contract holds reserves of both assets and has a price function based on the ratio of the reserves. Liquidity providers are issued a token that represents their share of the reserves and fees...

https://github.com/Quantum3-Labs/speedrunstark/tree/build-a-dex
<https://github.com/Quantum3-Labs/speedrunstark/tree/build-a-dex>

---
2 changes: 1 addition & 1 deletion packages/nextjs/data-challenges/challenges.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const allChallenges = [
challenge: "Challenge #1",
title: "🥩 Decentralized Staking App",
description:
"🦸 A superpower of Starknet is allowing you, the builder, to create a simple set of rules that an adversarial group of players can use to work together. In this challenge, you create a decentralized application where users can coordinate a group funding effort. We'll learn about the approve pattern for ERC20s. The users only have to trust the code.",
"🦸 A superpower of Starknet is allowing you, the builder, to create a simple set of rules that an adversarial group of players can use to work together. In this challenge, you create a decentralized application where users can coordinate a group funding effort. The users only have to trust the code. We'll learn about the approve pattern for ERC20s.",
imageUrl: "/stakingToken.png",
id: "decentralized-staking",
},
Expand Down

0 comments on commit 373f390

Please sign in to comment.