Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ Built with modern web technologies and Web3 integration, this frontend serves as
### Core Capabilities
- **🏠 Property Discovery**: Browse and search tokenized real estate properties with advanced filtering
- **💰 Wallet Integration**: Connect MetaMask, WalletConnect, and other Web3 wallets seamlessly
- **⚙️ Optimized Developer Diagnostics**: Memoized error test scenarios for faster interactive debugging and smoother rendering
- **🎯 Route-Level Error Handling**: Full-page route fallback UI with retry and home navigation using `RouteErrorBoundary`
- **🔗 Smart Contract Interaction**: Execute property purchases, transfers, and management through intuitive UI
- **📊 Real-Time Data**: Live property valuations, market trends, and portfolio analytics
- **🔐 Web3 Authentication**: Secure wallet-based authentication with multi-network support
Expand Down
1 change: 1 addition & 0 deletions docs/adr/ADR-005-error-handling.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ class ValidationError extends Error {

- `<RootErrorBoundary>` wraps the entire app and shows a full-page error screen for catastrophic failures
- `<SectionErrorBoundary>` wraps major page sections (property list, wallet panel) and shows inline fallback UI
- `<RouteErrorBoundary>` renders route-level full-screen fallback UI for page-specific failures with retry and home navigation
- `<ComponentErrorBoundary>` wraps individual widgets and renders a compact error state

### Global Error Handler
Expand Down
Loading