Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions examples/charge-wagmi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,21 @@
},
"dependencies": {
"@metamask/sdk": "~0.33.1",
"@remix-run/node-fetch-server": "latest",
"@tanstack/react-query": "latest",
"@types/node": "latest",
"@remix-run/node-fetch-server": "^0.13.0",
"@tanstack/react-query": "^5.99.0",
"@types/node": "^25.6.0",
"mppx": "latest",
"react": "latest",
"react-dom": "latest",
"viem": "latest",
"wagmi": "latest"
"react": "^19.2.5",
"react-dom": "^19.2.5",
"viem": "^2.47.6",
"wagmi": "^3.6.2"
},
"devDependencies": {
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript/native-preview": "latest",
"@vitejs/plugin-react": "latest",
"typescript": "latest",
"vite": "latest"
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript/native-preview": "^7.0.0-dev.20260416.1",
"@vitejs/plugin-react": "^6.0.1",
"typescript": "~5.9.3",
"vite": "^8.0.8"
}
}
10 changes: 2 additions & 8 deletions examples/charge-wagmi/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,9 @@ function App() {
<div key={connector.uid}>
<button
type="button"
onClick={() => connect({ connector, capabilities: { type: 'sign-in' } })}
onClick={() => connect({ connector })}
>
Sign in (Passkey)
</button>
<button
type="button"
onClick={() => connect({ connector, capabilities: { type: 'sign-up' } })}
>
Sign up (Passkey)
Connect (Passkey)
</button>
</div>
) : (
Expand Down
6 changes: 2 additions & 4 deletions examples/charge-wagmi/src/wagmi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@ import { createConfig, http } from 'wagmi'
import { getConnectorClient } from 'wagmi/actions'
import { tempoModerato } from 'wagmi/chains'
import { metaMask } from 'wagmi/connectors'
import { KeyManager, webAuthn } from 'wagmi/tempo'
import { webAuthn } from 'wagmi/tempo'

export const config = createConfig({
chains: [tempoModerato],
connectors: [
webAuthn({
keyManager: KeyManager.localStorage(),
}),
webAuthn(),
metaMask(),
],
transports: {
Expand Down
14 changes: 7 additions & 7 deletions examples/charge/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"preview": "vite preview"
},
"dependencies": {
"@remix-run/node-fetch-server": "latest",
"@types/node": "latest",
"@typescript/native-preview": "latest",
"bun": "latest",
"@remix-run/node-fetch-server": "^0.13.0",
"@types/node": "^25.6.0",
"@typescript/native-preview": "^7.0.0-dev.20260416.1",
"bun": "^1.3.12",
"mppx": "latest",
"typescript": "latest",
"viem": "latest",
"vite": "latest"
"typescript": "~5.9.3",
"viem": "^2.47.6",
"vite": "^8.0.8"
}
}
2 changes: 1 addition & 1 deletion examples/session/ws/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {
"@remix-run/node-fetch-server": "^0.13.0",
"@types/node": "^25.5.0",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260323.1",
"isows": "^1.0.7",
Expand Down
12 changes: 6 additions & 6 deletions examples/stripe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"preview": "vite preview"
},
"dependencies": {
"@remix-run/node-fetch-server": "latest",
"@stripe/stripe-js": "^8.7.0",
"@types/node": "latest",
"@typescript/native-preview": "latest",
"@remix-run/node-fetch-server": "^0.13.0",
"@stripe/stripe-js": "^9.1.0",
"@types/node": "^25.6.0",
"@typescript/native-preview": "^7.0.0-dev.20260416.1",
"mppx": "latest",
"stripe": "^17.7.0",
"typescript": "latest",
"vite": "latest"
"typescript": "~5.9.3",
"vite": "^8.0.8"
}
}
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@modelcontextprotocol/sdk": "1.27.1",
"@playwright/test": "^1.58.2",
"@types/express": "^5.0.6",
"@types/node": "^25.5.0",
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"@typescript/native-preview": "7.0.0-dev.20260323.1",
"browserslist": "^4.28.1",
Expand All @@ -52,7 +52,7 @@
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"viem": "^2.47.6",
"vite": "^8.0.5",
"vite": "^8.0.8",
"vp": "npm:vite-plus@~0.1.17",
"ws": "^8.20.0",
"zile": "^0.0.24"
Expand Down Expand Up @@ -183,8 +183,8 @@
}
},
"dependencies": {
"incur": "^0.3.23",
"ox": "0.14.10",
"incur": "^0.3.25",
"ox": "0.14.15",
"zod": "^4.3.6"
},
"repository": {
Expand Down
Loading
Loading