-
Notifications
You must be signed in to change notification settings - Fork 0
Bump React Native example to SDK 1.0.0 and fix the mock wallet #41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
11766bd
8be972f
20f4807
5cb8d86
2be5ad0
49d2bf9
4115648
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,7 +16,7 @@ | |
| }, | ||
| "dependencies": { | ||
| "@babel/runtime": "^7.28.6", | ||
| "@formo/analytics-react-native": "^0.1.6", | ||
| "@formo/analytics-react-native": "^1.0.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The updated SDK declares Useful? React with 👍 / 👎. |
||
| "@react-native-async-storage/async-storage": "^1.21.0", | ||
| "@tanstack/react-query": "^5.90.20", | ||
| "@wagmi/connectors": "5.7.7", | ||
|
|
@@ -25,6 +25,7 @@ | |
| "ethereum-cryptography": "3.2.0", | ||
| "expo": "~52.0.0", | ||
| "expo-application": "~6.0.0", | ||
| "expo-constants": "~17.0.8", | ||
| "expo-crypto": "~14.0.0", | ||
| "expo-device": "~7.0.0", | ||
| "expo-linking": "~7.0.0", | ||
|
|
@@ -35,6 +36,7 @@ | |
| "react-native": "0.76.0", | ||
| "react-native-get-random-values": "^1.11.0", | ||
| "react-native-modal": "14.0.0-rc.1", | ||
| "react-native-play-install-referrer": "^1.1.9", | ||
| "react-native-safe-area-context": "^4.12.0", | ||
| "react-native-screens": "~4.0.0", | ||
| "react-native-svg": "^15.15.1", | ||
|
|
@@ -53,14 +55,5 @@ | |
| "jest-expo": "~52.0.0", | ||
| "typescript": "~5.3.3" | ||
| }, | ||
| "pnpm": { | ||
| "overrides": { | ||
| "h3": "^1.15.9", | ||
| "node-forge": "^1.4.0", | ||
| "@wagmi/core": "2.16.4", | ||
| "@xmldom/xmldom": "0.8.13", | ||
| "undici": "6.27.0" | ||
| } | ||
| }, | ||
| "private": true | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pnpm testnow fails beforewagmi.test.tscan run: its Jest mock forwagmi/chainsprovides onlyidandname(jest.setup.jslines 62–65), so this dereference throws while importingconfig/wagmi.ts. Add the requiredrpcUrls.defaultshape to that mock (or make the helper tolerate it) so the existing configuration tests remain runnable.Useful? React with 👍 / 👎.