feat(backend): contract allowlist, correlation ids, webhook verify helper, deployment artifacts#644
Merged
Merged
Conversation
…lper, deployment artifacts Implements four backend issues in one branch: - BE-67 (Pulsefy#551): config-driven contract method allowlist enforced on compose/build/simulate endpoints via ContractMethodAllowlistGuard, with an admin GET /contracts/allowlist endpoint for operator visibility. - BE-68 (Pulsefy#552): thread the existing correlation id through transaction build/submit/simulate responses and into async webhook-delivery job payloads/headers (X-QuickEx-Correlation-Id), so a single id traces a request end-to-end including background processing. - BE-69 (Pulsefy#553): POST /webhooks/verify-signature helper endpoint reusing the exact outgoing-webhook HMAC canonicalization, with deterministic reason codes (MISSING_FIELDS, INVALID_TIMESTAMP, SIGNATURE_MISMATCH, etc). - BE-70 (Pulsefy#554): deployment artifact storage API (upload/list/download) with checksum verification, uploader/audit metadata, and a retention sweeper for deploy manifests, smoke reports, and registry snapshots. Also fixes a pre-existing DI bug in ContractsModule (ContractChangeWebhookDispatcher was never registered as a provider, breaking app bootstrap) discovered while wiring the new allowlist/artifact providers into the same module. Separately: bump the contract crate's transitive `ethnum` dependency from 1.5.2 to 1.5.3 (cargo update -p ethnum) to fix the CI build failure ("cannot transmute between types of different sizes") — an upstream ethnum bug fixed in 1.5.3, unrelated to any application code.
feat(backend): contract allowlist, correlation ids, webhook verify he…
|
@nottherealalanturing 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! 🚀 |
Cedarich
approved these changes
Jul 10, 2026
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.
Implements four backend issues in one branch:
Also fixes a pre-existing DI bug in ContractsModule (ContractChangeWebhookDispatcher was never registered as a provider, breaking app bootstrap) discovered while wiring the new allowlist/artifact providers into the same module.
Separately: bump the contract crate's transitive
ethnumdependency from 1.5.2 to 1.5.3 (cargo update -p ethnum) to fix the CI build failure ("cannot transmute between types of different sizes") — an upstream ethnum bug fixed in 1.5.3, unrelated to any application code.closes #551 closes #552 closes #553 closes #554