Improve transaction history loading for accounts with thousands of transactions. Implement cursor-based pagination, lazy loading, and infinite scroll where appropriate.
Acceptance Criteria:
- Transactions load in batches (50 per page initially)
- Infinite scroll implemented for smoother UX
- Pagination cursor properly tracked
- Loading indicators show progress
- Very large histories (>10k txs) don't freeze UI
- Virtual scrolling considered for massive lists
- Network requests debounced to prevent duplicate calls
Improve transaction history loading for accounts with thousands of transactions. Implement cursor-based pagination, lazy loading, and infinite scroll where appropriate.
Acceptance Criteria: