feat: implement web worker for stellar scanning#35
Conversation
|
@bbkenny is attempting to deploy a commit to the truthixify's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
Hi @wraith-protocol, I've implemented the Web Worker for background scanning as requested in issue #3. This ensures the UI remains responsive even during heavy scanning tasks. Ready for review! |
|
@bbkenny Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
|
The Web Worker implementation is correct in shape (offloads One blocker: the PR also adds a 16,456-line rm package-lock.json
echo "package-lock.json" >> .gitignore # if not already there
pnpm install # regenerates pnpm-lock.yaml with any deps you added
git add -u .gitignore pnpm-lock.yaml
git commit --amend # or new commit
git push --force-with-leaseOnce the lockfile is sorted I will merge. Thanks @bbkenny. |
This PR moves the Stellar scanning logic to a Web Worker to improve UI responsiveness.
Key changes:
src/workers/stellar-scanner.worker.tsto handle fetching and scanning announcements.StellarReceive.tsxto use the Web Worker for background scanning.Closes #3