Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vanities/speedrun-ethereum

speed run ethereum repos that include creating NFTs, decentralized staking, creating a token vendor, creating a decentralized exchange, and making a multi-signature wallet.
https://github.com/vanities/speedrun-ethereum

ethereum nft typescript

Last synced: about 1 month ago
JSON representation

speed run ethereum repos that include creating NFTs, decentralized staking, creating a token vendor, creating a decentralized exchange, and making a multi-signature wallet.

Awesome Lists containing this project

README

        

# speedrun Ethereum!

My builder page: https://buidlguidl.com/builders/0x73166A219De029dC2f76A9DA66A3c951cbCfdA04

๐Ÿšฉ Challenge 0: ๐ŸŽŸ Simple NFT Example

Accepted
๐ŸŽซ Create a simple NFT to learn basics of ๐Ÿ— scaffold-eth. You'll use ๐Ÿ‘ทโ€โ™€๏ธ HardHat to compile and deploy smart contracts. Then, you'll use a template React app full of important Ethereum components and hooks. Finally, you'll deploy an NFT to a public network to share with friends! ๐Ÿš€

๐Ÿšฉ Challenge 1: ๐Ÿฅฉ Decentralized Staking App

Accepted
๐Ÿฆธ A superpower of Ethereum 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.

๐Ÿšฉ Challenge 2: ๐Ÿต Token Vendor

Accepted
๐Ÿค– Smart contracts are kind of like "always on" vending machines that anyone can access. Let's make a decentralized, digital currency (an ERC20 token). 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.

๐Ÿšฉ Challenge 3: ๐ŸŽฒ Dice Game

Accepted
๐ŸŽฐ Randomness is tricky on a public deterministic blockchain. The block hash is the result proof-of-work (for now) and some builders use this as a weak form of randomness. In this challenge you will take advantage of a Dice Game contract by predicting the randomness in order to only roll winning dice!

๐Ÿšฉ Challenge 4: โš–๏ธ Build a DEX

Accepted
๐Ÿ’ต 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...

๐Ÿšฉ Challenge 5: ๐Ÿ‘› Multisig Wallet

๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง Using a smart contract as a wallet we can secure assets by requiring multiple accounts to "vote" on transactions. The contract will keep track of transactions in an array of structs and owners will confirm or reject each one. Any transaction with enough confirmations can "execute".