docs icon indicating copy to clipboard operation
docs copied to clipboard

📓 Uniswap V3 docs website

Results 231 docs issues
Sort by recently updated
recently updated
newest added

This is based on the discussion here: https://github.com/Uniswap/universal-router-sdk/issues/161#issuecomment-1936539854. I think i was initially confused about this param after working with the quoter that requires a list of individual token addresses

Link: https://github.com/Uniswap/docs/blob/main/docs/contracts/universal-router/02-technical-reference.md#unwrap_eth It should be `UNWRAP_ETH` -> `UNWRAP_WETH`

https://docs.uniswap.org/ > **Fetch token prices** button > https://docs.uniswap.org/sdk/v3/guides/quoting > **Page Not Found**

Can you please update the [deployments](https://docs.uniswap.org/contracts/v3/reference/deployments) page when https://github.com/Uniswap/v3-core/issues/963 is completed? OP Goerli is being deprecated on January 7th 2024 and builders are migrating to OP Sepolia and want to...

# Enhancement: ``` Linter: global import of path @uniswap/v3-periphery/contracts/interfaces/ISwapRouter.sol should not be allowed. Instead specified the names to import individually [no-global-import] ```

Includes updated guides and docs for the new functionality of the v3-sdk.

Updated 03-routing.md according to latest code #changes Replaced currencies => tokens #before changes ... CurrencyAmount.fromRawAmount( CurrentConfig.currencies.in, fromReadableAmount( CurrentConfig.currencies.amountIn, CurrentConfig.currencies.in.decimals ).toString() ... #after changes ... CurrencyAmount.fromRawAmount( CurrentConfig.tokens.in, fromReadableAmount( CurrentConfig.tokens.amountIn, CurrentConfig.tokens.in.decimals ).toString()...

When running the quote logic in quoting project of v3-sdk, i can't get the right price of WETH/USDC after switching the tokens in config.ts. By delving into the code, i...