docs icon indicating copy to clipboard operation
docs copied to clipboard

📓 Uniswap V3 docs website

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

The remapping line for openzeppelin contracts has a missing folder on the path, this gives an error when copy the example on the Step `1: Set Up the Project` section...

- fix local build for images - make v1 of data hub doc, along with migrating the data guides over

This link: https://github.com/Uniswap/docs/blob/main/docs/sdk/v3/guides/advanced/02-pool-data.md?plain=1#L266 to: live page: is broken correct link is:

Here: https://docs.uniswap.org/sdk/v3/guides/advanced/pool-data this link: https://github.com/Uniswap/docs/blob/main/docs/sdk/v3/guides/advanced/02-pool-data.md?plain=1#L11 is broken. It should link to parent folder: https://github.com/Uniswap/docs/blob/main/docs/sdk/v3/guides/01-background.md

https://github.com/Uniswap/docs/blob/main/docs/contracts/v4/guides/13-flash-accounting.mdx#reading-deltastates From example: ```solidity using TransientStateLibrary for IPoolManager; function checkDeltaBeforeOperation( Currency currency, address user ) external view returns (int256) { // Important: This shows the current delta for this token/user...

https://docs.uniswap.org/contracts/v4/quickstart/create-pool#7-encode-the-modifyliquidites-call 7. Encode the [modifyLiquidites](https://docs.uniswap.org/contracts/v4/reference/periphery/PositionManager#modifyliquidities) call ```solidity uint256 deadline = block.timestamp + 60; params[1] = abi.encodeWithSelector( posm.modifyLiquidities.selector, abi.encode(actions, mintParams), deadline ); ``` In the EVM, block.timestamp represents the block time...

## Description The current [Hook Fees documentation](https://docs.uniswap.org/contracts/v4/guides/custom-accounting#hook-fees-inv4) primarily focuses on implementing fees through the `beforeSwap` hook. However, this approach can potentially lead to overcharging fees in certain scenarios. I suggest...

Since v4 is becoming increasingly popular and its contracts lack necessary mappings, a subgraph is even more essential. I suggest that Uniswap officially create v4 subgraphs for each chain and...