Summary
Optimize for parallel Playwright workers and reduce overhead from repeated API calls.
Problem
Each test creates its own MockProviderHandler and makes independent API calls. When running tests in parallel (workers > 1), this can cause nonce conflicts and redundant API requests.
Requirements
- Shared API client with connection reuse across tests
- Nonce coordination across parallel workers (or document the limitation)
- Investigate caching for read-only calls and fee estimates
- Request deduplication for rapid identical queries
- Benchmark and document performance characteristics
Milestone
v1.0
Summary
Optimize for parallel Playwright workers and reduce overhead from repeated API calls.
Problem
Each test creates its own
MockProviderHandlerand makes independent API calls. When running tests in parallel (workers > 1), this can cause nonce conflicts and redundant API requests.Requirements
Milestone
v1.0