Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ae3ec51
chore: update package dependencies to latest versions, including majo…
mithatakbulut Jan 29, 2026
18a7b03
feat: add manager and networks modules for wallet integration
mithatakbulut Jan 29, 2026
a2bc695
refactor: remove address utility functions and add new utility modules
mithatakbulut Jan 29, 2026
b6ac193
feat: refactor stores, add one for QueuedPayloads
mithatakbulut Jan 29, 2026
9bac801
add MnemonicInputGrid component for mnemonic input handling. Refactor…
mithatakbulut Jan 29, 2026
5a893c7
feat: add new modal components for wallet functionality
mithatakbulut Jan 29, 2026
f6b693f
feat: add wallet sections for assets, connections, and recovery
mithatakbulut Jan 29, 2026
dbd84d4
feat: add various hooks for wallet and transaction management
mithatakbulut Jan 29, 2026
78f697e
feat: implement recovery queue and payload management components
mithatakbulut Jan 29, 2026
0d3faaf
adjust routes for wallet recovery pages: /wallet-v2-recovery and /wal…
mithatakbulut Jan 29, 2026
795a78d
refactor: enhance collectible and token import/send components
mithatakbulut Jan 29, 2026
bd77e65
refactor: clean up balance formatting utility and remove unused code
mithatakbulut Jan 29, 2026
5bdc77f
fix prettier deps and script
mithatakbulut Jan 29, 2026
a0d75ff
fix: remove to of onRecover
mithatakbulut Jan 29, 2026
f504b1f
Fix loading state bug when retrying recovery after MetaMask rejection
mithatakbulut Jan 29, 2026
fb15da5
feat: automatically fetch token and collectible balances for recovery…
mithatakbulut Jan 29, 2026
072f583
refactor: implement createTokenRecordFromCollectible for convertion
mithatakbulut Jan 29, 2026
7494453
fix infinite rpc call
mithatakbulut Jan 30, 2026
e4a1db4
feat: update RPCs
mithatakbulut Jan 30, 2026
b97e8b2
feat: Add `to` address parameter for token recovery and improve send …
mithatakbulut Jan 30, 2026
1937e30
remove unused components
mithatakbulut Jan 30, 2026
13e3ee5
fix: use localrelayer
mithatakbulut Jan 30, 2026
931069a
fix txn confirmation for v2
mithatakbulut Jan 30, 2026
1b10a20
fix redirecting /wallet
mithatakbulut Jan 30, 2026
0885a16
Fix hardcoded MetaMask provider in transaction execution
mithatakbulut Jan 30, 2026
062df36
fix password login
mithatakbulut Jan 30, 2026
1cd954b
Remove manual wallet address entry feature from recovery flow
mithatakbulut Jan 30, 2026
03f7013
refactor SendToken and SendCollectible to divide into its components …
mithatakbulut Jan 30, 2026
8d152c8
fix back button
mithatakbulut Jan 30, 2026
5fc4cb3
Refactor application initialization and state management
mithatakbulut Feb 3, 2026
03845e0
ts-prune
mithatakbulut Feb 3, 2026
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
32 changes: 20 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,25 @@
"build": "tsc && vite build",
"deploy": "gh-pages -d dist",
"dev": "pnpm typecheck && vite",
"format": "prettier -w '**/*.ts'",
"format": "prettier -w '**/*.{ts,tsx}'",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"predeploy": "pnpm run build",
"preview": "vite preview",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@0xsequence/account": "2.1.0",
"@0xsequence/core": "2.1.0",
"@0xsequence/account": "2.3.35",
"@0xsequence/core": "2.3.35",
"@0xsequence/design-system": "1.8.0",
"@0xsequence/indexer": "2.1.0",
"@0xsequence/network": "2.1.0",
"@0xsequence/provider": "2.1.0",
"@0xsequence/relayer": "2.1.0",
"@0xsequence/sessions": "2.1.0",
"@0xsequence/signhub": "2.1.0",
"@0xsequence/indexer": "3.0.0-beta.9",
"@0xsequence/network": "2.3.35",
"@0xsequence/provider": "2.3.35",
"@0xsequence/relayer": "^2.3.39",
"@0xsequence/sessions": "2.3.35",
"@0xsequence/signhub": "2.3.35",
"@0xsequence/wallet-core": "3.0.0-beta.9",
"@0xsequence/wallet-primitives": "3.0.0-beta.9",
"@0xsequence/wallet-wdk": "3.0.0-beta.9",
"@radix-ui/react-popover": "1.1.2",
"@vanilla-extract/css": "1.16.1",
"@walletconnect/ethereum-provider": "2.17.2",
Expand All @@ -33,13 +36,17 @@
"ethers": "6.13.4",
"framer-motion": "11.11.17",
"idb": "8.0.0",
"jotai": "^2.15.1",
"micro-observables": "1.7.2",
"mipd": "^0.0.7",
"ox": "^0.7.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "6.28.0"
"react-router-dom": "6.28.0",
"viem": "^2.39.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
Expand All @@ -50,7 +57,8 @@
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.14",
"gh-pages": "6.2.0",
"prettier": "^3.8.1",
"typescript": "5.7.2",
"vite": "5.4.10"
}
}
}
Loading