Label: complexity: high
Points: 200
Description
Creators and payers have no way to leave notes on an invoice. This issue adds an off-chain comment system stored in localStorage per invoice, visible only to the wallet owner, with add/delete functionality on the invoice detail page.
Technical Context
Involves invoice/[id]/page.tsx and a new src/components/CommentSection.tsx. Store comments as { invoiceId, walletAddress, text, timestamp }[] in localStorage. Only show comments belonging to the connected wallet address.
Acceptance Criteria
Label: complexity: high
Points: 200
Description
Creators and payers have no way to leave notes on an invoice. This issue adds an off-chain comment system stored in
localStorageper invoice, visible only to the wallet owner, with add/delete functionality on the invoice detail page.Technical Context
Involves
invoice/[id]/page.tsxand a newsrc/components/CommentSection.tsx. Store comments as{ invoiceId, walletAddress, text, timestamp }[]inlocalStorage. Only show comments belonging to the connected wallet address.Acceptance Criteria
localStoragekeyed by invoice ID and wallet address