npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@scom/scom-uniswap-v3-contract

v0.1.1

Published

[https://docs.uniswap.org/contracts/v3/reference/deployments](https://docs.uniswap.org/contracts/v3/reference/deployments)

Readme

Contract Addresses

https://docs.uniswap.org/contracts/v3/reference/deployments

| Contract | Address | | - | - | | UniswapV3Factory | 0x1F98431c8aD98523631AE4a59f267346ea31F984 | | Multicall2 | 0x5BA1e12693Dc8F9c48aAD8770482f4739bEeD696 | | ProxyAdmin | 0xB753548F6E010e7e680BA186F9Ca1BdAB2E90cf2 | | TickLens | 0xbfd8137f7d1516D3ea5cA83523914859ec47F573 | | Quoter | 0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6 | | SwapRouter | 0xE592427A0AEce92De3Edee1F18E0157C05861564 | | NFTDescriptor | 0x42B24A95702b9986e82d421cC3568932790A48Ec | | NonfungibleTokenPositionDescriptor | 0x91ae842A5Ffd8d12023116943e72A606179294f3 | | NonfungiblePositionManager | 0xC36442b4a4522E871399CD717aBDD847Ab11FE88 | | TransparentUpgradeableProxy | 0xEe6A57eC80ea46401049E92587E52f5Ec1c24785 | | V3Migrator | 0xA5644E29708357803b5A882D272c41cC0dF92B34 | | QuoterV2 | 0x61fFE014bA17989E743c5F6cB21bF9697530B21e | | SwapRouter02 | 0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45 | | Permit2 | 0x000000000022d473030f116ddee9f6b43ac78ba3 |

Uniswap's own Deployer

0x6c9fc64a53c1b71fb3f9af64d1ae3a4931a5f4e9

Notes on calling uniswap router swap function:

  1. Prices are always based on token0 (token with smaller address); independent of in-token / out-token direction.
  2. sqrtPriceLimitX96 can be set to 0 to trade at the slot0 price
  3. sqrtPriceLimitX96 should be smaller then the slot0 price when swapping from token0 to token1 or highter then the slot0 price for token1 to token0 swaps.
  4. ETH input is automatically wrapped.
  5. To get native ETH output: 1. set router as the recipient in swap paramters, 2. use router.multicall() with router.unwrapWETH9() as the second call.
  6. For ETH input and router.exactOut(): use router.multicall() with router.refundETH() as the second call to get excess ETH back.
  7. For multi-hop exactOut, path are reversed (token-out is the first in the list and token-in is the last).

Notes on logarithm

  1. log1.0001(X) = log(X) / log(1.0001)
  2. log10(big_X) = log10(x*1eY) = Y + log10(x)

Resources

  • https://uniswap.org/whitepaper-v3.pdf
  • https://github.com/Uniswap/v3-core
  • https://github.com/Uniswap/v3-periphery
  • https://github.com/Uniswap/swap-router-contracts
  • https://docs.uniswap.org/contracts/v3/overview
  • https://uniswapv3book.com/