feat: Uniswap V3 + WETH on Arbitrum and Optimism - #26
Merged
Conversation
SwapRouter02 / QuoterV2 / Factory / NFT Position Manager / Permit2 / Universal Router plus wrapped WETH and native Circle USDC, from the official Uniswap deployment pages. Unblocks SessionPolicyActions.uniswapV3Swap(42161|10) in the SDK — that helper reads swapRouter02[chainId] and refuses unknown chains.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
0.9.0 added Aave on Arbitrum/Optimism but not Uniswap V3. The SDK's
SessionPolicyActions.uniswapV3Swap(chainId)readsProtocols.uniswapV3.swapRouter02[chainId]and throws when the catalog has no entry — so Studio still cannot grant an Arb/OP swap without a hardcodedtarget.This fills that hole. Addresses from the official Uniswap pages:
Also adds
wrapped.wethand native Circle USDC (uniswapV3.tokens.USDC) on both chains souniswapV3Capability({ approveTokens: [USDC, WETH] })can resolve from the catalog.SwapRouter02 / Factory / QuoterV2 / NFT PM share Ethereum's CREATE2 addresses on Arb and OP — confirmed against the official tables, not assumed.
After merge
Release as 0.10.0, then bump
@avaprotocol/sdk-jsto^0.10.0. No SDK code change is required —uniswapV3Swap(42161)starts resolving.Test plan
yarn test:run(71)yarn typecheck