Open
Conversation
Introduced a new Trails widget in the Swap component, replacing the previous GeneralList.
- Upgraded viem to version 2.41.2 and wagmi to version 2.18.0 in package.json files for all relevant packages and examples. - Added overrides for viem and wagmi in package.json and pnpm-lock.yaml to ensure consistent dependency resolution.
- Added "baseUrl" to tsconfig.json for both React and Wallet Widget examples to improve module resolution. - Introduced "paths" in the Wallet Widget tsconfig.json to facilitate easier imports from the checkout package.
Deploying web-sdk-react-example with
|
| Latest commit: |
c3a3343
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://a971017f.web-sdk-react-example.pages.dev |
| Branch Preview URL: | https://trails-in-wallet-widget.web-sdk-react-example.pages.dev |
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.
Ticket link:
API breaking changes:
Manual testing required:
Docs changes required:
Description
Screen.Recording.2026-02-04.at.22.55.00.mov
connect({ withCapabilities })signature.{ address, capabilities }[]only when requested.Why
wagmi’s connector contract now supports capability-aware accounts. Our custom connectors were still returning only Address[] and didn’t accept the new parameters, which caused TS errors during build. These changes keep existing behavior intact for current callers while supporting the new wagmi shape.