Skip to content

Commit 42cf566

Browse files
authored
feat(sdk-core): v4 addresses for arb base polygon (#249)
## Description v4 addresses for arbitrum, base and polygon ## How Has This Been Tested? _[e.g. Manually, E2E tests, unit tests, Storybook]_ ## Are there any breaking changes? _[e.g. Type definitions, API definitions]_ If there are breaking changes, please ensure you bump the major version Bump the major version (by using the title `feat(breaking): ...`), post a notice in #eng-sdks, and explicitly notify all Uniswap Labs consumers of the SDK. ## (Optional) Feedback Focus _[Specific parts of this PR you'd like feedback on, or that reviewers should pay closer attention to]_ ## (Optional) Follow Ups _[Things that weren't addressed in this PR, ways you plan to build on this work, or other ways this work could be extended]_
1 parent c1c9f64 commit 42cf566

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

sdks/sdk-core/src/addresses.ts

+18-1
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,20 @@ const ARBITRUM_ONE_ADDRESSES: ChainAddresses = {
105105
...DEFAULT_ADDRESSES,
106106
multicallAddress: '0xadF885960B47eA2CD9B55E6DAc6B42b7Cb2806dB',
107107
tickLensAddress: '0xbfd8137f7d1516D3ea5cA83523914859ec47F573',
108+
109+
v4PoolManagerAddress: '0x360e68faccca8ca495c1b759fd9eee466db9fb32',
110+
v4PositionManagerAddress: '0xd88f38f930b7952f2db2432cb002e7abbf3dd869',
111+
v4StateView: '0x76fd297e2d437cd7f76d50f01afe6160f86e9990',
112+
v4QuoterAddress: '0x3972c00f7ed4885e145823eb7c655375d275a1c5',
113+
}
114+
const POLYGON_ADDRESSES: ChainAddresses = {
115+
...DEFAULT_ADDRESSES,
116+
117+
v4PoolManagerAddress: '0x67366782805870060151383f4bbff9dab53e5cd6',
118+
v4PositionManagerAddress: '0x1ec2ebf4f37e7363fdfe3551602425af0b3ceef9',
119+
v4StateView: '0x5ea1bd7974c8a611cbab0bdcafcb1d9cc9b3ba5a',
120+
v4QuoterAddress: '0xb3d5c3dfc3a7aebff71895a7191796bffc2c81b9',
108121
}
109-
const POLYGON_ADDRESSES: ChainAddresses = DEFAULT_ADDRESSES
110122

111123
// celo v3 addresses
112124
const CELO_ADDRESSES: ChainAddresses = {
@@ -216,6 +228,11 @@ const BASE_ADDRESSES: ChainAddresses = {
216228
tickLensAddress: '0x0CdeE061c75D43c82520eD998C23ac2991c9ac6d',
217229
swapRouter02Address: '0x2626664c2603336E57B271c5C0b26F421741e481',
218230
mixedRouteQuoterV1Address: '0xe544efae946f0008ae9a8d64493efa7886b73776',
231+
232+
v4PoolManagerAddress: '0x498581ff718922c3f8e6a244956af099b2652b2b',
233+
v4PositionManagerAddress: '0x7c5f5a4bbd8fd63184577525326123b519429bdc',
234+
v4StateView: '0xa3c0c9b65bad0b08107aa264b0f3db444b867a71',
235+
v4QuoterAddress: '0x0d5e0f971ed27fbff6c2837bf31316121532048d',
219236
}
220237

221238
// Base Goerli v3 addresses

0 commit comments

Comments
 (0)