Skip to main content
Helpful?

Uniswap Contract Deployments

The latest version of @uniswap/v3-core, @uniswap/v3-periphery, and @uniswap/swap-router-contracts are deployed at the addresses listed below. Integrators should no longer assume that they are deployed to the same addresses across chains and be extremely careful to confirm mappings below.

ContractOptimism AddressesOP Sepolia Addresses SDK-CoreOP Sepolia Addresses
UniswapV3Factory0x1F98431c8aD98523631AE4a59f267346ea31F9840x8CE191193D15ea94e11d327b4c7ad8bbE520f6aF0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24
Multicall0x1F98415757620B543A52E61c46B32eB19261F9840x80e4e06841bb76AA9735E0448cB8d003C0EF009a0xd867e273eAbD6c853fCd0Ca0bFB6a3aE6491d2C1
ProxyAdmin0xB753548F6E010e7e680BA186F9Ca1BdAB2E90cf20xD7303474Baca835743B54D73799688990f24a79D0xD7303474Baca835743B54D73799688990f24a79D
TickLens0xbfd8137f7d1516D3ea5cA83523914859ec47F5730xCb7f54747F58F8944973cea5b8f4ac2209BadDC50xedf6066a2b290C185783862C7F4776A2C8077AD1
Quoter0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6````
SwapRouter0xE592427A0AEce92De3Edee1F18E0157C05861564````
NFTDescriptor0x42B24A95702b9986e82d421cC3568932790A48Ec0x4e0caFF1Df1cCd7CF782FDdeD77f020699B57f1a0x4e0caFF1Df1cCd7CF782FDdeD77f020699B57f1a
NonfungibleTokenPositionDescriptor0x91ae842A5Ffd8d12023116943e72A606179294f30xd7c6e867591608D32Fe476d0DbDc95d0cf584c8F0xd7c6e867591608D32Fe476d0DbDc95d0cf584c8F
TransparentUpgradeableProxy0xEe6A57eC80ea46401049E92587E52f5Ec1c247850x1E2A708040Eb6Ed08893E27E35D399e8E8e7857E0x1E2A708040Eb6Ed08893E27E35D399e8E8e7857E
NonfungiblePositionManager0xC36442b4a4522E871399CD717aBDD847Ab11FE880xdA75cEf1C93078e8b736FCA5D5a30adb97C8957d0x27F971cb582BF9E50F397e4d29a5C7A34f11faA2
V3Migrator``0xE7EcbAAaA54D007A00dbb6c1d2f150066D69dA070xCbf8b7f80800bd4888Fbc7bf1713B80FE4E23E10
QuoterV20x61fFE014bA17989E743c5F6cB21bF9697530B21e0x0FBEa6cf957d95ee9313490050F6A0DA680394040xC5290058841028F1614F3A6F0F5816cAd0df5E27
SwapRouter020x68b3465833fb72A70ecDF485E0e4C7bD8665Fc450x94cC0AaC535CCDB3C01d6787D6413C739ae12bc40x94cC0AaC535CCDB3C01d6787D6413C739ae12bc4
Permit20x000000000022D473030F116dDEE9F6B43aC78BA30x000000000022D473030F116dDEE9F6B43aC78BA30x000000000022D473030F116dDEE9F6B43aC78BA3
UniversalRouter0xCb1355ff08Ab38bBCE60111F1bb2B784bE25D7e80xD5bBa708b39537d33F2812E5Ea032622456F1A950xD5bBa708b39537d33F2812E5Ea032622456F1A95
v3StakerAddress0xe34139463bA50bD61336E0c446Bd8C0867c6fE650x78eF13931e5625C828ef8Ec455ba7fa09fDa9808``

These addresses are final and were deployed from these npm package versions:

Uniswap V3 Staker

An up-to-date list of deploy addresses by chain is hosted on Github for the UniswapV3Staker contract.

Universal Router

The UniversalRouter contract is the current preferred entrypoint for ERC20 and NFT swaps, replacing, among other contracts, SwapRouter02. An up-to-date list of deploy addresses by chain is hosted on Github.

Uniswap Pool Deployments

Every Uniswap pool is a unique instance of the UniswapV3Pool contract and is deployed at its own unique address. The contract source code of the pool will be auto-verified on etherscan. For example, here is the ETH/USDC 0.3% pool on Ethereum mainnet.

You can look up the address of an existing pool on Uniswap Info or by calling the getPool function on the UniswapV3Factory contract.

getPool("0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", 3000)

Wrapped Native Token Addresses

The Uniswap Protocol supports trading of ERC20 tokens. In order to swap a native asset like ETH (or MATIC on Polygon), the Uniswap protocol wraps these assets in an ERC20 wrapped native token contract. The protocol uses the following WETH9 addresses on Ethereum and WMATIC addresses on Polygon.

NetworkChainIdWrapped Native TokenAddress
Optimism10WETH0x4200000000000000000000000000000000000006
Optimism Sepolia11155420WETH0x4200000000000000000000000000000000000006
Helpful?