feat: Implement initial authentication and wallet management using Re…#14
Open
rahimatonize wants to merge 2 commits intoHubDApp:mainfrom
Open
feat: Implement initial authentication and wallet management using Re…#14rahimatonize wants to merge 2 commits intoHubDApp:mainfrom
rahimatonize wants to merge 2 commits intoHubDApp:mainfrom
Conversation
…act contexts and a session service.
Contributor
|
@rahimatonize Please resolve the conflicts |
Author
|
conflict resolved. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements a client-side session system that treats the connected Stellar wallet public key as the authenticated user. Sessions persist across page reloads via localStorage and are structured for easy future backend auth integration.
New Files
services/auth/session.service.ts
— Session CRUD:
createSession(publicKey)
,
getSession()
,
clearSession()
,
isAuthenticated()
. Stores a { publicKey, connectedAt } object in localStorage under the dongle_session key.
context/auth.context.tsx
—
AuthProvider
+
useAuth()
hook exposing publicKey,
isAuthenticated
, isLoading, login(), logout(). Restores session on mount and cross-checks wallet connectivity to clear stale sessions.
Modified Files
context/wallet.context.tsx
— Calls sessionService.createSession() on successful wallet connect and sessionService.clearSession() on disconnect to keep localStorage in sync.
app/providers.tsx
— Wraps
AuthProvider
inside
WalletProvider
so the auth layer can verify wallet connectivity during session restore.
ARCHITECTURE
WalletProvider ← outermost, initialises Freighter state
└─ AuthProvider ← restores session from localStorage on mount
└─ App
Connect flow: WalletProvider.connect() → Freighter approval → sessionService.createSession(address) → localStorage updated
Refresh flow:
AuthProvider
mount → sessionService.getSession() → verify wallet still connected → restore auth state
Logout flow: WalletProvider.disconnect() → sessionService.clearSession() → localStorage cleared
closes #5