Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.18.1
20
2 changes: 1 addition & 1 deletion packages/demo/backend/src/types/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface WalletData {
/** Wallet address */
address: Address
/** Wallet ID */
id: string
// id: string
}

/**
Expand Down
6 changes: 5 additions & 1 deletion packages/demo/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
"@eth-optimism/verbs-service": "workspace:*",
"@eth-optimism/viem": "^0.4.13",
"@privy-io/react-auth": "^2.24.0",
"@turnkey/react-wallet-kit": "^1.1.2",
"buffer": "^6.0.3",
"eventemitter3": "^5",
"react": "^18",
"react-dom": "^18",
"react-router": "7",
Expand All @@ -31,6 +33,7 @@
"zod": "^4.0.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.13",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
Expand All @@ -44,7 +47,8 @@
"globals": "^15.0.0",
"jsdom": "^23.0.1",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3",
"postcss-import": "^16.1.1",
"tailwindcss": "^4.1.13",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.0",
"vite": "^4.4.5",
Expand Down
3 changes: 2 additions & 1 deletion packages/demo/frontend/postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/** @type {import('postcss-load-config').Config} */
export default {
plugins: {
tailwindcss: {},
autoprefixer: {},
'@tailwindcss/postcss': {},
},
}
6 changes: 3 additions & 3 deletions packages/demo/frontend/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { BrowserRouter as Router, Routes, Route } from 'react-router-dom'
import Terminal from './components/Terminal'
import Home from './components/Home'
import { PrivyProvider } from './providers/PrivyProvider'
import { Turnkey as TurnkeyProvider } from './providers/TurnkeyProvider'

function App() {
return (
<PrivyProvider>
<TurnkeyProvider>
<Router>
<div className="w-full h-screen bg-terminal-bg">
<Routes>
Expand All @@ -14,7 +14,7 @@ function App() {
</Routes>
</div>
</Router>
</PrivyProvider>
</TurnkeyProvider>
)
}

Expand Down
Loading