Write your code inside the SwapUniswapV3 contract
This exercise is designed to swap rETH to WETH on Uniswap V3.
function swapRethToWeth(uint256 wethAmountIn, uint256 rEthAmountOutMin)
external
{
// Write your code inside here
}-
Swap rETH to WETH
- Implement logic to swap rETH to WETH on Uniswap V3
Hint: Call the internal function
swap
forge test --fork-url $FORK_URL --match-path test/exercise-swap-uniswap-v3.sol --match-test test_swapRethToWeth -vvv