π¦Έ 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. 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.
π¦ Build a
Staker.sol
contract that collects ETH from numerous addresses using a payablestake()
function and keeps track ofbalances
. After somedeadline
if it has at least somethreshold
of ETH, it sends it to anExampleExternalContract
and triggers thecomplete()
action sending the full balance. If not enough ETH is collected, allow users towithdraw()
.
π Building the frontend to display the information and UI is just as important as writing the contract. The goal is to deploy the contract and the app to allow anyone to stake using your app. Use a
Stake(address,uint256)
event to all stakes.
π The final deliverable is deploying a Dapp that lets users send ether to a contract and stake if the conditions are met, then
yarn build
andyarn surge
your app to a public webserver. Submit the url on SpeedRunEthereum.com!
π¬ Meet other builders working on this challenge and get help in the Challenge 1 telegram!
𧫠Everything starts by βοΈ Editing Staker.sol
in packages/hardhat/contracts
Want a fresh cloud environment? Click this to open a gitpod workspace, then skip to Checkpoint 1 after the tasks are complete.
git clone https://github.com/scaffold-eth/scaffold-eth-challenges.git challenge-1-decentralized-staking
cd challenge-1-decentralized-staking
git checkout challenge-1-decentralized-staking
yarn install
π Edit your smart contract Staker.sol
in packages/hardhat/contracts
You'll have three terminals up for:
yarn start
(react app frontend)
yarn chain
(hardhat backend)
yarn deploy
(to compile, deploy, and publish your contracts to the frontend)
π» View your frontend at http://localhost:3000/
π©βπ» Rerun
yarn deploy --reset
whenever you want to deploy new contracts to the frontend.
You'll need to track individual balances
using a mapping:
mapping ( address => uint256 ) public balances;
And also track a constant threshold
at 1 ether
uint256 public constant threshold = 1 ether;
π©βπ» Write your
stake()
function and test it with theDebug Contracts
tab in the frontend
πΈ Need more funds from the faucet? Enter your frontend address into the wallet to get as much as you need!
β Need to troubleshoot your code? If you import hardhat/console.sol
to your contract, you can call console.log()
right in your Solidity code. The output will appear in your yarn chain
terminal.
- Do you see the balance of the
Staker
contract go up when youstake()
? - Is your
balance
correctly tracked? - Do you see the events in the
Staker UI
tab?
βοΈ Think of your smart contract like a state machine. First, there is a stake period. Then, if you have gathered the
threshold
worth of ETH, there is a success state. Or, we go into a withdraw state to let users withdraw their funds.
Set a deadline
of block.timestamp + 30 seconds
uint256 public deadline = block.timestamp + 30 seconds;
π¨βπ« Smart contracts can't execute automatically, you always need to have a transaction execute to change state. Because of this, you will need to have an execute()
function that anyone can call, just once, after the deadline
has expired.
π©βπ» Write your
execute()
function and test it with theDebug Contracts
tab
If the address(this).balance
of the contract is over the threshold
by the deadline
, you will want to call: exampleExternalContract.complete{value: address(this).balance}()
If the balance is less than the threshold
, you want to set a openForWithdraw
bool to true
and allow users to withdraw()
their funds.
(You'll have 30 seconds after deploying until the deadline is reached, you can adjust this in the contract.)
π©βπ» Create a
timeLeft()
function includingpublic view returns (uint256)
that returns how much time is left.
block.timestamp >= deadline
you want to return 0;
β³ The time will only update if a transaction occurs. You can see the time update by getting funds from the faucet just to trigger a new block.
π©βπ» You can call
yarn deploy --reset
any time you want a fresh contract
- Can you see
timeLeft
counting down in theStaker UI
tab when you trigger a transaction with the faucet? - If you
stake()
enough ETH before thedeadline
, does it callcomplete()
? - If you don't
stake()
enough can youwithdraw()
your funds?
π To improve the user experience, set your contract up so it accepts ETH sent to it and calls stake()
. You will use what is called the receive()
function.
Use the receive() function in solidity to "catch" ETH sent to the contract and call
stake()
to updatebalances
.
- If you send ETH directly to the contract address does it update your
balance
?
- Can execute get called more than once, and is that okay?
- Can you stake and withdraw freely after the
deadline
, and is that okay? - What are other implications of anyone being able to withdraw for someone?
- Make sure funds can't get trapped in the contract! Try sending funds after you have executed! What happens?
- Try to create a modifier called
notCompleted
. It will check thatExampleExternalContract
is not completed yet. Use it to protect yourexecute
andwithdraw
functions.
- Now is a good time to run
yarn test
to run the automated testing function. It will test that you hit the core checkpoints. You are looking for all green checkmarks and passing tests!
π‘ Edit the defaultNetwork
to your choice of public EVM networks in packages/hardhat/hardhat.config.js
π©βπ You will want to run yarn account
to see if you have a deployer address
π If you don't have one, run yarn generate
to create a mnemonic and save it locally for deploying.
β½οΈ You will need to send ETH to your deployer address with your wallet.
π If you plan on submitting this challenge, be sure to set your
deadline
to at leastblock.timestamp + 72 hours
π Run
yarn deploy
to deploy your smart contract to a public network (selected in hardhat.config.js)
π Edit the
targetNetwork
inApp.jsx
(inpackages/react-app/src
) to be the public network where you deployed your smart contract.
π» View your frontend at http://localhost:3000/
π©βπ€ Take time to craft your user experience...
π‘ When you are ready to ship the frontend app...
π¦ Run yarn build
to package up your frontend.
π½ Upload your app to surge with yarn surge
(you could also yarn s3
or maybe even yarn ipfs
?)
π¬ Windows users beware! You may have to change the surge code in
packages/react-app/package.json
to just"surge": "surge ./build",
β If you get a permissions error yarn surge
again until you get a unique URL, or customize it in the command line.
π you will use this deploy URL to submit to SpeedRunEthereum.com.
π Traffic to your url might break the Infura rate limit, edit your key: constants.js
in packages/ract-app/src
.
Update the api-key in packages/hardhat/package.json file. You can get your key here.
Now you are ready to run the
yarn verify --network your_network
command to verify your contracts on etherscan π°
π Head to your next challenge here.
π¬ Problems, questions, comments on the stack? Post them to the π scaffold-eth developers chat