feat(groups): tie group ownership to Stellar wallet with on-chain val…#87
Open
bigvictoh wants to merge 1 commit intoLumina-eX:mainfrom
Open
feat(groups): tie group ownership to Stellar wallet with on-chain val…#87bigvictoh wants to merge 1 commit intoLumina-eX:mainfrom
bigvictoh wants to merge 1 commit intoLumina-eX:mainfrom
Conversation
Collaborator
|
@bigvictoh please resolve conflicts |
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.
…idation
Summary
Groups are now owned by a specific Stellar wallet address. Ownership is recorded in the database and baked into the metadata hash submitted to the Stellar blockchain. Only the wallet that created a group can modify its metadata.
Key changes
Added owner_wallet column to rooms (with migration script).
Updated TypeScript types for metadata, creation & verification responses.
POST /api/rooms stores owner wallet and validates against authenticated user.
New PATCH /api/rooms/[roomId] endpoint handles metadata updates:
Confirms wallet ownership.
Requires signature over updated metadata hash.
Optional on‑chain re‑submission.
Verification endpoint now includes owner wallet.
Enhanced row‑level security policies enforce wallet/JWT integrity.
Front‑end adjustments: wallet address in room lists, creation flow sends wallet info.
README documentation added for the new ownership model.
Why
Ensures only rightful wallet owners can change group data, providing transparent, on‑chain proof of ownership and strengthening overall trust/security.
closes #39