Feat/sprint foundation updates - #2098
Merged
RUKAYAT-CODER merged 7 commits intoJul 30, 2026
Merged
Conversation
|
@rabsqueen 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! 🚀 |
Contributor
|
Well done on the job so far! |
Contributor
|
kindly resolve conflict |
Contributor
Author
|
Hi @RUKAYAT-CODER , conflict resolved. Thanks |
Contributor
|
Thank you for contributing to the project |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 PR Title
feat(core): implement webhook DTO validation, Core Web Vitals monitoring, and route param hardening (#1898, #1923, #1911, #2067)🎯 Summary
closes #1898
closes #1923
closes #1913
closes #2067
This PR consolidates multiple key platform foundation and performance monitoring enhancements across
stellar_Earn:class-validatorDTO schemas on incoming webhook bodies to prevent malformed payloads from reaching service layers.ParseUUIDPipeacrossQuestsControllerroutes (findOne,update,remove) to fail fast with HTTP 400 on malformed ID strings.useReportWebVitalsandnavigator.sendBeacon.🛠️ Summary of Key Changes
1. Webhook Payload Validation (#1898)
StellarWebhookPayloadDtorequiring valid transaction hashes (hex64), Stellar public keys (G...), timestamps, and payload objects.WebhooksControllerto strip unexpected parameters via NestJSValidationPipe.2. Quests Controller UUID Piping (#1911)
@Param('id', ParseUUIDPipe)acrossQuestsControllerID-based route handlers.QuestsServiceinvocation.3. Core Web Vitals Telemetry (#2067)
WebVitalsreporter component (src/components/analytics/WebVitals.tsx).WebVitalsinRootLayout(src/app/layout.tsx).navigator.sendBeaconwith fallback tofetch({ keepalive: true }).4. Platform Route & Guard Alignment (#1923)
📊 Performance Benchmarks (#2067)
2,480 ms2,120 ms180 ms140 ms0.0620.0210.00 ms<0.01 ms🧪 Testing & Verification