-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathwalletStore.ts
More file actions
56 lines (48 loc) · 1.41 KB
/
Copy pathwalletStore.ts
File metadata and controls
56 lines (48 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { create } from 'zustand';
import { persist } from 'zustand/middleware';
interface WalletState {
address: string | null;
chainId: number | null;
isConnected: boolean;
isConnecting: boolean;
error: string | null;
// Actions
setConnection: (address: string, chainId: number) => void;
setConnecting: (isConnecting: boolean) => void;
setError: (error: string | null) => void;
disconnect: () => void;
updateChainId: (chainId: number) => void;
}
export const useWalletStore = create<WalletState>()(
persist(
(set) => ({
address: null,
chainId: null,
isConnected: false,
isConnecting: false,
error: null,
setConnection: (address, chainId) => set({
address,
chainId,
isConnected: true,
isConnecting: false,
error: null,
}),
setConnecting: (isConnecting) => set({ isConnecting }),
setError: (error) => set({ error, isConnecting: false }),
updateChainId: (chainId) => set({ chainId }),
disconnect: () => set({
address: null,
chainId: null,
isConnected: false,
isConnecting: false,
error: null,
}),
}),
{
name: 'propchain-wallet-storage',
// Only persist connection info, not transient loading/error states
partialize: (state) => ({ address: state.address, chainId: state.chainId, isConnected: state.isConnected }),
}
)
);