This challenge will help you build/understand a simple decentralized exchange, with one token-pair (ERC20 BALLOONS ($BAL) and ETH). This repo is an updated version of the original tutorial and challenge repos before it. Please read the intro for a background on what we are building first!
π The final deliverable is an app that allows users to seamlessly trade ERC20 BALLOONS ($BAL) with ETH in a decentralized manner. Users will be able to connect their wallets, view their token balances, and buy or sell their tokens according to a price formula! Deploy your contracts to a testnet then build and upload your app to a public web server. Submit the url on SpeedRunEthereum.com!
There is also a π₯ Youtube video that may help you understand the concepts covered within this challenge too:
π¬ Meet other builders working on this challenge and get help in the Challenge 4 Telegram
Before you begin, you need to install the following tools:
- Node (v18 LTS)
- Yarn (v1 or v2+)
- Git
Then download the challenge to your computer and install dependencies by running:
git clone https://github.com/scaffold-eth/se-2-challenges.git challenge-4-dex
cd challenge-4-dex
git checkout challenge-4-dex
yarn install
in the same terminal, start your local network (a blockchain emulator in your computer):
yarn chain
in a second terminal window, π° deploy your contract (locally):
cd challenge-4-dex
yarn deploy
in a third terminal window, start your π± frontend:
cd challenge-4-dex
yarn start
π± Open http://localhost:3000 to see the app.
π©βπ» Rerun
yarn deploy
whenever you want to deploy new contracts to the frontend. If you haven't made any contract changes, you can runyarn deploy --reset
for a completely fresh deploy.
Navigate to the Debug Contracts
tab, you should see two smart contracts displayed called DEX
and Balloons
.
packages/hardhat/contracts/Balloons.sol
is just an example ERC20 contract that mints 1000 $BAL to whatever address deploys it.
packages/hardhat/contracts/DEX.sol
is what we will build in this challenge and you can see it starts instantiating a token (ERC20 interface) that we set in the constructor (on deploy).
Below is what your front-end will look like with no implementation code within your smart contracts yet. The buttons will likely break because there are no functions tied to them yet!
π You've made it this far in Scaffold-Eth Challenges ππΌ . As things get more complex, it might be good to review the design requirements of the challenge first!
Check out the emptyDEX.sol
file to see aspects of each function. If you can explain how each function will work with one another, that's great! π
π¨ π¨ π¦ The Guiding Questions will lead you in the right direction, but try thinking about how you would structure each function before looking at these!
π¨ π¨ π¦ The code blobs within the toggles in the Guiding Questions are some examples of what you can use, but try writing the implementation code for the functions first!
We want to create an automatic market where our contract will hold reserves of both ETH and π Balloons. These reserves will provide liquidity that allows anyone to swap between the assets. Let's start with declaring our totalLiquidity
and the liquidity
of each user of our DEX!
π¦ Guiding Questions
Question One
How do we declare a variable that represents an amount of ETH? We don't have to assign it a value just yet.
Question Two
What data structure represents the relation between keys and values (addresses to liquidity or users to ETH)?
After thinking through the guiding questions, have a look at the solution code!
π©π½βπ« Solution Code
uint256 public totalLiquidity;
mapping (address => uint256) public liquidity;
These variables track the total liquidity, but also the liquidity of each address.
Now, let's create an init()
function in DEX.sol
.
We want this function written in a way that when we send ETH and/or $BAL tokens through our front end or deployer script, the function will get those values from the contract and assign them onto the global variables we just defined.
π¦ Guiding Questions
Question One
How can we check and prevent liquidity being added if the contract already has liquidity?
Question Two
What should the value of
totalLiquidity
be, how do we access the balance that our contract has and assign the variable a value?
Question Three
How would we assign our address the liquidity we just provided? How much liquidity have we provided? The
totalLiquidity
? Just half? Three quarters?
Question Four
Now we need to take care of the tokens
init()
is receiving. How do we transfer the tokens from the sender (us) to this contract address? How do we make sure the transaction reverts if the sender did not have as many tokens as they wanted to send?
π¨π»βπ« Solution Code
function init(uint256 tokens) public payable returns (uint256) {
require(totalLiquidity == 0, "DEX: init - already has liquidity");
totalLiquidity = address(this).balance;
liquidity[msg.sender] = totalLiquidity;
require(token.transferFrom(msg.sender, address(this), tokens), "DEX: init - transfer did not transact");
return totalLiquidity;
}
Calling init()
will load our contract up with both ETH and π Balloons.
We can see that the DEX starts empty. We want to be able to call init()
to start it off with liquidity, but we donβt have any funds or tokens yet. Add some ETH to your local account using the faucet and then find the 00_deploy_your_contract.ts
file. Find and uncomment the lines below and add your front-end address (your burner wallet address).
// // paste in your front-end address here to get 10 balloons on deploy:
// await balloons.transfer(
// "YOUR_FRONTEND_ADDRESS",
// "" + 10 * 10 ** 18
// );
Run
yarn deploy
.
The front end should show you that you have balloon tokens. We canβt just call init()
yet because the DEX contract isnβt allowed to transfer ERC20 tokens from our account.
First, we have to call approve()
on the Balloons contract, approving the DEX contract address to take some amount of tokens.
π€ Copy and paste the DEX address to the Address Spender and then set the amount to 5.
You can confirm this worked using theallowance()
function inDebug Contracts
tab using your local account address as the owner and the DEX contract address as the spender.
Now we are ready to call init()
on the DEX, using the Debug Contracts
tab. We will tell it to take 5 of our tokens and send 0.01 ETH with the transaction. Remember in the Debug Contracts
tab we are calling the functions directly which means we have to convert to wei, so don't forget to multiply those values by 10ΒΉβΈ!
In the DEX
tab, to simplify user interactions, we run the conversion (tokenAmount * 10ΒΉβΈ) in the code, so they just have to input the token amount they want to swap or deposit/withdraw.
You can see the DEX contract's value update, and you can check the DEX token balance using the balanceOf
function on the Balloons UI from DEX
tab.
This works pretty well, but it will be a lot easier if we just call the init()
function as we deploy the contract. In the 00_deploy_your_contract.ts
script try uncommenting the init section, so our DEX will start with 5 ETH and 5 Balloons of liquidity:
// // uncomment to init DEX on deploy:
// console.log(
// "Approving DEX (" + dex.address + ") to take Balloons from main account..."
// );
// // If you are going to the testnet make sure your deployer account has enough ETH
// await balloons.approve(dex.address, ethers.utils.parseEther("100"));
// console.log("INIT exchange...");
// await dex.init(ethers.utils.parseEther("5"), {
// value: ethers.utils.parseEther("5"),
// gasLimit: 200000,
// });
Now, when we yarn deploy --reset
then our contract should be initialized as soon as it deploys, and we should have equal reserves of ETH and tokens.
- π In the DEX tab is your contract showing 5 ETH and 5 Balloons of liquidity?
- β If you are planning to submit the challenge, make sure to implement the
getLiquidity
getter function inDEX.sol
This section is directly from the original tutorial "Price" section. It outlines the general details of the DEX's pricing model.
If you need some more clarity on how the price in a pool is calculated, this video by Smart Contract Programmer has a more in-depth explanation.
Now that our contract holds reserves of both ETH and tokens, we want to use a simple formula to determine the exchange rate between the two.
Letβs start with the formula x * y = k
where x
and y
are the reserves:
(amount of ETH in DEX ) * ( amount of tokens in DEX ) = k
The k
is called an invariant because it doesnβt change during trades. (The k
only changes as liquidity is added.) If we plot this formula, weβll get a curve that looks something like:
π‘ We are just swapping one asset for another, the βpriceβ is basically how much of the resulting output asset you will get if you put in a certain amount of the input asset.
π€ OH! A market based on a curve like this will always have liquidity, but as the ratio becomes more and more unbalanced, you will get less and less of the less-liquid asset from the same trade amount. Again, if the smart contract has too much ETH and not enough $BAL tokens, the price to swap $BAL tokens to ETH should be more desirable.
When we call init()
we passed in ETH and $BAL tokens at a ratio of 1:1. As the reserves of one asset changes, the other asset must also change inversely in order to maintain the constant product formula (invariant k
).
Now, try to edit your DEX.sol
smart contract and bring in a price function!
The price function should take in the reserves of xReserves
, yReserves
, and xInput
to calculate the yOutput
.
Don't forget about trading fees! These fees are important to incentivize liquidity providers. Let's make the trading fee 0.3% and remember that there are no floats or decimals in Solidity, only whole numbers!
We should apply the fee to xInput
, and store it in a new variable xInputWithFee
. We want the input value to pay the fee immediately, or else we will accidentally tax our yOutput
or our DEX's supply k
π¨ Think about how to apply a 0.3% to our xInput
.
π‘ Hints: For more information on calculating the Output Reserve, read the Brief Revisit of Uniswap V2 in this article.
π‘π‘ More Hints: Also, don't forget to think about how to implement the trading fee. Solidity doesn't allow for decimals, so one way that contracts are written to implement percentage is using whole uints (997 and 1000) as numerator and denominator factors, respectively.
π¦ Guided Explanation
For the math portions of this challenge, you can black-box the math. However, it's still important to understand what the math looks like, but maybe less so how it works or why it works, in other words don't get too caught up in the mathematical details! π Look at articles and videos in this challenge or on your own to find out more if you're curious though! π€
- We are multiplying
xInput
by 997 to "simulate" a multiplication by 0.997 since we can't use decimals in solidity. We'll divide by 1000 later to get the fee back to normal. - Next, we'll make our
numerator
by multiplyingxInputWithFee
byyReserves
. - Then our
denominator
will bexReserves
multiplied by 1000 (to account for the 997 in the numerator) plusxInputWithFee
. - Last, we will return the
numerator
/denominator
which is ouryOutput
, or the amount of swapped currency. But wait, can we have decimals in Solidity? No, so the output will be rounded up or down to the nearest whole number.
π©π½βπ« Solution Code
function price(
uint256 xInput,
uint256 xReserves,
uint256 yReserves
) public pure returns (uint256 yOutput) {
uint256 xInputWithFee = xInput * 997;
uint256 numerator = xInputWithFee * yReserves;
uint256 denominator = (xReserves * 1000) + xInputWithFee;
return (numerator / denominator);
}
We use the ratio of the input vs output reserve to calculate the price to swap either asset for the other. Letβs deploy this and poke around:
yarn run deploy
Letβs say we have 1 million ETH and 1 million tokens, if we put this into our price formula and ask it the price of 1000 ETH it will be an almost 1:1 ratio:
If we put in 1000 ETH, we will receive 996 tokens. If weβre paying a 0.3% fee, it should be 997 if everything was perfect. BUT, there is a tiny bit of slippage as our contract moves away from the original ratio. Letβs dig in more to really understand what is going on here. Letβs say there is 5 million ETH and only 1 million tokens. Then, we want to put 1000 tokens in. That means we should receive about 5000 ETH:
Finally, letβs say the ratio is the same, but we want to swap 100,000 tokens instead of just 1000. Weβll notice that the amount of slippage is much bigger. Instead of 498,000 back, we will only get 453,305 because we are making such a big dent in the reserves.
βοΈ The contract automatically adjusts the price as the ratio of reserves shifts away from the equilibrium. Itβs called an π€ Automated Market Maker (AMM).
- π€ Do you understand how the x*y=k price curve actually works? Write down a clear explanation for yourself and derive the formula for price. You might have to shake off some old algebra skills!
- π You should be able to go through the price section of this tutorial with the sample numbers and generate the same outputChange variable.
Letβs edit the DEX.sol
smart contract and add two new functions for swapping from each asset to the other, ethToToken()
and tokenToEth()
.
The basic overview for ethToToken()
is we're going to define our variables to pass into price()
so we can calculate what the user's tokenOutput
is.
π¦ Guiding Questions
Question One
How would we make sure the value being swapped for balloons is greater than 0?
Question Two
Is
xReserves
ETH or $BAL tokens? Use a variable name that best describes which one it is. When we call this function, it will already have the value we sent it in it'sliquidity
. How can we make sure we are using the balance of the contract before any ETH was sent to it?
Question Three
For
yReserves
we will also want to create a new more descriptive variable name. How do we find the other asset balance this address has?
Question Four
Now that we have all our arguments, how do we call
price()
and store the returned value in a new variable? What kind of name would best describe this variable?
Question Five
After getting how many tokens the sender should receive, how do we transfer those tokens to the sender?
Question Six
Which event should we emit for this function?
Question Seven
Last, what do we return?
π¨π»βπ« Solution Code
/**
* @notice sends Ether to DEX in exchange for $BAL
*/
function ethToToken() public payable returns (uint256 tokenOutput) {
require(msg.value > 0, "cannot swap 0 ETH");
uint256 ethReserve = address(this).balance - msg.value;
uint256 token_reserve = token.balanceOf(address(this));
tokenOutput = price(msg.value, ethReserve, token_reserve);
require(token.transfer(msg.sender, tokenOutput), "ethToToken(): reverted swap.");
emit EthToTokenSwap(msg.sender, tokenOutput, msg.value);
return tokenOutput;
}
π Great now onto the next! tokenToEth()
is going to do the opposite so it should be pretty straight forward. But if you get stuck, the guiding questions are always there π¦
π¦ Guiding Questions
Question One
How would we make sure the value being swapped for ETH is greater than 0?
Question Two
Is
xReserves
ETH or $BAL tokens this time? Use a variable name the describes which one it is.
Question Three
For
yReserves
we will also want to create a new and more descriptive variable name. How do we find the other asset balance this address has?
Question Four
Now that we have all our arguments, how do we call
price()
and store the returned value in a new variable?
Question Five
After getting how much ETH the sender should receive, how do we transfer the ETH to the sender?
Question Six
Which event do we emit for this function?
Question Seven
Lastly, what are we returning?
π¨π»βπ« Solution Code
/**
* @notice sends $BAL tokens to DEX in exchange for Ether
*/
function tokenToEth(uint256 tokenInput) public returns (uint256 ethOutput) {
require(tokenInput > 0, "cannot swap 0 tokens");
uint256 token_reserve = token.balanceOf(address(this));
ethOutput = price(tokenInput, token_reserve, address(this).balance);
require(token.transferFrom(msg.sender, address(this), tokenInput), "tokenToEth(): reverted swap.");
(bool sent, ) = msg.sender.call{ value: ethOutput }("");
require(sent, "tokenToEth: revert in transferring eth to you!");
emit TokenToEthSwap(msg.sender, tokenInput, ethOutput);
return ethOutput;
}
π‘ Each of these functions should calculate the resulting amount of output asset using our price function that looks at the ratio of the reserves vs the input asset. We can call tokenToEth and it will take our tokens and send us ETH or we can call ethToToken with some ETH in the transaction and it will send us $BAL tokens. Deploy it and try it out!
- Can you trade ETH for Balloons and get the correct amount?
- Can you trade Balloons for ETH?
β When trading Balloons for ETH remember about allowances. Try using
approve()
to approve the contract address for some amount of tokens, then try the trade again!
So far, only the init()
function controls liquidity. To make this more decentralized, it would be better if anyone could add to the liquidity pool by sending the DEX both ETH and tokens at the correct ratio.
Letβs create two new functions that let us deposit and withdraw liquidity. How would you write this function out? Try before taking a peak!
π¬ Hint:
The
deposit()
function receives ETH and also transfers $BAL tokens from the caller to the contract at the right ratio. The contract also tracks the amount of liquidity (how many liquidity provider tokens (LPTs) minted) the depositing address owns vs the totalLiquidity.
What does this hint mean in practice? The goal is to allow a user to deposit()
ETH into our totalLiquidity
, and update their liquidity
. This is very similar to the init()
function, except we want it to work for anyone providing liquidity. Also, since there already is liquidity we want the liquidity they provide to leave the ratio of the two assets unchanged.
π¦ Guiding Questions
Part 1: Getting Reserves π¦
Question One
How do we ensure the sender isn't sending 0 ETH?
Question Two
We need to calculate the ratio of ETH and $BAL after the liquidity provider sends ETH, what variables do we need? It's similar to the previous section. What was that operation we performed on
ethReserve
in Checkpoint 4 to make sure we were getting the balance before themsg.value
went through? We need to do that again for the same reason.
Question Three
What other asset do we need to declare a reserve for, and how do we get its balance in this contract?
- Do you have reserves of both assets?
Part 2: Performing Calculations π€
What are we calculating again? Oh yeah, for the amount of ETH the user is depositing, we want them to also deposit a proportional amount of tokens. Let's make a reusable equation where we can swap out a value and get an output of the ETH and $BAL the user will be depositing, named
tokenDeposit
andliquidityMinted
.
Question Four
How do we calculate how many tokens the user needs to deposit? You multiply the value the user sends through by reserves of the units we want as an output. Then we divide by
ethReserve
and add 1 to the result.
Question Five
Now for
liquidityMinted
use the same equation but replacetokenReserve
withtotalLiquidity
, so that we are multiplying in the numerator by the units we want.
- Is
tokenDeposit
assigned the value of our equation? - Now is
liquidityMinted
looking similar totokenDeposit
but without the+ 1
at the end?
Part 3: Updating, Transferring, Emitting, and Returning π
Question Six
Now that the DEX has more assets, should we update our two global variables? How do we update
liquidity
?
Question Seven
How do we update
totalLiquidity
?
Question Eight
The user already deposited their ETH, but they still have to deposit their tokens. How do we require a token transfer from them?
Question Nine
We just completed something important, which event should we emit?
Question Ten
What do we return?
π©π½βπ« Solution Code
function deposit() public payable returns (uint256 tokensDeposited) {
require(msg.value > 0, "Must send value when depositing");
uint256 ethReserve = address(this).balance - msg.value;
uint256 tokenReserve = token.balanceOf(address(this));
uint256 tokenDeposit;
tokenDeposit = (msg.value * tokenReserve / ethReserve) + 1;
// π‘ Discussion on adding 1 wei at end of calculation ^
// -> https://t.me/c/1655715571/106
uint256 liquidityMinted = msg.value * totalLiquidity / ethReserve;
liquidity[msg.sender] += liquidityMinted;
totalLiquidity += liquidityMinted;
require(token.transferFrom(msg.sender, address(this), tokenDeposit));
emit LiquidityProvided(msg.sender, liquidityMinted, msg.value, tokenDeposit);
return tokenDeposit;
}
π‘ Remember: Every time you perform actions with your $BAL tokens (deposit, exchange), you'll need to call
approve()
from theBalloons.sol
contract to authorize the DEX address to handle a specific number of your $BAL tokens. To keep things simple, you can just do that fromDebug Contracts
tab, ensure you approve a large enough quantity of tokens to not face allowance problems.
π¬π¬ More Hints: The
withdraw()
function lets a user take his Liquidity Provider Tokens out, withdrawing both ETH and $BAL tokens out at the correct ratio. The actual amount of ETH and tokens a liquidity provider withdraws could be higher than what they deposited because of the 0.3% fees collected from each trade. It also could be lower depending on the price fluctuations of $BAL to ETH and vice versa (from token swaps taking place using your AMM!). The 0.3% fee incentivizes third parties to provide liquidity, but they must be cautious of Impermanent Loss (IL).
π¦ Guiding Questions
Part 1: Getting Reserves π¦
Question One
How can we verify that a user is withdrawing an
amount
ofliquidity
that they actually have?
Question Two
Just like the
deposit()
function we need both assets. How much ETH does our DEX have? Remember, this function is not payable, so we don't have to subtract anything.
Question Three
What is the value of
tokenReserve
?
Part 2: Performing Calculations π€
We need to calculate how much of each asset our user is going withdraw, call them
ethWithdrawn
andtokenAmount
. The equation is:amount *
reserveOfDesiredUnits/ totalLiquidity
Question Four
How do we get
ethWithdrawn
?
Question Five
How do we get
tokenOutput
?
Part 3: Updating, Transferring, Emitting, and Returning π
Question Six
The user is withdrawing, how do we represent this decrease in this individual's
liquidity
?
Question Seven
The DEX also lost liquidity, how should we update
totalLiquidity
?
Question Eight
How do pay the user the value of
ethWithdrawn
?
Question Nine
How do we give them their tokens?
Question Ten
We have an event to emit, which one?
Question Eleven
Last, what are we returning?
π©π½βπ« Solution Code
function withdraw(uint256 amount) public returns (uint256 eth_amount, uint256 token_amount) {
require(liquidity[msg.sender] >= amount, "withdraw: sender does not have enough liquidity to withdraw.");
uint256 ethReserve = address(this).balance;
uint256 tokenReserve = token.balanceOf(address(this));
uint256 ethWithdrawn;
ethWithdrawn = amount * ethReserve / totalLiquidity;
uint256 tokenAmount = amount * tokenReserve / totalLiquidity;
liquidity[msg.sender] -= amount;
totalLiquidity -= amount;
(bool sent, ) = payable(msg.sender).call{ value: ethWithdrawn }("");
require(sent, "withdraw(): revert in transferring eth to you!");
require(token.transfer(msg.sender, tokenAmount));
emit LiquidityRemoved(msg.sender, amount, tokenAmount, ethWithdrawn);
return (ethWithdrawn, tokenAmount);
}
π¨ Take a second to understand what these functions are doing if you pasted them into your DEX.sol
file in packages/hardhat/contracts:
-
π§ Deposit liquidity, and then check your liquidity amount through the mapping in the debug tab. Has it changed properly? Did the right amount of assets get deposited?
-
π§ What happens if you
deposit()
at the beginning of the deployed contract, then another user starts swapping out for most of the balloons, and then you try to withdraw your position as a liquidity provider? Answer: you should get the amount of liquidity proportional to the ratio of assets within the isolated liquidity pool. It will not be 1:1.
Cool beans! Your front-end should be showing something like this now!
Now, a user can just enter the amount of ETH or tokens they want to swap and the chart will display how the price is calculated. The user can also visualize how larger swaps result in more slippage and less output asset.
- In
packages\nextjs\app\events\page.tsx
implement an event and emit for theapprove()
function to make it clear when it has been executed.
- 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.ts
π You will need to generate a deployer address using yarn generate
This creates a mnemonic and saves it locally.
π©βπ Use yarn account
to view your deployer account balances.
β½οΈ You will need to send ETH to your deployer address with your wallet, or get it from a public faucet of your chosen network.
π Run yarn deploy
to deploy your smart contracts to a public network (selected in hardhat.config.ts
)
π¬ Hint: You can set the
defaultNetwork
inhardhat.config.ts
tosepolia
OR you canyarn deploy --network sepolia
.
π¬π¬ More Hints: For faster loading of your "Events" page, consider updating the
fromBlock
passed touseScaffoldEventHistory
inpackages/nextjs/app/events/page.tsx
toblocknumber - 10
at which your contract was deployed. Example:fromBlock: 3750241n
(wheren
represents its a BigInt). To find this blocknumber, search your contract's address on Etherscan and find theContract Creation
transaction line.
βοΈ Edit your frontend config in packages/nextjs/scaffold.config.ts
to change the targetNetwork
to chains.sepolia
or any other public network.
π» View your frontend at http://localhost:3000 and verify you see the correct network.
π‘ When you are ready to ship the frontend app...
π¦ Run yarn vercel
to package up your frontend and deploy.
Follow the steps to deploy to Vercel. Once you log in (email, github, etc), the default options should work. It'll give you a public URL.
If you want to redeploy to the same production URL you can run
yarn vercel --prod
. If you omit the--prod
flag it will deploy it to a preview/test URL.
π¦ Since we have deployed to a public testnet, you will now need to connect using a wallet you own or use a burner wallet. By default π₯
burner wallets
are only available onhardhat
. You can enable them on every chain by settingonlyLocalBurnerWallet: false
in your frontend config (scaffold.config.ts
inpackages/nextjs/
)
By default, π Scaffold-ETH 2 provides predefined API keys for popular services such as Alchemy and Etherscan. This allows you to begin developing and testing your applications more easily, avoiding the need to register for these services.
This is great to complete your SpeedRunEthereum.
For production-grade applications, it's recommended to obtain your own API keys (to prevent rate limiting issues). You can configure these at:
-
π·
ALCHEMY_API_KEY
variable inpackages/hardhat/.env
andpackages/nextjs/.env.local
. You can create API keys from the Alchemy dashboard. -
π
ETHERSCAN_API_KEY
variable inpackages/hardhat/.env
with your generated API key. You can get your key here.
π¬ Hint: It's recommended to store env's for nextjs in Vercel/system env config for live apps and use .env.local for local testing.
Run the yarn verify --network your_network
command to verify your contracts on etherscan π°
π Search this address on Etherscan to get the URL you submit to πββοΈSpeedRunEthereum.com.
π©ββ€οΈβπ¨ Send some $BAL and share your public url with a friend and ask them to swap their tokens :)
π Head to your next challenge here.
π¬ Problems, questions, comments on the stack? Post them to the π scaffold-eth developers chat