From 9250544066b3180570a70651b64afe93ff757849 Mon Sep 17 00:00:00 2001 From: t4sk Date: Thu, 12 Sep 2024 19:19:11 +0900 Subject: [PATCH] Remove AI generated invalid links --- courses/uniswap-v2/2-swap/10-code-walk-get-amounts-in/+page.md | 1 - courses/uniswap-v2/2-swap/14-swap-ex-1/+page.md | 3 +-- courses/uniswap-v2/2-swap/2-swap-fee/+page.md | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/courses/uniswap-v2/2-swap/10-code-walk-get-amounts-in/+page.md b/courses/uniswap-v2/2-swap/10-code-walk-get-amounts-in/+page.md index 55aeeac2..d1e0dfec 100644 --- a/courses/uniswap-v2/2-swap/10-code-walk-get-amounts-in/+page.md +++ b/courses/uniswap-v2/2-swap/10-code-walk-get-amounts-in/+page.md @@ -31,4 +31,3 @@ numerator = reserveIn * amountOut * 1000 / (amountOut * 997 + reserveIn * 1000) The result of this calculation is then stored in the amounts array. We will keep looping through the array until we get to `amounts[0]`, which will contain the amount of tokens that are needed to execute the swap. This entire process is performed inside the for loop. -/home/equious/Nevermore/uniswap-v2/2-swap/10-code-walk-get-amounts-in/+page.md diff --git a/courses/uniswap-v2/2-swap/14-swap-ex-1/+page.md b/courses/uniswap-v2/2-swap/14-swap-ex-1/+page.md index 9954dc66..dafa91ee 100644 --- a/courses/uniswap-v2/2-swap/14-swap-ex-1/+page.md +++ b/courses/uniswap-v2/2-swap/14-swap-ex-1/+page.md @@ -87,5 +87,4 @@ In our test, the **amountIn** is 1e18, the **amountOutMin** is 1, the **path** i This is just a simple example of Uniswap V2 Router testing. We can expand on this by testing other functions, varying inputs, and simulating more complex scenarios. -The next step is to write more tests to cover other functions. We will also learn how to test the `swapExactTokensForETH` function. Let me know if you'd like to delve deeper into these topics. -/home/equious/Nevermore/uniswap-v2/2-swap/14-swap-ex-1/+page.md +The next step is to write more tests to cover other functions. We will also learn how to test the `swapExactTokensForETH` function. diff --git a/courses/uniswap-v2/2-swap/2-swap-fee/+page.md b/courses/uniswap-v2/2-swap/2-swap-fee/+page.md index c2c3dcec..d54c6e3c 100644 --- a/courses/uniswap-v2/2-swap/2-swap-fee/+page.md +++ b/courses/uniswap-v2/2-swap/2-swap-fee/+page.md @@ -35,4 +35,3 @@ dy = 1000 * 0.997 * 3000 / (6000000 + 1000 * 0.997) ``` We can now use a calculator to determine the value of *dy*, which would be approximately 0.498341 ETH. -/home/equious/Nevermore/uniswap-v2/2-swap/2-swap-fee/+page.md