Conversation
- Add Group and GroupMember types with USDC balance tracking - Create API routes for group CRUD and join operations - Implement CreateGroupModal for creating family wallets (2-3 members max) - Add InviteModal with shareable 6-character code and link - Build JoinGroupModal for joining via invite code - Create GroupCard and GroupDetail components for list/detail views - Add /join page for invite link flow (/join?code=XXXXXX) - Persist groups in localStorage (MVP persistence) - Add mock balance seeding for demo purposes - Update HomeView to show total balance across groups - Remove 'Powered by Monad' from login footer (hide-crypto UX) - Add SMS/phone auth note to README Closes #2 Co-authored-by: Oluwasomidotun <dotunv@users.noreply.github.com>
Blocker 1 fix: The /api/groups/* routes ran on the server where localStorage is undefined, causing groups to vanish on reload. Now all group operations (create, join, list, seed balances) happen directly in client components via src/lib/db.ts. Blocker 2 fix: Rebased onto upstream main after Savitura#6 was merged. Also: README updated to reflect client-side persistence. Co-authored-by: Oluwasomidotun <dotunv@users.noreply.github.com>
cursor
Bot
force-pushed
the
cursor/group-wallet-issue-2-2559
branch
from
September 10, 2026 11:11
0e979d2 to
711a80f
Compare
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 issue #2 shared group wallets. Create invite balances localStorage MVP. Soft nits from 1 applied. Out of scope: send and settle-up.