From 7dfc7ee029089923306dd7b1e0ac5d379f801f54 Mon Sep 17 00:00:00 2001 From: Afanti Date: Mon, 29 Sep 2025 06:14:09 +0800 Subject: [PATCH] Correct token name in the liquidity pool The token name in the liquidity pool is wrong. Use this change to make it right. --- docs/pages/contracts/v2/router-v2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/contracts/v2/router-v2.md b/docs/pages/contracts/v2/router-v2.md index dc010c8..39e740c 100644 --- a/docs/pages/contracts/v2/router-v2.md +++ b/docs/pages/contracts/v2/router-v2.md @@ -72,7 +72,7 @@ Adds liquidity to a BEP20⇄BEP20 pool. | tokenA | `address` | The contract address of one token from your liquidity pair. | | tokenB | `address` | The contract address of the other token from your liquidity pair. | | amountADesired | `uint` | The amount of tokenA you'd like to provide as liquidity. | -| amountBDesired | `uint` | The amount of tokenA you'd like to provide as liquidity. | +| amountBDesired | `uint` | The amount of tokenB you'd like to provide as liquidity. | | amountAMin | `uint` | The minimum amount of tokenA to provide (slippage impact). | | amountBMin | `uint` | The minimum amount of tokenB to provide (slippage impact). | | to | `address` | Address of LP Token recipient. |